From f9c3191793292d5f22010bc9d7f4ac0cfaba2414 Mon Sep 17 00:00:00 2001 From: joegl <20383-joegl@users.noreply.drupalcode.org> Date: Tue, 4 Jun 2024 12:45:36 -0500 Subject: [PATCH 01/15] Provisioned hs-fps. --- blt/blt.yml | 1 + docroot/sites/hs_fps/blt.yml | 12 + docroot/sites/hs_fps/default.local.drush.yml | 2 + docroot/sites/hs_fps/default.services.yml | 230 +++++ docroot/sites/hs_fps/default.settings.php | 883 ++++++++++++++++++ docroot/sites/hs_fps/services.yml | 174 ++++ docroot/sites/hs_fps/settings.php | 813 ++++++++++++++++ .../settings/default.includes.settings.php | 50 + .../settings/default.local.settings.php | 159 ++++ drush/sites/hs_fps.site.yml | 18 + 10 files changed, 2342 insertions(+) create mode 100644 docroot/sites/hs_fps/blt.yml create mode 100644 docroot/sites/hs_fps/default.local.drush.yml create mode 100644 docroot/sites/hs_fps/default.services.yml create mode 100644 docroot/sites/hs_fps/default.settings.php create mode 100644 docroot/sites/hs_fps/services.yml create mode 100644 docroot/sites/hs_fps/settings.php create mode 100644 docroot/sites/hs_fps/settings/default.includes.settings.php create mode 100644 docroot/sites/hs_fps/settings/default.local.settings.php create mode 100644 drush/sites/hs_fps.site.yml diff --git a/blt/blt.yml b/blt/blt.yml index 5c5a1b3403..ffbddc28e2 100644 --- a/blt/blt.yml +++ b/blt/blt.yml @@ -106,6 +106,7 @@ multisites: - hs_colorful - hs_design - hs_fcp + - hs_fps - hs_sandbox - hs_testing_sandbox - hs_traditional diff --git a/docroot/sites/hs_fps/blt.yml b/docroot/sites/hs_fps/blt.yml new file mode 100644 index 0000000000..11fe5c55f2 --- /dev/null +++ b/docroot/sites/hs_fps/blt.yml @@ -0,0 +1,12 @@ +project: + machine_name: hs_fps + human_name: hs_fps + local: + protocol: http + hostname: local.hs_fps.com +drush: + aliases: + local: hs_fps.local + remote: hs_fps.prod +drupal: + db: { } diff --git a/docroot/sites/hs_fps/default.local.drush.yml b/docroot/sites/hs_fps/default.local.drush.yml new file mode 100644 index 0000000000..fb3258e3f9 --- /dev/null +++ b/docroot/sites/hs_fps/default.local.drush.yml @@ -0,0 +1,2 @@ +options: + uri: '${project.local.uri}' diff --git a/docroot/sites/hs_fps/default.services.yml b/docroot/sites/hs_fps/default.services.yml new file mode 100644 index 0000000000..c4b964fc29 --- /dev/null +++ b/docroot/sites/hs_fps/default.services.yml @@ -0,0 +1,230 @@ +parameters: + session.storage.options: + # Default ini options for sessions. + # + # Some distributions of Linux (most notably Debian) ship their PHP + # installations with garbage collection (gc) disabled. Since Drupal depends + # on PHP's garbage collection for clearing sessions, ensure that garbage + # collection occurs by using the most common settings. + # @default 1 + gc_probability: 1 + # @default 100 + gc_divisor: 100 + # + # Set session lifetime (in seconds), i.e. the grace period for session + # data. Sessions are deleted by the session garbage collector after one + # session lifetime has elapsed since the user's last visit. When a session + # is deleted, authenticated users are logged out, and the contents of the + # user's session is discarded. + # @default 200000 + gc_maxlifetime: 200000 + # + # Set session cookie lifetime (in seconds), i.e. the time from the session + # is created to the cookie expires, i.e. when the browser is expected to + # discard the cookie. The value 0 means "until the browser is closed". + # @default 2000000 + cookie_lifetime: 2000000 + # + # Drupal automatically generates a unique session cookie name based on the + # full domain name used to access the site. This mechanism is sufficient + # for most use-cases, including multi-site deployments. However, if it is + # desired that a session can be reused across different subdomains, the + # cookie domain needs to be set to the shared base domain. Doing so assures + # that users remain logged in as they cross between various subdomains. + # To maximize compatibility and normalize the behavior across user agents, + # the cookie domain should start with a dot. + # + # @default none + # cookie_domain: '.example.com' + # + # Set the SameSite cookie attribute: 'None', 'Lax', or 'Strict'. If set, + # this value will override the server value. See + # https://www.php.net/manual/en/session.security.ini.php for more + # information. + # @default no value + cookie_samesite: Lax + # + # Set the session ID string length. The length can be between 22 to 256. The + # PHP recommended value is 48. See + # https://www.php.net/manual/session.security.ini.php for more information. + # This value should be kept in sync with + # \Drupal\Core\Session\SessionConfiguration::__construct() + # @default 48 + sid_length: 48 + # + # Set the number of bits in encoded session ID character. The possible + # values are '4' (0-9, a-f), '5' (0-9, a-v), and '6' (0-9, a-z, A-Z, "-", + # ","). The PHP recommended value is 6. See + # https://www.php.net/manual/session.security.ini.php for more information. + # This value should be kept in sync with + # \Drupal\Core\Session\SessionConfiguration::__construct() + # @default 6 + sid_bits_per_character: 6 + twig.config: + # Twig debugging: + # + # When debugging is enabled: + # - The markup of each Twig template is surrounded by HTML comments that + # contain theming information, such as template file name suggestions. + # - Note that this debugging markup will cause automated tests that directly + # check rendered HTML to fail. When running automated tests, 'debug' + # should be set to FALSE. + # - The dump() function can be used in Twig templates to output information + # about template variables. + # - Twig templates are automatically recompiled whenever the source code + # changes (see auto_reload below). + # + # For more information about debugging Twig templates, see + # https://www.drupal.org/node/1906392. + # + # Enabling Twig debugging is not recommended in production environments. + # @default false + debug: false + # Twig auto-reload: + # + # Automatically recompile Twig templates whenever the source code changes. + # If you don't provide a value for auto_reload, it will be determined + # based on the value of debug. + # + # Enabling auto-reload is not recommended in production environments. + # @default null + auto_reload: null + # Twig cache: + # + # By default, Twig templates will be compiled and stored in the filesystem + # to increase performance. Disabling the Twig cache will recompile the + # templates from source each time they are used. In most cases the + # auto_reload setting above should be enabled rather than disabling the + # Twig cache. + # + # Disabling the Twig cache is not recommended in production environments. + # @default true + cache: true + # File extensions: + # + # List of file extensions the Twig system is allowed to load via the + # twig.loader.filesystem service. Files with other extensions will not be + # loaded unless they are added here. For example, to allow a file named + # 'example.partial' to be loaded, add 'partial' to this list. To load files + # with no extension, add an empty string '' to the list. + # + # @default ['css', 'html', 'js', 'svg', 'twig'] + allowed_file_extensions: + - css + - html + - js + - svg + - twig + renderer.config: + # Renderer required cache contexts: + # + # The Renderer will automatically associate these cache contexts with every + # render array, hence varying every render array by these cache contexts. + # + # @default ['languages:language_interface', 'theme', 'user.permissions'] + required_cache_contexts: ['languages:language_interface', 'theme', 'user.permissions'] + # Renderer automatic placeholdering conditions: + # + # Drupal allows portions of the page to be automatically deferred when + # rendering to improve cache performance. That is especially helpful for + # cache contexts that vary widely, such as the active user. On some sites + # those may be different, however, such as sites with only a handful of + # users. If you know what the high-cardinality cache contexts are for your + # site, specify those here. If you're not sure, the defaults are fairly safe + # in general. + # + # For more information about rendering optimizations see + # https://www.drupal.org/developing/api/8/render/arrays/cacheability#optimizing + auto_placeholder_conditions: + # Max-age at or below which caching is not considered worthwhile. + # + # Disable by setting to -1. + # + # @default 0 + max-age: 0 + # Cache contexts with a high cardinality. + # + # Disable by setting to []. + # + # @default ['session', 'user'] + contexts: ['session', 'user'] + # Tags with a high invalidation frequency. + # + # Disable by setting to []. + # + # @default [] + tags: [] + # Renderer cache debug: + # + # Allows cache debugging output for each rendered element. + # + # Enabling render cache debugging is not recommended in production + # environments. + # @default false + debug: false + # Cacheability debugging: + # + # Responses with cacheability metadata (CacheableResponseInterface instances) + # get X-Drupal-Cache-Tags, X-Drupal-Cache-Contexts and X-Drupal-Cache-Max-Age + # headers. + # + # For more information about debugging cacheable responses, see + # https://www.drupal.org/developing/api/8/response/cacheable-response-interface + # + # Enabling cacheability debugging is not recommended in production + # environments. + # @default false + http.response.debug_cacheability_headers: false + factory.keyvalue: {} + # Default key/value storage service to use. + # @default keyvalue.database + # default: keyvalue.database + # Collection-specific overrides. + # state: keyvalue.database + factory.keyvalue.expirable: {} + # Default key/value expirable storage service to use. + # @default keyvalue.database.expirable + # default: keyvalue.database.expirable + # Allowed protocols for URL generation. + filter_protocols: + - http + - https + - ftp + - news + - nntp + - tel + - telnet + - mailto + - irc + - ssh + - sftp + - webcal + - rtsp + + # Configure Cross-Site HTTP requests (CORS). + # Read https://developer.mozilla.org/en-US/docs/Web/HTTP/Access_control_CORS + # for more information about the topic in general. + # Note: By default the configuration is disabled. + cors.config: + enabled: false + # Specify allowed headers, like 'x-allowed-header'. + allowedHeaders: [] + # Specify allowed request methods, specify ['*'] to allow all possible ones. + allowedMethods: [] + # Configure requests allowed from specific origins. Do not include trailing + # slashes with URLs. + allowedOrigins: ['*'] + # Configure requests allowed from origins, matching against regex patterns. + allowedOriginsPatterns: [] + # Sets the Access-Control-Expose-Headers header. + exposedHeaders: false + # Sets the Access-Control-Max-Age header. + maxAge: false + # Sets the Access-Control-Allow-Credentials header. + supportsCredentials: false + + queue.config: + # The maximum number of seconds to wait if a queue is temporarily suspended. + # This is not applicable when a queue is suspended but does not specify + # how long to wait before attempting to resume. + suspendMaximumWait: 30 diff --git a/docroot/sites/hs_fps/default.settings.php b/docroot/sites/hs_fps/default.settings.php new file mode 100644 index 0000000000..8819d64317 --- /dev/null +++ b/docroot/sites/hs_fps/default.settings.php @@ -0,0 +1,883 @@ + 'databasename', + * 'username' => 'sql_username', + * 'password' => 'sql_password', + * 'host' => 'localhost', + * 'port' => '3306', + * 'driver' => 'mysql', + * 'prefix' => '', + * 'collation' => 'utf8mb4_general_ci', + * ]; + * @endcode + */ +$databases = []; + +/** + * Customizing database settings. + * + * Many of the values of the $databases array can be customized for your + * particular database system. Refer to the sample in the section above as a + * starting point. + * + * The "driver" property indicates what Drupal database driver the + * connection should use. This is usually the same as the name of the + * database type, such as mysql or sqlite, but not always. The other + * properties will vary depending on the driver. For SQLite, you must + * specify a database file name in a directory that is writable by the + * webserver. For most other drivers, you must specify a + * username, password, host, and database name. + * + * Drupal core implements drivers for mysql, pgsql, and sqlite. Other drivers + * can be provided by contributed or custom modules. To use a contributed or + * custom driver, the "namespace" property must be set to the namespace of the + * driver. The code in this namespace must be autoloadable prior to connecting + * to the database, and therefore, prior to when module root namespaces are + * added to the autoloader. To add the driver's namespace to the autoloader, + * set the "autoload" property to the PSR-4 base directory of the driver's + * namespace. This is optional for projects managed with Composer if the + * driver's namespace is in Composer's autoloader. + * + * For each database, you may optionally specify multiple "target" databases. + * A target database allows Drupal to try to send certain queries to a + * different database if it can but fall back to the default connection if not. + * That is useful for primary/replica replication, as Drupal may try to connect + * to a replica server when appropriate and if one is not available will simply + * fall back to the single primary server (The terms primary/replica are + * traditionally referred to as master/slave in database server documentation). + * + * The general format for the $databases array is as follows: + * @code + * $databases['default']['default'] = $info_array; + * $databases['default']['replica'][] = $info_array; + * $databases['default']['replica'][] = $info_array; + * $databases['extra']['default'] = $info_array; + * @endcode + * + * In the above example, $info_array is an array of settings described above. + * The first line sets a "default" database that has one primary database + * (the second level default). The second and third lines create an array + * of potential replica databases. Drupal will select one at random for a given + * request as needed. The fourth line creates a new database with a name of + * "extra". + * + * For MySQL, MariaDB or equivalent databases the 'isolation_level' option can + * be set. The recommended transaction isolation level for Drupal sites is + * 'READ COMMITTED'. The 'REPEATABLE READ' option is supported but can result + * in deadlocks, the other two options are 'READ UNCOMMITTED' and 'SERIALIZABLE'. + * They are available but not supported; use them at your own risk. For more + * info: + * https://dev.mysql.com/doc/refman/5.7/en/innodb-transaction-isolation-levels.html + * + * On your settings.php, change the isolation level: + * @code + * $databases['default']['default']['init_commands'] = [ + * 'isolation_level' => 'SET SESSION TRANSACTION ISOLATION LEVEL READ COMMITTED', + * ]; + * @endcode + * + * You can optionally set a prefix for all database table names by using the + * 'prefix' setting. If a prefix is specified, the table name will be prepended + * with its value. Be sure to use valid database characters only, usually + * alphanumeric and underscore. If no prefix is desired, do not set the 'prefix' + * key or set its value to an empty string ''. + * + * For example, to have all database table prefixed with 'main_', set: + * @code + * 'prefix' => 'main_', + * @endcode + * + * Advanced users can add or override initial commands to execute when + * connecting to the database server, as well as PDO connection settings. For + * example, to enable MySQL SELECT queries to exceed the max_join_size system + * variable, and to reduce the database connection timeout to 5 seconds: + * @code + * $databases['default']['default'] = [ + * 'init_commands' => [ + * 'big_selects' => 'SET SQL_BIG_SELECTS=1', + * ], + * 'pdo' => [ + * PDO::ATTR_TIMEOUT => 5, + * ], + * ]; + * @endcode + * + * WARNING: The above defaults are designed for database portability. Changing + * them may cause unexpected behavior, including potential data loss. See + * https://www.drupal.org/docs/8/api/database-api/database-configuration for + * more information on these defaults and the potential issues. + * + * More details can be found in the constructor methods for each driver: + * - \Drupal\mysql\Driver\Database\mysql\Connection::__construct() + * - \Drupal\pgsql\Driver\Database\pgsql\Connection::__construct() + * - \Drupal\sqlite\Driver\Database\sqlite\Connection::__construct() + * + * Sample Database configuration format for PostgreSQL (pgsql): + * @code + * $databases['default']['default'] = [ + * 'driver' => 'pgsql', + * 'database' => 'databasename', + * 'username' => 'sql_username', + * 'password' => 'sql_password', + * 'host' => 'localhost', + * 'prefix' => '', + * ]; + * @endcode + * + * Sample Database configuration format for SQLite (sqlite): + * @code + * $databases['default']['default'] = [ + * 'driver' => 'sqlite', + * 'database' => '/path/to/database_filename', + * ]; + * @endcode + * + * Sample Database configuration format for a driver in a contributed module: + * @code + * $databases['default']['default'] = [ + * 'driver' => 'my_driver', + * 'namespace' => 'Drupal\my_module\Driver\Database\my_driver', + * 'autoload' => 'modules/my_module/src/Driver/Database/my_driver/', + * 'database' => 'databasename', + * 'username' => 'sql_username', + * 'password' => 'sql_password', + * 'host' => 'localhost', + * 'prefix' => '', + * ]; + * @endcode + * + * Sample Database configuration format for a driver that is extending another + * database driver. + * @code + * $databases['default']['default'] = [ + * 'driver' => 'my_driver', + * 'namespace' => 'Drupal\my_module\Driver\Database\my_driver', + * 'autoload' => 'modules/my_module/src/Driver/Database/my_driver/', + * 'database' => 'databasename', + * 'username' => 'sql_username', + * 'password' => 'sql_password', + * 'host' => 'localhost', + * 'prefix' => '', + * 'dependencies' => [ + * 'parent_module' => [ + * 'namespace' => 'Drupal\parent_module', + * 'autoload' => 'core/modules/parent_module/src/', + * ], + * ], + * ]; + * @endcode + */ + +/** + * Location of the site configuration files. + * + * The $settings['config_sync_directory'] specifies the location of file system + * directory used for syncing configuration data. On install, the directory is + * created. This is used for configuration imports. + * + * The default location for this directory is inside a randomly-named + * directory in the public files path. The setting below allows you to set + * its location. + */ +# $settings['config_sync_directory'] = '/directory/outside/webroot'; + +/** + * Settings: + * + * $settings contains environment-specific configuration, such as the files + * directory and reverse proxy address, and temporary configuration, such as + * security overrides. + * + * @see \Drupal\Core\Site\Settings::get() + */ + +/** + * Salt for one-time login links, cancel links, form tokens, etc. + * + * This variable will be set to a random value by the installer. All one-time + * login links will be invalidated if the value is changed. Note that if your + * site is deployed on a cluster of web servers, you must ensure that this + * variable has the same value on each server. + * + * For enhanced security, you may set this variable to the contents of a file + * outside your document root, and vary the value across environments (like + * production and development); you should also ensure that this file is not + * stored with backups of your database. + * + * Example: + * @code + * $settings['hash_salt'] = file_get_contents('/home/example/salt.txt'); + * @endcode + */ +$settings['hash_salt'] = ''; + +/** + * Deployment identifier. + * + * Drupal's dependency injection container will be automatically invalidated and + * rebuilt when the Drupal core version changes. When updating contributed or + * custom code that changes the container, changing this identifier will also + * allow the container to be invalidated as soon as code is deployed. + */ +# $settings['deployment_identifier'] = \Drupal::VERSION; + +/** + * Access control for update.php script. + * + * If you are updating your Drupal installation using the update.php script but + * are not logged in using either an account with the "Administer software + * updates" permission or the site maintenance account (the account that was + * created during installation), you will need to modify the access check + * statement below. Change the FALSE to a TRUE to disable the access check. + * After finishing the upgrade, be sure to open this file again and change the + * TRUE back to a FALSE! + */ +$settings['update_free_access'] = FALSE; + +/** + * Fallback to HTTP for Update Manager and for fetching security advisories. + * + * If your site fails to connect to updates.drupal.org over HTTPS (either when + * fetching data on available updates, or when fetching the feed of critical + * security announcements), you may uncomment this setting and set it to TRUE to + * allow an insecure fallback to HTTP. Note that doing so will open your site up + * to a potential man-in-the-middle attack. You should instead attempt to + * resolve the issues before enabling this option. + * @see https://www.drupal.org/docs/system-requirements/php-requirements#openssl + * @see https://en.wikipedia.org/wiki/Man-in-the-middle_attack + * @see \Drupal\update\UpdateFetcher + * @see \Drupal\system\SecurityAdvisories\SecurityAdvisoriesFetcher + */ +# $settings['update_fetch_with_http_fallback'] = TRUE; + +/** + * External access proxy settings: + * + * If your site must access the Internet via a web proxy then you can enter the + * proxy settings here. Set the full URL of the proxy, including the port, in + * variables: + * - $settings['http_client_config']['proxy']['http']: The proxy URL for HTTP + * requests. + * - $settings['http_client_config']['proxy']['https']: The proxy URL for HTTPS + * requests. + * You can pass in the user name and password for basic authentication in the + * URLs in these settings. + * + * You can also define an array of host names that can be accessed directly, + * bypassing the proxy, in $settings['http_client_config']['proxy']['no']. + */ +# $settings['http_client_config']['proxy']['http'] = 'http://proxy_user:proxy_pass@example.com:8080'; +# $settings['http_client_config']['proxy']['https'] = 'http://proxy_user:proxy_pass@example.com:8080'; +# $settings['http_client_config']['proxy']['no'] = ['127.0.0.1', 'localhost']; + +/** + * Reverse Proxy Configuration: + * + * Reverse proxy servers are often used to enhance the performance + * of heavily visited sites and may also provide other site caching, + * security, or encryption benefits. In an environment where Drupal + * is behind a reverse proxy, the real IP address of the client should + * be determined such that the correct client IP address is available + * to Drupal's logging, statistics, and access management systems. In + * the most simple scenario, the proxy server will add an + * X-Forwarded-For header to the request that contains the client IP + * address. However, HTTP headers are vulnerable to spoofing, where a + * malicious client could bypass restrictions by setting the + * X-Forwarded-For header directly. Therefore, Drupal's proxy + * configuration requires the IP addresses of all remote proxies to be + * specified in $settings['reverse_proxy_addresses'] to work correctly. + * + * Enable this setting to get Drupal to determine the client IP from the + * X-Forwarded-For header. If you are unsure about this setting, do not have a + * reverse proxy, or Drupal operates in a shared hosting environment, this + * setting should remain commented out. + * + * In order for this setting to be used you must specify every possible + * reverse proxy IP address in $settings['reverse_proxy_addresses']. + * If a complete list of reverse proxies is not available in your + * environment (for example, if you use a CDN) you may set the + * $_SERVER['REMOTE_ADDR'] variable directly in settings.php. + * Be aware, however, that it is likely that this would allow IP + * address spoofing unless more advanced precautions are taken. + */ +# $settings['reverse_proxy'] = TRUE; + +/** + * Reverse proxy addresses. + * + * Specify every reverse proxy IP address in your environment, as an array of + * IPv4/IPv6 addresses or subnets in CIDR notation. This setting is required if + * $settings['reverse_proxy'] is TRUE. + */ +# $settings['reverse_proxy_addresses'] = ['a.b.c.d', 'e.f.g.h/24', ...]; + +/** + * Reverse proxy trusted headers. + * + * Sets which headers to trust from your reverse proxy. + * + * Common values are: + * - \Symfony\Component\HttpFoundation\Request::HEADER_X_FORWARDED_FOR + * - \Symfony\Component\HttpFoundation\Request::HEADER_X_FORWARDED_HOST + * - \Symfony\Component\HttpFoundation\Request::HEADER_X_FORWARDED_PORT + * - \Symfony\Component\HttpFoundation\Request::HEADER_X_FORWARDED_PROTO + * - \Symfony\Component\HttpFoundation\Request::HEADER_FORWARDED + * + * Note the default value of + * @code + * \Symfony\Component\HttpFoundation\Request::HEADER_X_FORWARDED_FOR | \Symfony\Component\HttpFoundation\Request::HEADER_X_FORWARDED_HOST | \Symfony\Component\HttpFoundation\Request::HEADER_X_FORWARDED_PORT | \Symfony\Component\HttpFoundation\Request::HEADER_X_FORWARDED_PROTO | \Symfony\Component\HttpFoundation\Request::HEADER_FORWARDED + * @endcode + * is not secure by default. The value should be set to only the specific + * headers the reverse proxy uses. For example: + * @code + * \Symfony\Component\HttpFoundation\Request::HEADER_X_FORWARDED_FOR | \Symfony\Component\HttpFoundation\Request::HEADER_X_FORWARDED_HOST | \Symfony\Component\HttpFoundation\Request::HEADER_X_FORWARDED_PORT | \Symfony\Component\HttpFoundation\Request::HEADER_X_FORWARDED_PROTO + * @endcode + * This would trust the following headers: + * - X_FORWARDED_FOR + * - X_FORWARDED_HOST + * - X_FORWARDED_PROTO + * - X_FORWARDED_PORT + * + * @see \Symfony\Component\HttpFoundation\Request::HEADER_X_FORWARDED_FOR + * @see \Symfony\Component\HttpFoundation\Request::HEADER_X_FORWARDED_HOST + * @see \Symfony\Component\HttpFoundation\Request::HEADER_X_FORWARDED_PORT + * @see \Symfony\Component\HttpFoundation\Request::HEADER_X_FORWARDED_PROTO + * @see \Symfony\Component\HttpFoundation\Request::HEADER_FORWARDED + * @see \Symfony\Component\HttpFoundation\Request::setTrustedProxies + */ +# $settings['reverse_proxy_trusted_headers'] = \Symfony\Component\HttpFoundation\Request::HEADER_X_FORWARDED_FOR | \Symfony\Component\HttpFoundation\Request::HEADER_X_FORWARDED_HOST | \Symfony\Component\HttpFoundation\Request::HEADER_X_FORWARDED_PORT | \Symfony\Component\HttpFoundation\Request::HEADER_X_FORWARDED_PROTO | \Symfony\Component\HttpFoundation\Request::HEADER_FORWARDED; + + +/** + * Page caching: + * + * By default, Drupal sends a "Vary: Cookie" HTTP header for anonymous page + * views. This tells a HTTP proxy that it may return a page from its local + * cache without contacting the web server, if the user sends the same Cookie + * header as the user who originally requested the cached page. Without "Vary: + * Cookie", authenticated users would also be served the anonymous page from + * the cache. If the site has mostly anonymous users except a few known + * editors/administrators, the Vary header can be omitted. This allows for + * better caching in HTTP proxies (including reverse proxies), i.e. even if + * clients send different cookies, they still get content served from the cache. + * However, authenticated users should access the site directly (i.e. not use an + * HTTP proxy, and bypass the reverse proxy if one is used) in order to avoid + * getting cached pages from the proxy. + */ +# $settings['omit_vary_cookie'] = TRUE; + + +/** + * Cache TTL for client error (4xx) responses. + * + * Items cached per-URL tend to result in a large number of cache items, and + * this can be problematic on 404 pages which by their nature are unbounded. A + * fixed TTL can be set for these items, defaulting to one hour, so that cache + * backends which do not support LRU can purge older entries. To disable caching + * of client error responses set the value to 0. Currently applies only to + * page_cache module. + */ +# $settings['cache_ttl_4xx'] = 3600; + +/** + * Expiration of cached forms. + * + * Drupal's Form API stores details of forms in a cache and these entries are + * kept for at least 6 hours by default. Expired entries are cleared by cron. + * + * @see \Drupal\Core\Form\FormCache::setCache() + */ +# $settings['form_cache_expiration'] = 21600; + +/** + * Class Loader. + * + * If the APCu extension is detected, the classloader will be optimized to use + * it. Set to FALSE to disable this. + * + * @see https://getcomposer.org/doc/articles/autoloader-optimization.md + */ +# $settings['class_loader_auto_detect'] = FALSE; + +/** + * Authorized file system operations: + * + * The Update Manager module included with Drupal provides a mechanism for + * site administrators to securely install missing updates for the site + * directly through the web user interface. On securely-configured servers, + * the Update manager will require the administrator to provide SSH or FTP + * credentials before allowing the installation to proceed; this allows the + * site to update the new files as the user who owns all the Drupal files, + * instead of as the user the webserver is running as. On servers where the + * webserver user is itself the owner of the Drupal files, the administrator + * will not be prompted for SSH or FTP credentials (note that these server + * setups are common on shared hosting, but are inherently insecure). + * + * Some sites might wish to disable the above functionality, and only update + * the code directly via SSH or FTP themselves. This setting completely + * disables all functionality related to these authorized file operations. + * + * @see https://www.drupal.org/node/244924 + * + * Remove the leading hash signs to disable. + */ +# $settings['allow_authorize_operations'] = FALSE; + +/** + * Default mode for directories and files written by Drupal. + * + * Value should be in PHP Octal Notation, with leading zero. + */ +# $settings['file_chmod_directory'] = 0775; +# $settings['file_chmod_file'] = 0664; + +/** + * Optimized assets path: + * + * A local file system path where optimized assets will be stored. This directory + * must exist and be writable by Drupal. This directory must be relative to + * the Drupal installation directory and be accessible over the web. + */ +# $settings['file_assets_path'] = 'sites/default/files'; + +/** + * Public file base URL: + * + * An alternative base URL to be used for serving public files. This must + * include any leading directory path. + * + * A different value from the domain used by Drupal to be used for accessing + * public files. This can be used for a simple CDN integration, or to improve + * security by serving user-uploaded files from a different domain or subdomain + * pointing to the same server. Do not include a trailing slash. + */ +# $settings['file_public_base_url'] = 'http://downloads.example.com/files'; + +/** + * Public file path: + * + * A local file system path where public files will be stored. This directory + * must exist and be writable by Drupal. This directory must be relative to + * the Drupal installation directory and be accessible over the web. + */ +# $settings['file_public_path'] = 'sites/default/files'; + +/** + * Additional public file schemes: + * + * Public schemes are URI schemes that allow download access to all users for + * all files within that scheme. + * + * The "public" scheme is always public, and the "private" scheme is always + * private, but other schemes, such as "https", "s3", "example", or others, + * can be either public or private depending on the site. By default, they're + * private, and access to individual files is controlled via + * hook_file_download(). + * + * Typically, if a scheme should be public, a module makes it public by + * implementing hook_file_download(), and granting access to all users for all + * files. This could be either the same module that provides the stream wrapper + * for the scheme, or a different module that decides to make the scheme + * public. However, in cases where a site needs to make a scheme public, but + * is unable to add code in a module to do so, the scheme may be added to this + * variable, the result of which is that system_file_download() grants public + * access to all files within that scheme. + */ +# $settings['file_additional_public_schemes'] = ['example']; + +/** + * File schemes whose paths should not be normalized: + * + * Normally, Drupal normalizes '/./' and '/../' segments in file URIs in order + * to prevent unintended file access. For example, 'private://css/../image.png' + * is normalized to 'private://image.png' before checking access to the file. + * + * On Windows, Drupal also replaces '\' with '/' in URIs for the local + * filesystem. + * + * If file URIs with one or more scheme should not be normalized like this, then + * list the schemes here. For example, if 'porcelain://china/./plate.png' should + * not be normalized to 'porcelain://china/plate.png', then add 'porcelain' to + * this array. In this case, make sure that the module providing the 'porcelain' + * scheme does not allow unintended file access when using '/../' to move up the + * directory tree. + */ +# $settings['file_sa_core_2023_005_schemes'] = ['porcelain']; + +/** + * Configuration for phpinfo() admin status report. + * + * Drupal's admin UI includes a report at admin/reports/status/php which shows + * the output of phpinfo(). The full output can contain sensitive information + * so by default Drupal removes some sections. + * + * This behavior can be configured by setting this variable to a different + * value corresponding to the flags parameter of phpinfo(). + * + * If you need to expose more information in the report - for example to debug a + * problem - consider doing so temporarily. + * + * @see https://www.php.net/manual/function.phpinfo.php + */ +# $settings['sa_core_2023_004_phpinfo_flags'] = ~ (INFO_VARIABLES | INFO_ENVIRONMENT); + +/** + * Private file path: + * + * A local file system path where private files will be stored. This directory + * must be absolute, outside of the Drupal installation directory and not + * accessible over the web. + * + * Note: Caches need to be cleared when this value is changed to make the + * private:// stream wrapper available to the system. + * + * See https://www.drupal.org/documentation/modules/file for more information + * about securing private files. + */ +# $settings['file_private_path'] = ''; + +/** + * Temporary file path: + * + * A local file system path where temporary files will be stored. This directory + * must be absolute, outside of the Drupal installation directory and not + * accessible over the web. + * + * If this is not set, the default for the operating system will be used. + * + * @see \Drupal\Component\FileSystem\FileSystem::getOsTemporaryDirectory() + */ +# $settings['file_temp_path'] = '/tmp'; + +/** + * Session write interval: + * + * Set the minimum interval between each session write to database. + * For performance reasons it defaults to 180. + */ +# $settings['session_write_interval'] = 180; + +/** + * String overrides: + * + * To override specific strings on your site with or without enabling the Locale + * module, add an entry to this list. This functionality allows you to change + * a small number of your site's default English language interface strings. + * + * Remove the leading hash signs to enable. + * + * The "en" part of the variable name, is dynamic and can be any langcode of + * any added language. (eg locale_custom_strings_de for german). + */ +# $settings['locale_custom_strings_en'][''] = [ +# 'Home' => 'Front page', +# '@count min' => '@count minutes', +# ]; + +/** + * A custom theme for the offline page: + * + * This applies when the site is explicitly set to maintenance mode through the + * administration page or when the database is inactive due to an error. + * The template file should also be copied into the theme. It is located inside + * 'core/modules/system/templates/maintenance-page.html.twig'. + * + * Note: This setting does not apply to installation and update pages. + */ +# $settings['maintenance_theme'] = 'claro'; + +/** + * PHP settings: + * + * To see what PHP settings are possible, including whether they can be set at + * runtime (by using ini_set()), read the PHP documentation: + * http://php.net/manual/ini.list.php + * See \Drupal\Core\DrupalKernel::bootEnvironment() for required runtime + * settings and the .htaccess file for non-runtime settings. + * Settings defined there should not be duplicated here so as to avoid conflict + * issues. + */ + +/** + * If you encounter a situation where users post a large amount of text, and + * the result is stripped out upon viewing but can still be edited, Drupal's + * output filter may not have sufficient memory to process it. If you + * experience this issue, you may wish to uncomment the following two lines + * and increase the limits of these variables. For more information, see + * http://php.net/manual/pcre.configuration.php. + */ +# ini_set('pcre.backtrack_limit', 200000); +# ini_set('pcre.recursion_limit', 200000); + +/** + * Configuration overrides. + * + * To globally override specific configuration values for this site, + * set them here. You usually don't need to use this feature. This is + * useful in a configuration file for a vhost or directory, rather than + * the default settings.php. + * + * Note that any values you provide in these variable overrides will not be + * viewable from the Drupal administration interface. The administration + * interface displays the values stored in configuration so that you can stage + * changes to other environments that don't have the overrides. + * + * There are particular configuration values that are risky to override. For + * example, overriding the list of installed modules in 'core.extension' is not + * supported as module install or uninstall has not occurred. Other examples + * include field storage configuration, because it has effects on database + * structure, and 'core.menu.static_menu_link_overrides' since this is cached in + * a way that is not config override aware. Also, note that changing + * configuration values in settings.php will not fire any of the configuration + * change events. + */ +# $config['system.site']['name'] = 'My Drupal site'; +# $config['user.settings']['anonymous'] = 'Visitor'; + +/** + * Load services definition file. + */ +$settings['container_yamls'][] = $app_root . '/' . $site_path . '/services.yml'; + +/** + * Override the default service container class. + * + * This is useful for example to trace the service container for performance + * tracking purposes, for testing a service container with an error condition or + * to test a service container that throws an exception. + */ +# $settings['container_base_class'] = '\Drupal\Core\DependencyInjection\Container'; + +/** + * Override the default yaml parser class. + * + * Provide a fully qualified class name here if you would like to provide an + * alternate implementation YAML parser. The class must implement the + * \Drupal\Component\Serialization\SerializationInterface interface. + */ +# $settings['yaml_parser_class'] = NULL; + +/** + * Trusted host configuration. + * + * Drupal core can use the Symfony trusted host mechanism to prevent HTTP Host + * header spoofing. + * + * To enable the trusted host mechanism, you enable your allowable hosts + * in $settings['trusted_host_patterns']. This should be an array of regular + * expression patterns, without delimiters, representing the hosts you would + * like to allow. + * + * For example: + * @code + * $settings['trusted_host_patterns'] = [ + * '^www\.example\.com$', + * ]; + * @endcode + * will allow the site to only run from www.example.com. + * + * If you are running multisite, or if you are running your site from + * different domain names (eg, you don't redirect http://www.example.com to + * http://example.com), you should specify all of the host patterns that are + * allowed by your site. + * + * For example: + * @code + * $settings['trusted_host_patterns'] = [ + * '^example\.com$', + * '^.+\.example\.com$', + * '^example\.org$', + * '^.+\.example\.org$', + * ]; + * @endcode + * will allow the site to run off of all variants of example.com and + * example.org, with all subdomains included. + * + * @see https://www.drupal.org/docs/installing-drupal/trusted-host-settings + */ +# $settings['trusted_host_patterns'] = []; + +/** + * The default list of directories that will be ignored by Drupal's file API. + * + * By default ignore node_modules and bower_components folders to avoid issues + * with common frontend tools and recursive scanning of directories looking for + * extensions. + * + * @see \Drupal\Core\File\FileSystemInterface::scanDirectory() + * @see \Drupal\Core\Extension\ExtensionDiscovery::scanDirectory() + */ +$settings['file_scan_ignore_directories'] = [ + 'node_modules', + 'bower_components', +]; + +/** + * The default number of entities to update in a batch process. + * + * This is used by update and post-update functions that need to go through and + * change all the entities on a site, so it is useful to increase this number + * if your hosting configuration (i.e. RAM allocation, CPU speed) allows for a + * larger number of entities to be processed in a single batch run. + */ +$settings['entity_update_batch_size'] = 50; + +/** + * Entity update backup. + * + * This is used to inform the entity storage handler that the backup tables as + * well as the original entity type and field storage definitions should be + * retained after a successful entity update process. + */ +$settings['entity_update_backup'] = TRUE; + +/** + * Node migration type. + * + * This is used to force the migration system to use the classic node migrations + * instead of the default complete node migrations. The migration system will + * use the classic node migration only if there are existing migrate_map tables + * for the classic node migrations and they contain data. These tables may not + * exist if you are developing custom migrations and do not want to use the + * complete node migrations. Set this to TRUE to force the use of the classic + * node migrations. + */ +$settings['migrate_node_migrate_type_classic'] = FALSE; + +/** + * The default settings for migration sources. + * + * These settings are used as the default settings on the Credential form at + * /upgrade/credentials. + * + * - migrate_source_version - The version of the source database. This can be + * '6' or '7'. Defaults to '7'. + * - migrate_source_connection - The key in the $databases array for the source + * site. + * - migrate_file_public_path - The location of the source Drupal 6 or Drupal 7 + * public files. This can be a local file directory containing the source + * Drupal 6 or Drupal 7 site (e.g /var/www/docroot), or the site address + * (e.g http://example.com). + * - migrate_file_private_path - The location of the source Drupal 7 private + * files. This can be a local file directory containing the source Drupal 7 + * site (e.g /var/www/docroot), or empty to use the same value as Public + * files directory. + * + * Sample configuration for a drupal 6 source site with the source files in a + * local directory. + * + * @code + * $settings['migrate_source_version'] = '6'; + * $settings['migrate_source_connection'] = 'migrate'; + * $settings['migrate_file_public_path'] = '/var/www/drupal6'; + * @endcode + * + * Sample configuration for a drupal 7 source site with public source files on + * the source site and the private files in a local directory. + * + * @code + * $settings['migrate_source_version'] = '7'; + * $settings['migrate_source_connection'] = 'migrate'; + * $settings['migrate_file_public_path'] = 'https://drupal7.com'; + * $settings['migrate_file_private_path'] = '/var/www/drupal7'; + * @endcode + */ +# $settings['migrate_source_connection'] = ''; +# $settings['migrate_source_version'] = ''; +# $settings['migrate_file_public_path'] = ''; +# $settings['migrate_file_private_path'] = ''; + +/** + * Load local development override configuration, if available. + * + * Create a settings.local.php file to override variables on secondary (staging, + * development, etc.) installations of this site. + * + * Typical uses of settings.local.php include: + * - Disabling caching. + * - Disabling JavaScript/CSS compression. + * - Rerouting outgoing emails. + * + * Keep this code block at the end of this file to take full effect. + */ +# +# if (file_exists($app_root . '/' . $site_path . '/settings.local.php')) { +# include $app_root . '/' . $site_path . '/settings.local.php'; +# } diff --git a/docroot/sites/hs_fps/services.yml b/docroot/sites/hs_fps/services.yml new file mode 100644 index 0000000000..e1bbbc7e21 --- /dev/null +++ b/docroot/sites/hs_fps/services.yml @@ -0,0 +1,174 @@ +parameters: + session.storage.options: + # Default ini options for sessions. + # + # Some distributions of Linux (most notably Debian) ship their PHP + # installations with garbage collection (gc) disabled. Since Drupal depends + # on PHP's garbage collection for clearing sessions, ensure that garbage + # collection occurs by using the most common settings. + # @default 1 + gc_probability: 1 + # @default 100 + gc_divisor: 100 + # + # Set session lifetime (in seconds), i.e. the time from the user's last + # visit to the active session may be deleted by the session garbage + # collector. When a session is deleted, authenticated users are logged out, + # and the contents of the user's $_SESSION variable is discarded. + # @default 200000 + gc_maxlifetime: 200000 + # + # Set session cookie lifetime (in seconds), i.e. the time from the session + # is created to the cookie expires, i.e. when the browser is expected to + # discard the cookie. The value 0 means "until the browser is closed". + # @default 2000000 + cookie_lifetime: 2000000 + # + # Drupal automatically generates a unique session cookie name based on the + # full domain name used to access the site. This mechanism is sufficient + # for most use-cases, including multi-site deployments. However, if it is + # desired that a session can be reused across different subdomains, the + # cookie domain needs to be set to the shared base domain. Doing so assures + # that users remain logged in as they cross between various subdomains. + # To maximize compatibility and normalize the behavior across user agents, + # the cookie domain should start with a dot. + # + # @default none + # cookie_domain: '.example.com' + # + twig.config: + # Twig debugging: + # + # When debugging is enabled: + # - The markup of each Twig template is surrounded by HTML comments that + # contain theming information, such as template file name suggestions. + # - Note that this debugging markup will cause automated tests that directly + # check rendered HTML to fail. When running automated tests, 'debug' + # should be set to FALSE. + # - The dump() function can be used in Twig templates to output information + # about template variables. + # - Twig templates are automatically recompiled whenever the source code + # changes (see auto_reload below). + # + # For more information about debugging Twig templates, see + # https://www.drupal.org/node/1906392. + # + # Not recommended in production environments + # @default false + debug: false + # Twig auto-reload: + # + # Automatically recompile Twig templates whenever the source code changes. + # If you don't provide a value for auto_reload, it will be determined + # based on the value of debug. + # + # Not recommended in production environments + # @default null + auto_reload: null + # Twig cache: + # + # By default, Twig templates will be compiled and stored in the filesystem + # to increase performance. Disabling the Twig cache will recompile the + # templates from source each time they are used. In most cases the + # auto_reload setting above should be enabled rather than disabling the + # Twig cache. + # + # Not recommended in production environments + # @default true + cache: true + renderer.config: + # Renderer required cache contexts: + # + # The Renderer will automatically associate these cache contexts with every + # render array, hence varying every render array by these cache contexts. + # + # @default ['languages:language_interface', 'theme', 'user.permissions'] + required_cache_contexts: ['languages:language_interface', 'theme', 'user.permissions'] + # Renderer automatic placeholdering conditions: + # + # Drupal allows portions of the page to be automatically deferred when + # rendering to improve cache performance. That is especially helpful for + # cache contexts that vary widely, such as the active user. On some sites + # those may be different, however, such as sites with only a handful of + # users. If you know what the high-cardinality cache contexts are for your + # site, specify those here. If you're not sure, the defaults are fairly safe + # in general. + # + # For more information about rendering optimizations see + # https://www.drupal.org/developing/api/8/render/arrays/cacheability#optimizing + auto_placeholder_conditions: + # Max-age at or below which caching is not considered worthwhile. + # + # Disable by setting to -1. + # + # @default 0 + max-age: 0 + # Cache contexts with a high cardinality. + # + # Disable by setting to []. + # + # @default ['session', 'user'] + contexts: ['session', 'user'] + # Tags with a high invalidation frequency. + # + # Disable by setting to []. + # + # @default [] + tags: [] + # Cacheability debugging: + # + # Responses with cacheability metadata (CacheableResponseInterface instances) + # get X-Drupal-Cache-Tags and X-Drupal-Cache-Contexts headers. + # + # For more information about debugging cacheable responses, see + # https://www.drupal.org/developing/api/8/response/cacheable-response-interface + # + # Not recommended in production environments + # @default false + http.response.debug_cacheability_headers: false + factory.keyvalue: + {} + # Default key/value storage service to use. + # @default keyvalue.database + # default: keyvalue.database + # Collection-specific overrides. + # state: keyvalue.database + factory.keyvalue.expirable: + {} + # Default key/value expirable storage service to use. + # @default keyvalue.database.expirable + # default: keyvalue.database.expirable + # Allowed protocols for URL generation. + filter_protocols: + - http + - https + - ftp + - news + - nntp + - tel + - telnet + - mailto + - irc + - ssh + - sftp + - webcal + - rtsp + + # Configure Cross-Site HTTP requests (CORS). + # Read https://developer.mozilla.org/en-US/docs/Web/HTTP/Access_control_CORS + # for more information about the topic in general. + # Note: By default the configuration is disabled. + cors.config: + enabled: false + # Specify allowed headers, like 'x-allowed-header'. + allowedHeaders: [] + # Specify allowed request methods, specify ['*'] to allow all possible ones. + allowedMethods: [] + # Configure requests allowed from specific origins. + allowedOrigins: ['*'] + # Sets the Access-Control-Expose-Headers header. + exposedHeaders: false + # Sets the Access-Control-Max-Age header. + maxAge: false + # Sets the Access-Control-Allow-Credentials header. + supportsCredentials: false diff --git a/docroot/sites/hs_fps/settings.php b/docroot/sites/hs_fps/settings.php new file mode 100644 index 0000000000..127324cc75 --- /dev/null +++ b/docroot/sites/hs_fps/settings.php @@ -0,0 +1,813 @@ + 'databasename', + * 'username' => 'sqlusername', + * 'password' => 'sqlpassword', + * 'host' => 'localhost', + * 'port' => '3306', + * 'driver' => 'mysql', + * 'prefix' => '', + * 'collation' => 'utf8mb4_general_ci', + * ]; + * @endcode + */ +$databases = []; + +/** + * Customizing database settings. + * + * Many of the values of the $databases array can be customized for your + * particular database system. Refer to the sample in the section above as a + * starting point. + * + * The "driver" property indicates what Drupal database driver the + * connection should use. This is usually the same as the name of the + * database type, such as mysql or sqlite, but not always. The other + * properties will vary depending on the driver. For SQLite, you must + * specify a database file name in a directory that is writable by the + * webserver. For most other drivers, you must specify a + * username, password, host, and database name. + * + * Drupal core implements drivers for mysql, pgsql, and sqlite. Other drivers + * can be provided by contributed or custom modules. To use a contributed or + * custom driver, the "namespace" property must be set to the namespace of the + * driver. The code in this namespace must be autoloadable prior to connecting + * to the database, and therefore, prior to when module root namespaces are + * added to the autoloader. To add the driver's namespace to the autoloader, + * set the "autoload" property to the PSR-4 base directory of the driver's + * namespace. This is optional for projects managed with Composer if the + * driver's namespace is in Composer's autoloader. + * + * For each database, you may optionally specify multiple "target" databases. + * A target database allows Drupal to try to send certain queries to a + * different database if it can but fall back to the default connection if not. + * That is useful for primary/replica replication, as Drupal may try to connect + * to a replica server when appropriate and if one is not available will simply + * fall back to the single primary server (The terms primary/replica are + * traditionally referred to as master/slave in database server documentation). + * + * The general format for the $databases array is as follows: + * @code + * $databases['default']['default'] = $info_array; + * $databases['default']['replica'][] = $info_array; + * $databases['default']['replica'][] = $info_array; + * $databases['extra']['default'] = $info_array; + * @endcode + * + * In the above example, $info_array is an array of settings described above. + * The first line sets a "default" database that has one primary database + * (the second level default). The second and third lines create an array + * of potential replica databases. Drupal will select one at random for a given + * request as needed. The fourth line creates a new database with a name of + * "extra". + * + * You can optionally set prefixes for some or all database table names + * by using the 'prefix' setting. If a prefix is specified, the table + * name will be prepended with its value. Be sure to use valid database + * characters only, usually alphanumeric and underscore. If no prefixes + * are desired, leave it as an empty string ''. + * + * To have all database names prefixed, set 'prefix' as a string: + * @code + * 'prefix' => 'main_', + * @endcode + * + * Per-table prefixes are deprecated as of Drupal 8.2, and will be removed in + * Drupal 9.0. After that, only a single prefix for all tables will be + * supported. + * + * To provide prefixes for specific tables, set 'prefix' as an array. + * The array's keys are the table names and the values are the prefixes. + * The 'default' element is mandatory and holds the prefix for any tables + * not specified elsewhere in the array. Example: + * @code + * 'prefix' => [ + * 'default' => 'main_', + * 'users' => 'shared_', + * 'sessions' => 'shared_', + * 'role' => 'shared_', + * 'authmap' => 'shared_', + * ], + * @endcode + * You can also use a reference to a schema/database as a prefix. This may be + * useful if your Drupal installation exists in a schema that is not the default + * or you want to access several databases from the same code base at the same + * time. + * Example: + * @code + * 'prefix' => [ + * 'default' => 'main.', + * 'users' => 'shared.', + * 'sessions' => 'shared.', + * 'role' => 'shared.', + * 'authmap' => 'shared.', + * ]; + * @endcode + * NOTE: MySQL and SQLite's definition of a schema is a database. + * + * Advanced users can add or override initial commands to execute when + * connecting to the database server, as well as PDO connection settings. For + * example, to enable MySQL SELECT queries to exceed the max_join_size system + * variable, and to reduce the database connection timeout to 5 seconds: + * @code + * $databases['default']['default'] = [ + * 'init_commands' => [ + * 'big_selects' => 'SET SQL_BIG_SELECTS=1', + * ], + * 'pdo' => [ + * PDO::ATTR_TIMEOUT => 5, + * ], + * ]; + * @endcode + * + * WARNING: The above defaults are designed for database portability. Changing + * them may cause unexpected behavior, including potential data loss. See + * https://www.drupal.org/developing/api/database/configuration for more + * information on these defaults and the potential issues. + * + * More details can be found in the constructor methods for each driver: + * - \Drupal\Core\Database\Driver\mysql\Connection::__construct() + * - \Drupal\Core\Database\Driver\pgsql\Connection::__construct() + * - \Drupal\Core\Database\Driver\sqlite\Connection::__construct() + * + * Sample Database configuration format for PostgreSQL (pgsql): + * @code + * $databases['default']['default'] = [ + * 'driver' => 'pgsql', + * 'database' => 'databasename', + * 'username' => 'sqlusername', + * 'password' => 'sqlpassword', + * 'host' => 'localhost', + * 'prefix' => '', + * ]; + * @endcode + * + * Sample Database configuration format for SQLite (sqlite): + * @code + * $databases['default']['default'] = [ + * 'driver' => 'sqlite', + * 'database' => '/path/to/databasefilename', + * ]; + * @endcode + * + * Sample Database configuration format for a driver in a contributed module: + * @code + * $databases['default']['default'] = [ + * 'driver' => 'my_driver', + * 'namespace' => 'Drupal\my_module\Driver\Database\my_driver', + * 'autoload' => 'modules/my_module/src/Driver/Database/my_driver/', + * 'database' => 'databasename', + * 'username' => 'sqlusername', + * 'password' => 'sqlpassword', + * 'host' => 'localhost', + * 'prefix' => '', + * ]; + * @endcode + */ + +/** + * Location of the site configuration files. + * + * The $settings['config_sync_directory'] specifies the location of file system + * directory used for syncing configuration data. On install, the directory is + * created. This is used for configuration imports. + * + * The default location for this directory is inside a randomly-named + * directory in the public files path. The setting below allows you to set + * its location. + */ +# $settings['config_sync_directory'] = '/directory/outside/webroot'; + +/** + * Settings: + * + * $settings contains environment-specific configuration, such as the files + * directory and reverse proxy address, and temporary configuration, such as + * security overrides. + * + * @see \Drupal\Core\Site\Settings::get() + */ + +/** + * Salt for one-time login links, cancel links, form tokens, etc. + * + * This variable will be set to a random value by the installer. All one-time + * login links will be invalidated if the value is changed. Note that if your + * site is deployed on a cluster of web servers, you must ensure that this + * variable has the same value on each server. + * + * For enhanced security, you may set this variable to the contents of a file + * outside your document root; you should also ensure that this file is not + * stored with backups of your database. + * + * Example: + * @code + * $settings['hash_salt'] = file_get_contents('/home/example/salt.txt'); + * @endcode + */ +$settings['hash_salt'] = ''; + +/** + * Deployment identifier. + * + * Drupal's dependency injection container will be automatically invalidated and + * rebuilt when the Drupal core version changes. When updating contributed or + * custom code that changes the container, changing this identifier will also + * allow the container to be invalidated as soon as code is deployed. + */ +# $settings['deployment_identifier'] = \Drupal::VERSION; + +/** + * Access control for update.php script. + * + * If you are updating your Drupal installation using the update.php script but + * are not logged in using either an account with the "Administer software + * updates" permission or the site maintenance account (the account that was + * created during installation), you will need to modify the access check + * statement below. Change the FALSE to a TRUE to disable the access check. + * After finishing the upgrade, be sure to open this file again and change the + * TRUE back to a FALSE! + */ +$settings['update_free_access'] = FALSE; + +/** + * Fallback to HTTP for Update Manager and for fetching security advisories. + * + * If your site fails to connect to updates.drupal.org over HTTPS (either when + * fetching data on available updates, or when fetching the feed of critical + * security announcements), you may uncomment this setting and set it to TRUE to + * allow an insecure fallback to HTTP. Note that doing so will open your site up + * to a potential man-in-the-middle attack. You should instead attempt to + * resolve the issues before enabling this option. + * @see https://www.drupal.org/docs/system-requirements/php-requirements#openssl + * @see https://en.wikipedia.org/wiki/Man-in-the-middle_attack + * @see \Drupal\update\UpdateFetcher + * @see \Drupal\system\SecurityAdvisories\SecurityAdvisoriesFetcher + */ +# $settings['update_fetch_with_http_fallback'] = TRUE; + +/** + * External access proxy settings: + * + * If your site must access the Internet via a web proxy then you can enter the + * proxy settings here. Set the full URL of the proxy, including the port, in + * variables: + * - $settings['http_client_config']['proxy']['http']: The proxy URL for HTTP + * requests. + * - $settings['http_client_config']['proxy']['https']: The proxy URL for HTTPS + * requests. + * You can pass in the user name and password for basic authentication in the + * URLs in these settings. + * + * You can also define an array of host names that can be accessed directly, + * bypassing the proxy, in $settings['http_client_config']['proxy']['no']. + */ +# $settings['http_client_config']['proxy']['http'] = 'http://proxy_user:proxy_pass@example.com:8080'; +# $settings['http_client_config']['proxy']['https'] = 'http://proxy_user:proxy_pass@example.com:8080'; +# $settings['http_client_config']['proxy']['no'] = ['127.0.0.1', 'localhost']; + +/** + * Reverse Proxy Configuration: + * + * Reverse proxy servers are often used to enhance the performance + * of heavily visited sites and may also provide other site caching, + * security, or encryption benefits. In an environment where Drupal + * is behind a reverse proxy, the real IP address of the client should + * be determined such that the correct client IP address is available + * to Drupal's logging, statistics, and access management systems. In + * the most simple scenario, the proxy server will add an + * X-Forwarded-For header to the request that contains the client IP + * address. However, HTTP headers are vulnerable to spoofing, where a + * malicious client could bypass restrictions by setting the + * X-Forwarded-For header directly. Therefore, Drupal's proxy + * configuration requires the IP addresses of all remote proxies to be + * specified in $settings['reverse_proxy_addresses'] to work correctly. + * + * Enable this setting to get Drupal to determine the client IP from the + * X-Forwarded-For header. If you are unsure about this setting, do not have a + * reverse proxy, or Drupal operates in a shared hosting environment, this + * setting should remain commented out. + * + * In order for this setting to be used you must specify every possible + * reverse proxy IP address in $settings['reverse_proxy_addresses']. + * If a complete list of reverse proxies is not available in your + * environment (for example, if you use a CDN) you may set the + * $_SERVER['REMOTE_ADDR'] variable directly in settings.php. + * Be aware, however, that it is likely that this would allow IP + * address spoofing unless more advanced precautions are taken. + */ +# $settings['reverse_proxy'] = TRUE; + +/** + * Specify every reverse proxy IP address in your environment. + * This setting is required if $settings['reverse_proxy'] is TRUE. + */ +# $settings['reverse_proxy_addresses'] = ['a.b.c.d', ...]; + +/** + * Reverse proxy trusted headers. + * + * Sets which headers to trust from your reverse proxy. + * + * Common values are: + * - \Symfony\Component\HttpFoundation\Request::HEADER_X_FORWARDED_FOR + * - \Symfony\Component\HttpFoundation\Request::HEADER_X_FORWARDED_HOST + * - \Symfony\Component\HttpFoundation\Request::HEADER_X_FORWARDED_PORT + * - \Symfony\Component\HttpFoundation\Request::HEADER_X_FORWARDED_PROTO + * - \Symfony\Component\HttpFoundation\Request::HEADER_FORWARDED + * + * Note the default value of + * @code + * \Symfony\Component\HttpFoundation\Request::HEADER_X_FORWARDED_FOR | \Symfony\Component\HttpFoundation\Request::HEADER_X_FORWARDED_HOST | \Symfony\Component\HttpFoundation\Request::HEADER_X_FORWARDED_PORT | \Symfony\Component\HttpFoundation\Request::HEADER_X_FORWARDED_PROTO | \Symfony\Component\HttpFoundation\Request::HEADER_FORWARDED + * @endcode + * is not secure by default. The value should be set to only the specific + * headers the reverse proxy uses. For example: + * @code + * \Symfony\Component\HttpFoundation\Request::HEADER_X_FORWARDED_FOR | \Symfony\Component\HttpFoundation\Request::HEADER_X_FORWARDED_HOST | \Symfony\Component\HttpFoundation\Request::HEADER_X_FORWARDED_PORT | \Symfony\Component\HttpFoundation\Request::HEADER_X_FORWARDED_PROTO + * @endcode + * This would trust the following headers: + * - X_FORWARDED_FOR + * - X_FORWARDED_HOST + * - X_FORWARDED_PROTO + * - X_FORWARDED_PORT + * + * @see \Symfony\Component\HttpFoundation\Request::HEADER_X_FORWARDED_FOR + * @see \Symfony\Component\HttpFoundation\Request::HEADER_X_FORWARDED_HOST + * @see \Symfony\Component\HttpFoundation\Request::HEADER_X_FORWARDED_PORT + * @see \Symfony\Component\HttpFoundation\Request::HEADER_X_FORWARDED_PROTO + * @see \Symfony\Component\HttpFoundation\Request::HEADER_FORWARDED + * @see \Symfony\Component\HttpFoundation\Request::setTrustedProxies + */ +# $settings['reverse_proxy_trusted_headers'] = \Symfony\Component\HttpFoundation\Request::HEADER_X_FORWARDED_FOR | \Symfony\Component\HttpFoundation\Request::HEADER_X_FORWARDED_HOST | \Symfony\Component\HttpFoundation\Request::HEADER_X_FORWARDED_PORT | \Symfony\Component\HttpFoundation\Request::HEADER_X_FORWARDED_PROTO | \Symfony\Component\HttpFoundation\Request::HEADER_FORWARDED; + + +/** + * Page caching: + * + * By default, Drupal sends a "Vary: Cookie" HTTP header for anonymous page + * views. This tells a HTTP proxy that it may return a page from its local + * cache without contacting the web server, if the user sends the same Cookie + * header as the user who originally requested the cached page. Without "Vary: + * Cookie", authenticated users would also be served the anonymous page from + * the cache. If the site has mostly anonymous users except a few known + * editors/administrators, the Vary header can be omitted. This allows for + * better caching in HTTP proxies (including reverse proxies), i.e. even if + * clients send different cookies, they still get content served from the cache. + * However, authenticated users should access the site directly (i.e. not use an + * HTTP proxy, and bypass the reverse proxy if one is used) in order to avoid + * getting cached pages from the proxy. + */ +# $settings['omit_vary_cookie'] = TRUE; + + +/** + * Cache TTL for client error (4xx) responses. + * + * Items cached per-URL tend to result in a large number of cache items, and + * this can be problematic on 404 pages which by their nature are unbounded. A + * fixed TTL can be set for these items, defaulting to one hour, so that cache + * backends which do not support LRU can purge older entries. To disable caching + * of client error responses set the value to 0. Currently applies only to + * page_cache module. + */ +# $settings['cache_ttl_4xx'] = 3600; + +/** + * Expiration of cached forms. + * + * Drupal's Form API stores details of forms in a cache and these entries are + * kept for at least 6 hours by default. Expired entries are cleared by cron. + * + * @see \Drupal\Core\Form\FormCache::setCache() + */ +# $settings['form_cache_expiration'] = 21600; + +/** + * Class Loader. + * + * If the APCu extension is detected, the classloader will be optimized to use + * it. Set to FALSE to disable this. + * + * @see https://getcomposer.org/doc/articles/autoloader-optimization.md + */ +# $settings['class_loader_auto_detect'] = FALSE; + +/** + * Authorized file system operations: + * + * The Update Manager module included with Drupal provides a mechanism for + * site administrators to securely install missing updates for the site + * directly through the web user interface. On securely-configured servers, + * the Update manager will require the administrator to provide SSH or FTP + * credentials before allowing the installation to proceed; this allows the + * site to update the new files as the user who owns all the Drupal files, + * instead of as the user the webserver is running as. On servers where the + * webserver user is itself the owner of the Drupal files, the administrator + * will not be prompted for SSH or FTP credentials (note that these server + * setups are common on shared hosting, but are inherently insecure). + * + * Some sites might wish to disable the above functionality, and only update + * the code directly via SSH or FTP themselves. This setting completely + * disables all functionality related to these authorized file operations. + * + * @see https://www.drupal.org/node/244924 + * + * Remove the leading hash signs to disable. + */ +# $settings['allow_authorize_operations'] = FALSE; + +/** + * Default mode for directories and files written by Drupal. + * + * Value should be in PHP Octal Notation, with leading zero. + */ +# $settings['file_chmod_directory'] = 0775; +# $settings['file_chmod_file'] = 0664; + +/** + * Public file base URL: + * + * An alternative base URL to be used for serving public files. This must + * include any leading directory path. + * + * A different value from the domain used by Drupal to be used for accessing + * public files. This can be used for a simple CDN integration, or to improve + * security by serving user-uploaded files from a different domain or subdomain + * pointing to the same server. Do not include a trailing slash. + */ +# $settings['file_public_base_url'] = 'http://downloads.example.com/files'; + +/** + * Public file path: + * + * A local file system path where public files will be stored. This directory + * must exist and be writable by Drupal. This directory must be relative to + * the Drupal installation directory and be accessible over the web. + */ +# $settings['file_public_path'] = 'sites/default/files'; + +/** + * Private file path: + * + * A local file system path where private files will be stored. This directory + * must be absolute, outside of the Drupal installation directory and not + * accessible over the web. + * + * Note: Caches need to be cleared when this value is changed to make the + * private:// stream wrapper available to the system. + * + * See https://www.drupal.org/documentation/modules/file for more information + * about securing private files. + */ +# $settings['file_private_path'] = ''; + +/** + * Temporary file path: + * + * A local file system path where temporary files will be stored. This directory + * must be absolute, outside of the Drupal installation directory and not + * accessible over the web. + * + * If this is not set, the default for the operating system will be used. + * + * @see \Drupal\Component\FileSystem\FileSystem::getOsTemporaryDirectory() + */ +# $settings['file_temp_path'] = '/tmp'; + +/** + * Session write interval: + * + * Set the minimum interval between each session write to database. + * For performance reasons it defaults to 180. + */ +# $settings['session_write_interval'] = 180; + +/** + * String overrides: + * + * To override specific strings on your site with or without enabling the Locale + * module, add an entry to this list. This functionality allows you to change + * a small number of your site's default English language interface strings. + * + * Remove the leading hash signs to enable. + * + * The "en" part of the variable name, is dynamic and can be any langcode of + * any added language. (eg locale_custom_strings_de for german). + */ +# $settings['locale_custom_strings_en'][''] = [ +# 'forum' => 'Discussion board', +# '@count min' => '@count minutes', +# ]; + +/** + * A custom theme for the offline page: + * + * This applies when the site is explicitly set to maintenance mode through the + * administration page or when the database is inactive due to an error. + * The template file should also be copied into the theme. It is located inside + * 'core/modules/system/templates/maintenance-page.html.twig'. + * + * Note: This setting does not apply to installation and update pages. + */ +# $settings['maintenance_theme'] = 'bartik'; + +/** + * PHP settings: + * + * To see what PHP settings are possible, including whether they can be set at + * runtime (by using ini_set()), read the PHP documentation: + * http://php.net/manual/ini.list.php + * See \Drupal\Core\DrupalKernel::bootEnvironment() for required runtime + * settings and the .htaccess file for non-runtime settings. + * Settings defined there should not be duplicated here so as to avoid conflict + * issues. + */ + +/** + * If you encounter a situation where users post a large amount of text, and + * the result is stripped out upon viewing but can still be edited, Drupal's + * output filter may not have sufficient memory to process it. If you + * experience this issue, you may wish to uncomment the following two lines + * and increase the limits of these variables. For more information, see + * http://php.net/manual/pcre.configuration.php. + */ +# ini_set('pcre.backtrack_limit', 200000); +# ini_set('pcre.recursion_limit', 200000); + +/** + * Add Permissions-Policy header to disable Google FLoC. + * + * By default, Drupal sends the 'Permissions-Policy: interest-cohort=()' header + * to disable Google's Federated Learning of Cohorts feature, introduced in + * Chrome 89. + * + * See https://en.wikipedia.org/wiki/Federated_Learning_of_Cohorts for more + * information about FLoC. + * + * If you don't wish to disable FLoC in Chrome, you can set this value + * to FALSE. + */ +# $settings['block_interest_cohort'] = TRUE; + +/** + * Configuration overrides. + * + * To globally override specific configuration values for this site, + * set them here. You usually don't need to use this feature. This is + * useful in a configuration file for a vhost or directory, rather than + * the default settings.php. + * + * Note that any values you provide in these variable overrides will not be + * viewable from the Drupal administration interface. The administration + * interface displays the values stored in configuration so that you can stage + * changes to other environments that don't have the overrides. + * + * There are particular configuration values that are risky to override. For + * example, overriding the list of installed modules in 'core.extension' is not + * supported as module install or uninstall has not occurred. Other examples + * include field storage configuration, because it has effects on database + * structure, and 'core.menu.static_menu_link_overrides' since this is cached in + * a way that is not config override aware. Also, note that changing + * configuration values in settings.php will not fire any of the configuration + * change events. + */ +# $config['system.site']['name'] = 'My Drupal site'; +# $config['user.settings']['anonymous'] = 'Visitor'; + +/** + * Fast 404 pages: + * + * Drupal can generate fully themed 404 pages. However, some of these responses + * are for images or other resource files that are not displayed to the user. + * This can waste bandwidth, and also generate server load. + * + * The options below return a simple, fast 404 page for URLs matching a + * specific pattern: + * - $config['system.performance']['fast_404']['exclude_paths']: A regular + * expression to match paths to exclude, such as images generated by image + * styles, or dynamically-resized images. The default pattern provided below + * also excludes the private file system. If you need to add more paths, you + * can add '|path' to the expression. + * - $config['system.performance']['fast_404']['paths']: A regular expression to + * match paths that should return a simple 404 page, rather than the fully + * themed 404 page. If you don't have any aliases ending in htm or html you + * can add '|s?html?' to the expression. + * - $config['system.performance']['fast_404']['html']: The html to return for + * simple 404 pages. + * + * Remove the leading hash signs if you would like to alter this functionality. + */ +# $config['system.performance']['fast_404']['exclude_paths'] = '/\/(?:styles)|(?:system\/files)\//'; +# $config['system.performance']['fast_404']['paths'] = '/\.(?:txt|png|gif|jpe?g|css|js|ico|swf|flv|cgi|bat|pl|dll|exe|asp)$/i'; +# $config['system.performance']['fast_404']['html'] = '404 Not Found

Not Found

The requested URL "@path" was not found on this server.

'; + +/** + * Load services definition file. + */ +$settings['container_yamls'][] = $app_root . '/' . $site_path . '/services.yml'; + +/** + * Override the default service container class. + * + * This is useful for example to trace the service container for performance + * tracking purposes, for testing a service container with an error condition or + * to test a service container that throws an exception. + */ +# $settings['container_base_class'] = '\Drupal\Core\DependencyInjection\Container'; + +/** + * Override the default yaml parser class. + * + * Provide a fully qualified class name here if you would like to provide an + * alternate implementation YAML parser. The class must implement the + * \Drupal\Component\Serialization\SerializationInterface interface. + */ +# $settings['yaml_parser_class'] = NULL; + +/** + * Trusted host configuration. + * + * Drupal core can use the Symfony trusted host mechanism to prevent HTTP Host + * header spoofing. + * + * To enable the trusted host mechanism, you enable your allowable hosts + * in $settings['trusted_host_patterns']. This should be an array of regular + * expression patterns, without delimiters, representing the hosts you would + * like to allow. + * + * For example: + * @code + * $settings['trusted_host_patterns'] = [ + * '^www\.example\.com$', + * ]; + * @endcode + * will allow the site to only run from www.example.com. + * + * If you are running multisite, or if you are running your site from + * different domain names (eg, you don't redirect http://www.example.com to + * http://example.com), you should specify all of the host patterns that are + * allowed by your site. + * + * For example: + * @code + * $settings['trusted_host_patterns'] = [ + * '^example\.com$', + * '^.+\.example\.com$', + * '^example\.org$', + * '^.+\.example\.org$', + * ]; + * @endcode + * will allow the site to run off of all variants of example.com and + * example.org, with all subdomains included. + */ + +/** + * The default list of directories that will be ignored by Drupal's file API. + * + * By default ignore node_modules and bower_components folders to avoid issues + * with common frontend tools and recursive scanning of directories looking for + * extensions. + * + * @see \Drupal\Core\File\FileSystemInterface::scanDirectory() + * @see \Drupal\Core\Extension\ExtensionDiscovery::scanDirectory() + */ +$settings['file_scan_ignore_directories'] = [ + 'node_modules', + 'bower_components', +]; + +/** + * The default number of entities to update in a batch process. + * + * This is used by update and post-update functions that need to go through and + * change all the entities on a site, so it is useful to increase this number + * if your hosting configuration (i.e. RAM allocation, CPU speed) allows for a + * larger number of entities to be processed in a single batch run. + */ +$settings['entity_update_batch_size'] = 50; + +/** + * Entity update backup. + * + * This is used to inform the entity storage handler that the backup tables as + * well as the original entity type and field storage definitions should be + * retained after a successful entity update process. + */ +$settings['entity_update_backup'] = TRUE; + +/** + * Node migration type. + * + * This is used to force the migration system to use the classic node migrations + * instead of the default complete node migrations. The migration system will + * use the classic node migration only if there are existing migrate_map tables + * for the classic node migrations and they contain data. These tables may not + * exist if you are developing custom migrations and do not want to use the + * complete node migrations. Set this to TRUE to force the use of the classic + * node migrations. + */ +$settings['migrate_node_migrate_type_classic'] = FALSE; + +/** + * Load local development override configuration, if available. + * + * Create a settings.local.php file to override variables on secondary (staging, + * development, etc.) installations of this site. + * + * Typical uses of settings.local.php include: + * - Disabling caching. + * - Disabling JavaScript/CSS compression. + * - Rerouting outgoing emails. + * + * Keep this code block at the end of this file to take full effect. + */ +# +# if (file_exists($app_root . '/' . $site_path . '/settings.local.php')) { +# include $app_root . '/' . $site_path . '/settings.local.php'; +# } +require DRUPAL_ROOT . "/../vendor/acquia/blt/settings/blt.settings.php"; +/** + * IMPORTANT. + * + * Do not include additional settings here. Instead, add them to settings + * included by `blt.settings.php`. See BLT's documentation for more detail. + * + * @link https://docs.acquia.com/blt/ + */ diff --git a/docroot/sites/hs_fps/settings/default.includes.settings.php b/docroot/sites/hs_fps/settings/default.includes.settings.php new file mode 100644 index 0000000000..bfefdd89f2 --- /dev/null +++ b/docroot/sites/hs_fps/settings/default.includes.settings.php @@ -0,0 +1,50 @@ + + [ + 'default' => + [ + 'database' => $db_name, + 'username' => '${drupal.db.username}', + 'password' => '${drupal.db.password}', + 'host' => '${drupal.db.host}', + 'port' => '${drupal.db.port}', + 'namespace' => 'Drupal\\Core\\Database\\Driver\\mysql', + 'driver' => 'mysql', + 'prefix' => '', + ], + ], +]; + +// Use development service parameters. +$settings['container_yamls'][] = EnvironmentDetector::getRepoRoot() . '/docroot/sites/development.services.yml'; +$settings['container_yamls'][] = EnvironmentDetector::getRepoRoot() . '/docroot/sites/blt.development.services.yml'; + +// Allow access to update.php. +$settings['update_free_access'] = TRUE; + +/** + * Assertions. + * + * The Drupal project primarily uses runtime assertions to enforce the + * expectations of the API by failing when incorrect calls are made by code + * under development. + * + * @see http://php.net/assert + * @see https://www.drupal.org/node/2492225 + * + * If you are using PHP 7.0 it is strongly recommended that you set + * zend.assertions=1 in the PHP.ini file (It cannot be changed from .htaccess + * or runtime) on development machines and to 0 in production. + * + * @see https://wiki.php.net/rfc/expectations + */ +assert_options(ASSERT_ACTIVE, TRUE); +assert_options(ASSERT_EXCEPTION, TRUE); + +/** + * Show all error messages, with backtrace information. + * + * In case the error level could not be fetched from the database, as for + * example the database connection failed, we rely only on this value. + */ +$config['system.logging']['error_level'] = 'verbose'; + +/** + * Disable CSS and JS aggregation. + */ +$config['system.performance']['css']['preprocess'] = FALSE; +$config['system.performance']['js']['preprocess'] = FALSE; + +/** + * Disable the render cache (this includes the page cache). + * + * Note: you should test with the render cache enabled, to ensure the correct + * cacheability metadata is present. However, in the early stages of + * development, you may want to disable it. + * + * This setting disables the render cache by using the Null cache back-end + * defined by the development.services.yml file above. + * + * Do not use this setting until after the site is installed. + */ +// $settings['cache']['bins']['render'] = 'cache.backend.null'; +/** + * Disable Dynamic Page Cache. + * + * Note: you should test with Dynamic Page Cache enabled, to ensure the correct + * cacheability metadata is present (and hence the expected behavior). However, + * in the early stages of development, you may want to disable it. + */ +// $settings['cache']['bins']['dynamic_page_cache'] = 'cache.backend.null'; +/** + * Allow test modules and themes to be installed. + * + * Drupal ignores test modules and themes by default for performance reasons. + * During development it can be useful to install test extensions for debugging + * purposes. + */ +$settings['extension_discovery_scan_tests'] = FALSE; + + +/** + * Configure static caches. + * + * Note: you should test with the config, bootstrap, and discovery caches + * enabled to test that metadata is cached as expected. However, in the early + * stages of development, you may want to disable them. Overrides to these bins + * must be explicitly set for each bin to change the default configuration + * provided by Drupal core in core.services.yml. + * See https://www.drupal.org/node/2754947 + */ + +// $settings['cache']['bins']['bootstrap'] = 'cache.backend.null'; +// $settings['cache']['bins']['discovery'] = 'cache.backend.null'; +// $settings['cache']['bins']['config'] = 'cache.backend.null'; +/** + * Enable access to rebuild.php. + * + * This setting can be enabled to allow Drupal's php and database cached + * storage to be cleared via the rebuild.php page. Access to this page can also + * be gained by generating a query string from rebuild_token_calculator.sh and + * using these parameters in a request to rebuild.php. + */ +$settings['rebuild_access'] = FALSE; + +/** + * Skip file system permissions hardening. + * + * The system module will periodically check the permissions of your site's + * site directory to ensure that it is not writable by the website user. For + * sites that are managed with a version control system, this can cause problems + * when files in that directory such as settings.php are updated, because the + * user pulling in the changes won't have permissions to modify files in the + * directory. + */ +$settings['skip_permissions_hardening'] = TRUE; + +/** + * Files paths. + */ +$settings['file_private_path'] = EnvironmentDetector::getRepoRoot() . '/files-private/default'; +/** + * Site path. + * + * @var $site_path + * This is always set and exposed by the Drupal Kernel. + */ +// phpcs:ignore +$settings['file_public_path'] = 'sites/' . EnvironmentDetector::getSiteName($site_path) . '/files'; + +/** + * Trusted host configuration. + * + * See full description in default.settings.php. + */ +$settings['trusted_host_patterns'] = [ + '^.+$', +]; diff --git a/drush/sites/hs_fps.site.yml b/drush/sites/hs_fps.site.yml new file mode 100644 index 0000000000..ee72d811b4 --- /dev/null +++ b/drush/sites/hs_fps.site.yml @@ -0,0 +1,18 @@ +local: + uri: hs-fps + root: '${env.cwd}/docroot' +dev: + root: /var/www/html/humscigryphon.dev/docroot + uri: hs-fps-dev.stanford.edu + host: staging-25390.prod.hosting.acquia.com + user: humscigryphon.dev +stage: + root: /var/www/html/humscigryphon.test/docroot + uri: hs-fps-stage.stanford.edu + host: staging-25390.prod.hosting.acquia.com + user: humscigryphon.test +prod: + root: /var/www/html/humscigryphon.prod/docroot + uri: hs-fps-prod.stanford.edu + host: web-42199.prod.hosting.acquia.com + user: humscigryphon.prod From d0f8a81a838a6f3048d12f2b1fb1d4b3da062192 Mon Sep 17 00:00:00 2001 From: joegl <20383-joegl@users.noreply.drupalcode.org> Date: Tue, 4 Jun 2024 15:24:10 -0500 Subject: [PATCH 02/15] Removed eck from clonenode. --- .../humsci/hs_actions/src/Plugin/Action/CloneNode.php | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/docroot/modules/humsci/hs_actions/src/Plugin/Action/CloneNode.php b/docroot/modules/humsci/hs_actions/src/Plugin/Action/CloneNode.php index 63aa0b5cff..7a65ac2f03 100644 --- a/docroot/modules/humsci/hs_actions/src/Plugin/Action/CloneNode.php +++ b/docroot/modules/humsci/hs_actions/src/Plugin/Action/CloneNode.php @@ -223,7 +223,7 @@ public function execute($entity = NULL) { protected function duplicateEntity(ContentEntityInterface $entity) { $duplicate_entity = $entity->createDuplicate(); - // Loop through paragraph and eck fields to clone those entities. + // Loop through paragraph fields to clone those entities. foreach ($this->getReferenceFields($entity->getEntityTypeId(), $entity->bundle()) as $field) { foreach ($duplicate_entity->{$field->getName()} as $value) { $value->entity = $this->duplicateEntity($value->entity); @@ -275,12 +275,6 @@ protected function getFieldClonePlugins() { protected function getReferenceFields($entity_type_id, $bundle) { $fields = $this->entityFieldManager->getFieldDefinitions($entity_type_id, $bundle); - if ($this->entityTypeManager->hasDefinition('eck_entity_type')) { - $eck_types = $this->entityTypeManager->getStorage('eck_entity_type') - ->loadMultiple(); - $clone_target_types = array_keys($eck_types); - } - $clone_target_types[] = 'paragraph'; $clone_target_types[] = 'hs_entity'; From 60a5b7f643a19a12f90c5d1ebaa102cfba904b28 Mon Sep 17 00:00:00 2001 From: joegl <20383-joegl@users.noreply.drupalcode.org> Date: Tue, 4 Jun 2024 15:25:50 -0500 Subject: [PATCH 03/15] Removed eck from hs_config_prefix --- .../humsci/hs_config_prefix/hs_config_prefix.module | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/docroot/modules/humsci/hs_config_prefix/hs_config_prefix.module b/docroot/modules/humsci/hs_config_prefix/hs_config_prefix.module index a89a17e8fe..737e1c8902 100644 --- a/docroot/modules/humsci/hs_config_prefix/hs_config_prefix.module +++ b/docroot/modules/humsci/hs_config_prefix/hs_config_prefix.module @@ -9,7 +9,6 @@ use Drupal\Core\Routing\RouteMatchInterface; use Drupal\Core\Entity\EntityInterface; use Drupal\Core\Config\Entity\ConfigEntityBase; use Drupal\Core\Form\FormStateInterface; -use Drupal\eck\Entity\EckEntityType; use Drupal\Core\Installer\InstallerKernel; /** @@ -88,17 +87,6 @@ function hs_config_prefix_entity_presave(EntityInterface $entity) { 'behavior_settings', ]; - if (\Drupal::moduleHandler()->moduleExists('eck')) { - $eck_types = array_keys(EckEntityType::loadMultiple()); - - // ECK appends _type to the machine name of each entity type it has, so we - // have to do the same. - foreach ($eck_types as &$type) { - $type = "{$type}_type"; - } - $exclude_config_types = array_merge($exclude_config_types, $eck_types); - } - if (!in_array($entity->getEntityTypeId(), $exclude_config_types)) { try { hs_config_prefix_set_entity_id($entity); From b701bfa751c49bcb9da2b44470f253d2e1a01209 Mon Sep 17 00:00:00 2001 From: joegl <20383-joegl@users.noreply.drupalcode.org> Date: Tue, 4 Jun 2024 15:38:45 -0500 Subject: [PATCH 04/15] hs_courses eck fix. dropped config/install and eck dependency. --- ..._field_override.node.hs_course.promote.yml | 24 - ....course_collections.instructor.default.yml | 29 - ...ty_form_display.node.hs_course.default.yml | 335 --- ....course_collections.instructor.default.yml | 41 - ...ty_view_display.node.hs_course.default.yml | 572 ----- ...eck.eck_entity_type.course_collections.yml | 10 - ...eck_type.course_collections.instructor.yml | 9 - ...ons.instructor.field_instructor_person.yml | 28 - .../field.field.node.hs_course.body.yml | 24 - ...course.field_hs_course_academic_career.yml | 21 - ...s_course.field_hs_course_academic_year.yml | 23 - ...ld.node.hs_course.field_hs_course_code.yml | 19 - ...hs_course.field_hs_course_explore_tags.yml | 29 - ...node.hs_course.field_hs_course_grading.yml | 21 - ...ield.node.hs_course.field_hs_course_id.yml | 25 - ...ld.node.hs_course.field_hs_course_link.yml | 25 - ...hs_course.field_hs_course_requirements.yml | 21 - ...hs_course.field_hs_course_section_comp.yml | 31 - ...hs_course.field_hs_course_section_days.yml | 19 - ...ourse.field_hs_course_section_end_date.yml | 21 - ...ourse.field_hs_course_section_end_time.yml | 19 - ...e.hs_course.field_hs_course_section_id.yml | 25 - ...course.field_hs_course_section_instruc.yml | 29 - ...ourse.field_hs_course_section_location.yml | 19 - ..._course.field_hs_course_section_number.yml | 25 - ...course.field_hs_course_section_quarter.yml | 23 - ...course.field_hs_course_section_st_date.yml | 21 - ...course.field_hs_course_section_st_time.yml | 19 - ...ourse.field_hs_course_section_syllabus.yml | 28 - ...s_course.field_hs_course_section_units.yml | 19 - ...node.hs_course.field_hs_course_subject.yml | 21 - ...ld.node.hs_course.field_hs_course_tags.yml | 31 - ...se_collections.field_instructor_person.yml | 20 - ...e.node.field_hs_course_academic_career.yml | 27 - ...age.node.field_hs_course_academic_year.yml | 22 - ...ield.storage.node.field_hs_course_code.yml | 21 - ...rage.node.field_hs_course_explore_tags.yml | 20 - ...d.storage.node.field_hs_course_grading.yml | 23 - .../field.storage.node.field_hs_course_id.yml | 22 - ...ield.storage.node.field_hs_course_link.yml | 21 - ...rage.node.field_hs_course_requirements.yml | 23 - ...rage.node.field_hs_course_section_comp.yml | 22 - ...rage.node.field_hs_course_section_days.yml | 21 - ....node.field_hs_course_section_end_date.yml | 20 - ....node.field_hs_course_section_end_time.yml | 21 - ...torage.node.field_hs_course_section_id.yml | 22 - ...e.node.field_hs_course_section_instruc.yml | 20 - ....node.field_hs_course_section_location.yml | 21 - ...ge.node.field_hs_course_section_number.yml | 22 - ...e.node.field_hs_course_section_quarter.yml | 35 - ...e.node.field_hs_course_section_st_date.yml | 20 - ...e.node.field_hs_course_section_st_time.yml | 21 - ....node.field_hs_course_section_syllabus.yml | 20 - ...age.node.field_hs_course_section_units.yml | 21 - ...d.storage.node.field_hs_course_subject.yml | 23 - ...ield.storage.node.field_hs_course_tags.yml | 22 - .../config/install/node.type.hs_course.yml | 19 - .../install/pathauto.pattern.hs_courses.yml | 22 - ....behavior_settings.node_type_hs_course.yml | 9 - ...axonomy.vocabulary.hs_course_component.yml | 11 - .../taxonomy.vocabulary.hs_course_tags.yml | 11 - .../config/install/views.view.hs_courses.yml | 2248 ----------------- .../humsci/hs_courses/hs_courses.info.yml | 1 - 63 files changed, 4457 deletions(-) delete mode 100644 docroot/modules/humsci/hs_courses/config/install/core.base_field_override.node.hs_course.promote.yml delete mode 100644 docroot/modules/humsci/hs_courses/config/install/core.entity_form_display.course_collections.instructor.default.yml delete mode 100644 docroot/modules/humsci/hs_courses/config/install/core.entity_form_display.node.hs_course.default.yml delete mode 100644 docroot/modules/humsci/hs_courses/config/install/core.entity_view_display.course_collections.instructor.default.yml delete mode 100644 docroot/modules/humsci/hs_courses/config/install/core.entity_view_display.node.hs_course.default.yml delete mode 100644 docroot/modules/humsci/hs_courses/config/install/eck.eck_entity_type.course_collections.yml delete mode 100644 docroot/modules/humsci/hs_courses/config/install/eck.eck_type.course_collections.instructor.yml delete mode 100644 docroot/modules/humsci/hs_courses/config/install/field.field.course_collections.instructor.field_instructor_person.yml delete mode 100644 docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.body.yml delete mode 100644 docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_academic_career.yml delete mode 100644 docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_academic_year.yml delete mode 100644 docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_code.yml delete mode 100644 docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_explore_tags.yml delete mode 100644 docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_grading.yml delete mode 100644 docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_id.yml delete mode 100644 docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_link.yml delete mode 100644 docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_requirements.yml delete mode 100644 docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_comp.yml delete mode 100644 docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_days.yml delete mode 100644 docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_end_date.yml delete mode 100644 docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_end_time.yml delete mode 100644 docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_id.yml delete mode 100644 docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_instruc.yml delete mode 100644 docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_location.yml delete mode 100644 docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_number.yml delete mode 100644 docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_quarter.yml delete mode 100644 docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_st_date.yml delete mode 100644 docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_st_time.yml delete mode 100644 docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_syllabus.yml delete mode 100644 docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_units.yml delete mode 100644 docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_subject.yml delete mode 100644 docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_tags.yml delete mode 100644 docroot/modules/humsci/hs_courses/config/install/field.storage.course_collections.field_instructor_person.yml delete mode 100644 docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_academic_career.yml delete mode 100644 docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_academic_year.yml delete mode 100644 docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_code.yml delete mode 100644 docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_explore_tags.yml delete mode 100644 docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_grading.yml delete mode 100644 docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_id.yml delete mode 100644 docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_link.yml delete mode 100644 docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_requirements.yml delete mode 100644 docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_comp.yml delete mode 100644 docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_days.yml delete mode 100644 docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_end_date.yml delete mode 100644 docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_end_time.yml delete mode 100644 docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_id.yml delete mode 100644 docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_instruc.yml delete mode 100644 docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_location.yml delete mode 100644 docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_number.yml delete mode 100644 docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_quarter.yml delete mode 100644 docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_st_date.yml delete mode 100644 docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_st_time.yml delete mode 100644 docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_syllabus.yml delete mode 100644 docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_units.yml delete mode 100644 docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_subject.yml delete mode 100644 docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_tags.yml delete mode 100644 docroot/modules/humsci/hs_courses/config/install/node.type.hs_course.yml delete mode 100644 docroot/modules/humsci/hs_courses/config/install/pathauto.pattern.hs_courses.yml delete mode 100644 docroot/modules/humsci/hs_courses/config/install/rabbit_hole.behavior_settings.node_type_hs_course.yml delete mode 100644 docroot/modules/humsci/hs_courses/config/install/taxonomy.vocabulary.hs_course_component.yml delete mode 100644 docroot/modules/humsci/hs_courses/config/install/taxonomy.vocabulary.hs_course_tags.yml delete mode 100644 docroot/modules/humsci/hs_courses/config/install/views.view.hs_courses.yml diff --git a/docroot/modules/humsci/hs_courses/config/install/core.base_field_override.node.hs_course.promote.yml b/docroot/modules/humsci/hs_courses/config/install/core.base_field_override.node.hs_course.promote.yml deleted file mode 100644 index 570ccfc175..0000000000 --- a/docroot/modules/humsci/hs_courses/config/install/core.base_field_override.node.hs_course.promote.yml +++ /dev/null @@ -1,24 +0,0 @@ -uuid: c224a86c-c025-4a5a-8caa-c08b3bd8ba8d -langcode: en -status: true -dependencies: - config: - - node.type.hs_course -_core: - default_config_hash: V7ISAIJsiEtCsbDRdV7N4Sasa_PVEuh69nvnsb5hrJM -id: node.hs_course.promote -field_name: promote -entity_type: node -bundle: hs_course -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/docroot/modules/humsci/hs_courses/config/install/core.entity_form_display.course_collections.instructor.default.yml b/docroot/modules/humsci/hs_courses/config/install/core.entity_form_display.course_collections.instructor.default.yml deleted file mode 100644 index e288afd8d1..0000000000 --- a/docroot/modules/humsci/hs_courses/config/install/core.entity_form_display.course_collections.instructor.default.yml +++ /dev/null @@ -1,29 +0,0 @@ -uuid: 62da19a0-19a8-490d-aacd-667f11a036bb -langcode: en -status: true -dependencies: - config: - - eck.eck_type.course_collections.instructor - - field.field.course_collections.instructor.field_instructor_person -id: course_collections.instructor.default -targetEntityType: course_collections -bundle: instructor -mode: default -content: - field_instructor_person: - weight: 1 - settings: { } - third_party_settings: { } - type: options_select - region: content - title: - type: string_textfield - weight: 0 - region: content - settings: - size: 60 - placeholder: '' - third_party_settings: { } -hidden: - created: true - uid: true diff --git a/docroot/modules/humsci/hs_courses/config/install/core.entity_form_display.node.hs_course.default.yml b/docroot/modules/humsci/hs_courses/config/install/core.entity_form_display.node.hs_course.default.yml deleted file mode 100644 index eb1c9a4d45..0000000000 --- a/docroot/modules/humsci/hs_courses/config/install/core.entity_form_display.node.hs_course.default.yml +++ /dev/null @@ -1,335 +0,0 @@ -uuid: 3aba6306-c6a8-417c-afab-8fe6bf827a1e -langcode: en -status: true -dependencies: - config: - - entity_browser.browser.file_browser - - field.field.node.hs_course.body - - field.field.node.hs_course.field_hs_course_academic_career - - field.field.node.hs_course.field_hs_course_academic_year - - field.field.node.hs_course.field_hs_course_code - - field.field.node.hs_course.field_hs_course_explore_tags - - field.field.node.hs_course.field_hs_course_grading - - field.field.node.hs_course.field_hs_course_id - - field.field.node.hs_course.field_hs_course_link - - field.field.node.hs_course.field_hs_course_requirements - - field.field.node.hs_course.field_hs_course_section_comp - - field.field.node.hs_course.field_hs_course_section_days - - field.field.node.hs_course.field_hs_course_section_end_date - - field.field.node.hs_course.field_hs_course_section_end_time - - field.field.node.hs_course.field_hs_course_section_id - - field.field.node.hs_course.field_hs_course_section_instruc - - field.field.node.hs_course.field_hs_course_section_location - - field.field.node.hs_course.field_hs_course_section_number - - field.field.node.hs_course.field_hs_course_section_quarter - - field.field.node.hs_course.field_hs_course_section_st_date - - field.field.node.hs_course.field_hs_course_section_st_time - - field.field.node.hs_course.field_hs_course_section_syllabus - - field.field.node.hs_course.field_hs_course_section_units - - field.field.node.hs_course.field_hs_course_subject - - field.field.node.hs_course.field_hs_course_tags - - node.type.hs_course - module: - - datetime - - entity_browser - - entity_browser_entity_form - - field_group - - inline_entity_form - - link - - path - - text -third_party_settings: - field_group: - group_section_information: - children: - - field_hs_course_section_id - - field_hs_course_section_number - - field_hs_course_section_instruc - - field_hs_course_section_syllabus - - field_hs_course_section_location - - group_section_dates - parent_name: '' - weight: 13 - format_type: fieldset - format_settings: - id: '' - classes: '' - description: '' - required_fields: true - label: 'Section Information' - group_section_dates: - children: - - field_hs_course_section_days - - field_hs_course_section_st_date - - field_hs_course_section_st_time - - field_hs_course_section_end_date - - field_hs_course_section_end_time - parent_name: group_section_information - weight: 13 - format_type: fieldset - format_settings: - id: '' - classes: '' - description: '' - required_fields: true - label: 'Section Dates' -id: node.hs_course.default -targetEntityType: node -bundle: hs_course -mode: default -content: - body: - type: text_textarea_with_summary - weight: 12 - region: content - settings: - rows: 9 - summary_rows: 3 - placeholder: '' - third_party_settings: { } - created: - type: datetime_timestamp - weight: 17 - region: content - settings: { } - third_party_settings: { } - field_hs_course_academic_career: - weight: 26 - settings: { } - third_party_settings: { } - type: options_select - region: content - field_hs_course_academic_year: - type: datetime_default - weight: 4 - region: content - settings: { } - third_party_settings: { } - field_hs_course_code: - type: string_textfield - weight: 2 - region: content - settings: - size: 60 - placeholder: '' - third_party_settings: { } - field_hs_course_explore_tags: - weight: 27 - settings: - match_operator: CONTAINS - size: 60 - placeholder: '' - third_party_settings: { } - type: entity_reference_autocomplete - region: content - field_hs_course_grading: - type: string_textfield - weight: 5 - region: content - settings: - size: 60 - placeholder: '' - third_party_settings: { } - field_hs_course_id: - type: number - weight: 3 - region: content - settings: - placeholder: '' - third_party_settings: { } - field_hs_course_link: - type: link_default - weight: 11 - region: content - settings: - placeholder_url: '' - placeholder_title: '' - third_party_settings: { } - field_hs_course_requirements: - type: string_textfield - weight: 1 - region: content - settings: - size: 60 - placeholder: '' - third_party_settings: { } - field_hs_course_section_comp: - type: entity_reference_autocomplete - weight: 6 - region: content - settings: - match_operator: CONTAINS - size: 60 - placeholder: '' - third_party_settings: { } - field_hs_course_section_days: - type: string_textfield - weight: 15 - region: content - settings: - size: 60 - placeholder: '' - third_party_settings: { } - field_hs_course_section_end_date: - type: datetime_default - weight: 18 - region: content - settings: { } - third_party_settings: { } - field_hs_course_section_end_time: - type: string_textfield - weight: 19 - region: content - settings: - size: 60 - placeholder: '' - third_party_settings: { } - field_hs_course_section_id: - type: number - weight: 8 - region: content - settings: - placeholder: '' - third_party_settings: { } - field_hs_course_section_instruc: - type: inline_entity_form_complex - weight: 10 - region: content - settings: - form_mode: default - override_labels: true - label_singular: Instructor - label_plural: Instructors - allow_new: true - allow_existing: true - match_operator: CONTAINS - collapsible: false - collapsed: false - allow_duplicate: false - third_party_settings: - entity_browser_entity_form: - entity_browser_id: _none - field_hs_course_section_location: - type: string_textfield - weight: 12 - region: content - settings: - size: 60 - placeholder: '' - third_party_settings: { } - field_hs_course_section_number: - type: number - weight: 9 - region: content - settings: - placeholder: '' - third_party_settings: { } - field_hs_course_section_quarter: - type: options_select - weight: 7 - region: content - settings: { } - third_party_settings: { } - field_hs_course_section_st_date: - type: datetime_default - weight: 16 - region: content - settings: { } - third_party_settings: { } - field_hs_course_section_st_time: - type: string_textfield - weight: 17 - region: content - settings: - size: 60 - placeholder: '' - third_party_settings: { } - field_hs_course_section_syllabus: - type: entity_browser_entity_reference - weight: 11 - region: content - settings: - entity_browser: file_browser - field_widget_display: label - field_widget_edit: true - field_widget_remove: true - selection_mode: selection_append - field_widget_replace: false - open: false - field_widget_display_settings: { } - third_party_settings: { } - field_hs_course_section_units: - type: string_textfield - weight: 9 - region: content - settings: - size: 60 - placeholder: '' - third_party_settings: { } - field_hs_course_subject: - type: string_textfield - weight: 8 - region: content - settings: - size: 60 - placeholder: '' - third_party_settings: { } - field_hs_course_tags: - type: entity_reference_autocomplete - weight: 10 - region: content - settings: - match_operator: CONTAINS - size: 60 - placeholder: '' - third_party_settings: { } - path: - type: path - weight: 18 - 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: 20 - 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: 0 - region: content - settings: - size: 60 - placeholder: '' - third_party_settings: { } - uid: - type: entity_reference_autocomplete - weight: 14 - settings: - match_operator: CONTAINS - size: 60 - placeholder: '' - region: content - third_party_settings: { } - url_redirects: - weight: 19 - region: content - settings: { } - third_party_settings: { } -hidden: { } diff --git a/docroot/modules/humsci/hs_courses/config/install/core.entity_view_display.course_collections.instructor.default.yml b/docroot/modules/humsci/hs_courses/config/install/core.entity_view_display.course_collections.instructor.default.yml deleted file mode 100644 index 7ec458b867..0000000000 --- a/docroot/modules/humsci/hs_courses/config/install/core.entity_view_display.course_collections.instructor.default.yml +++ /dev/null @@ -1,41 +0,0 @@ -uuid: 65e44979-6f86-4e60-af11-88c7f03aabb4 -langcode: en -status: true -dependencies: - config: - - eck.eck_type.course_collections.instructor - - field.field.course_collections.instructor.field_instructor_person - module: - - field_formatter_class - - hs_field_helpers - - layout_builder - - layout_discovery -id: course_collections.instructor.default -targetEntityType: course_collections -bundle: instructor -mode: default -content: - field_instructor_person: - weight: 1 - label: hidden - settings: - link: true - third_party_settings: - field_formatter_class: - class: '' - hs_field_helpers: - inline_contents: 0 - type: entity_reference_label - region: content - title: - label: hidden - type: string - weight: 0 - region: content - settings: - link_to_entity: false - third_party_settings: { } -hidden: - changed: true - created: true - uid: true diff --git a/docroot/modules/humsci/hs_courses/config/install/core.entity_view_display.node.hs_course.default.yml b/docroot/modules/humsci/hs_courses/config/install/core.entity_view_display.node.hs_course.default.yml deleted file mode 100644 index 82bd1c5ead..0000000000 --- a/docroot/modules/humsci/hs_courses/config/install/core.entity_view_display.node.hs_course.default.yml +++ /dev/null @@ -1,572 +0,0 @@ -uuid: 68ea02fc-9cff-4e66-b2bd-828a9d58ad27 -langcode: en -status: true -dependencies: - config: - - field.field.node.hs_course.body - - field.field.node.hs_course.field_hs_course_academic_career - - field.field.node.hs_course.field_hs_course_academic_year - - field.field.node.hs_course.field_hs_course_code - - field.field.node.hs_course.field_hs_course_explore_tags - - field.field.node.hs_course.field_hs_course_grading - - field.field.node.hs_course.field_hs_course_id - - field.field.node.hs_course.field_hs_course_link - - field.field.node.hs_course.field_hs_course_requirements - - field.field.node.hs_course.field_hs_course_section_comp - - field.field.node.hs_course.field_hs_course_section_days - - field.field.node.hs_course.field_hs_course_section_end_date - - field.field.node.hs_course.field_hs_course_section_end_time - - field.field.node.hs_course.field_hs_course_section_id - - field.field.node.hs_course.field_hs_course_section_instruc - - field.field.node.hs_course.field_hs_course_section_location - - field.field.node.hs_course.field_hs_course_section_number - - field.field.node.hs_course.field_hs_course_section_quarter - - field.field.node.hs_course.field_hs_course_section_st_date - - field.field.node.hs_course.field_hs_course_section_st_time - - field.field.node.hs_course.field_hs_course_section_syllabus - - field.field.node.hs_course.field_hs_course_section_units - - field.field.node.hs_course.field_hs_course_subject - - field.field.node.hs_course.field_hs_course_tags - - node.type.hs_course - - system.menu.main - module: - - hs_layouts - - layout_builder - - menu_block - - options - - user -third_party_settings: - layout_builder: - enabled: true - allow_custom: false - sections: - - - layout_id: three_column - layout_settings: - section_width: decanter-grid - region_widths: center - components: - 83cd1eee-8726-4940-9d8e-cf73c4af0b8a: - uuid: 83cd1eee-8726-4940-9d8e-cf73c4af0b8a - region: left_sidebar - configuration: - id: 'menu_block:main' - label: 'Main navigation' - provider: menu_block - label_display: visible - follow: 1 - follow_parent: '-1' - level: 1 - depth: 0 - expand: 1 - parent: 'main:' - suggestion: menu_block__main - label_type: root - context_mapping: { } - additional: { } - weight: 0 - 12fe5317-34cd-40f0-aa6a-1a7890ff624a: - uuid: 12fe5317-34cd-40f0-aa6a-1a7890ff624a - region: main - configuration: - id: 'field_block:node:hs_course:title' - label: Title - provider: layout_builder - label_display: '0' - formatter: - label: hidden - type: entity_title_heading - settings: - tag: h1 - third_party_settings: - field_formatter_class: - class: '' - hs_field_helpers: - inline_contents: 0 - context_mapping: - entity: layout_builder.entity - additional: { } - weight: 0 - b8975e21-5e0b-41d4-8638-097ee92d6007: - uuid: b8975e21-5e0b-41d4-8638-097ee92d6007 - region: main - configuration: - id: 'field_block:node:hs_course:field_hs_course_requirements' - label: Requirements - provider: layout_builder - label_display: '0' - formatter: - label: above - type: string - settings: - link_to_entity: false - third_party_settings: - field_formatter_class: - class: '' - hs_field_helpers: - inline_contents: 0 - context_mapping: - entity: layout_builder.entity - additional: { } - weight: 1 - 6d3c98c9-6d7c-4cbb-8ee1-bd497a314227: - uuid: 6d3c98c9-6d7c-4cbb-8ee1-bd497a314227 - region: main - configuration: - id: 'field_block:node:hs_course:field_hs_course_academic_year' - label: 'Academic Year' - provider: layout_builder - label_display: '0' - formatter: - label: above - type: datetime_academic_year - settings: - timezone_override: '' - third_party_settings: - field_formatter_class: - class: '' - hs_field_helpers: - inline_contents: 0 - context_mapping: - entity: layout_builder.entity - additional: { } - weight: 2 - 3e7b5b4a-be7a-4f2f-bc98-50996e4a2830: - uuid: 3e7b5b4a-be7a-4f2f-bc98-50996e4a2830 - region: main - configuration: - id: 'field_block:node:hs_course:body' - label: Body - provider: layout_builder - label_display: '0' - formatter: - label: hidden - type: text_default - settings: { } - third_party_settings: - field_formatter_class: - class: '' - hs_field_helpers: - inline_contents: 0 - context_mapping: - entity: layout_builder.entity - additional: { } - weight: 3 - 83cf3e63-a119-4e19-8c99-80693cb511cc: - uuid: 83cf3e63-a119-4e19-8c99-80693cb511cc - region: main - configuration: - id: 'field_block:node:hs_course:field_hs_course_link' - label: 'Course Link' - provider: layout_builder - label_display: '0' - formatter: - label: above - type: link - settings: - trim_length: 80 - url_only: false - url_plain: false - rel: '0' - target: '0' - third_party_settings: - field_formatter_class: - class: '' - hs_field_helpers: - inline_contents: 0 - context_mapping: - entity: layout_builder.entity - additional: { } - weight: 4 - 4f69db3b-78ad-4c29-8f86-577471c55ca8: - uuid: 4f69db3b-78ad-4c29-8f86-577471c55ca8 - region: main - configuration: - id: 'field_block:node:hs_course:field_hs_course_section_end_date' - label: 'End Date' - provider: layout_builder - label_display: '0' - formatter: - label: above - type: datetime_custom - settings: - timezone_override: '' - date_format: 'M j, Y' - third_party_settings: - field_formatter_class: - class: '' - hs_field_helpers: - inline_contents: 0 - context_mapping: - entity: layout_builder.entity - additional: { } - weight: 5 - 23ac5313-97b8-474f-82a1-5a94253e408d: - uuid: 23ac5313-97b8-474f-82a1-5a94253e408d - region: main - configuration: - id: 'field_block:node:hs_course:field_hs_course_section_end_time' - label: 'End Time' - provider: layout_builder - label_display: '0' - formatter: - label: above - type: string - settings: - link_to_entity: false - third_party_settings: - field_formatter_class: - class: '' - hs_field_helpers: - inline_contents: 0 - context_mapping: - entity: layout_builder.entity - additional: { } - weight: 6 - 6d970133-88fc-48c6-90b2-cf191d04f463: - uuid: 6d970133-88fc-48c6-90b2-cf191d04f463 - region: main - configuration: - id: 'field_block:node:hs_course:field_hs_course_grading' - label: Grading - provider: layout_builder - label_display: '0' - formatter: - label: above - type: string - settings: - link_to_entity: false - third_party_settings: - field_formatter_class: - class: '' - hs_field_helpers: - inline_contents: 0 - context_mapping: - entity: layout_builder.entity - additional: { } - weight: 7 - 027ebe6d-d697-48c5-a62c-df46b4e78968: - uuid: 027ebe6d-d697-48c5-a62c-df46b4e78968 - region: main - configuration: - id: 'field_block:node:hs_course:field_hs_course_section_instruc' - label: Instructors - provider: layout_builder - label_display: '0' - formatter: - label: above - type: entity_reference_entity_view - settings: - view_mode: default - third_party_settings: - field_formatter_class: - class: '' - ds: - ds_limit: '' - hs_field_helpers: - inline_contents: 0 - context_mapping: - entity: layout_builder.entity - additional: { } - weight: 8 - 9874e34a-e131-4a8c-a787-2e3827c34b44: - uuid: 9874e34a-e131-4a8c-a787-2e3827c34b44 - region: main - configuration: - id: 'field_block:node:hs_course:field_hs_course_section_location' - label: Location - provider: layout_builder - label_display: '0' - formatter: - label: above - type: string - settings: - link_to_entity: false - third_party_settings: - field_formatter_class: - class: '' - hs_field_helpers: - inline_contents: 0 - context_mapping: - entity: layout_builder.entity - additional: { } - weight: 9 - 4d6a3015-4093-4b92-821f-d3b5d1efd120: - uuid: 4d6a3015-4093-4b92-821f-d3b5d1efd120 - region: main - configuration: - id: 'field_block:node:hs_course:field_hs_course_section_quarter' - label: Quarter - provider: layout_builder - label_display: '0' - formatter: - label: above - type: list_default - settings: { } - third_party_settings: - field_formatter_class: - class: '' - hs_field_helpers: - inline_contents: 0 - context_mapping: - entity: layout_builder.entity - additional: { } - weight: 10 - 9a185c23-f82d-4ace-bbf3-4f518dddf7a7: - uuid: 9a185c23-f82d-4ace-bbf3-4f518dddf7a7 - region: main - configuration: - id: 'field_block:node:hs_course:field_hs_course_requirements' - label: Requirements - provider: layout_builder - label_display: '0' - formatter: - label: above - type: string - settings: - link_to_entity: false - third_party_settings: - field_formatter_class: - class: '' - hs_field_helpers: - inline_contents: 0 - context_mapping: - entity: layout_builder.entity - additional: { } - weight: 11 - 3233ff82-f1b3-4421-8619-39ea9394169e: - uuid: 3233ff82-f1b3-4421-8619-39ea9394169e - region: main - configuration: - id: 'field_block:node:hs_course:field_hs_course_section_days' - label: 'Section Days' - provider: layout_builder - label_display: '0' - formatter: - label: above - type: string - settings: - link_to_entity: false - third_party_settings: - field_formatter_class: - class: '' - hs_field_helpers: - inline_contents: 0 - context_mapping: - entity: layout_builder.entity - additional: { } - weight: 12 - 2c83390a-76c2-4da6-ab0e-1bfe7f742fbf: - uuid: 2c83390a-76c2-4da6-ab0e-1bfe7f742fbf - region: main - configuration: - id: 'field_block:node:hs_course:field_hs_course_section_number' - label: 'Section Number' - provider: layout_builder - label_display: '0' - formatter: - label: above - type: number_integer - settings: - thousand_separator: '' - prefix_suffix: true - third_party_settings: - field_formatter_class: - class: '' - hs_field_helpers: - inline_contents: 0 - context_mapping: - entity: layout_builder.entity - additional: { } - weight: 13 - 48358faa-7ba3-4cf1-b37b-d5b1ac6c437b: - uuid: 48358faa-7ba3-4cf1-b37b-d5b1ac6c437b - region: main - configuration: - id: 'field_block:node:hs_course:field_hs_course_section_st_date' - label: 'Start Date' - provider: layout_builder - label_display: '0' - formatter: - label: above - type: datetime_custom - settings: - timezone_override: '' - date_format: 'M j, Y' - third_party_settings: - field_formatter_class: - class: '' - hs_field_helpers: - inline_contents: 0 - context_mapping: - entity: layout_builder.entity - additional: { } - weight: 14 - 538b7567-326a-4965-9038-202e86a2c4e0: - uuid: 538b7567-326a-4965-9038-202e86a2c4e0 - region: main - configuration: - id: 'field_block:node:hs_course:field_hs_course_section_st_time' - label: 'Start Time' - provider: layout_builder - label_display: '0' - formatter: - label: above - type: string - settings: - link_to_entity: false - third_party_settings: - field_formatter_class: - class: '' - hs_field_helpers: - inline_contents: 0 - context_mapping: - entity: layout_builder.entity - additional: { } - weight: 15 - 454b5b8f-d37d-4c1d-8b24-bae212339752: - uuid: 454b5b8f-d37d-4c1d-8b24-bae212339752 - region: main - configuration: - id: 'field_block:node:hs_course:field_hs_course_subject' - label: Subject - provider: layout_builder - label_display: '0' - formatter: - label: above - type: string - settings: - link_to_entity: false - third_party_settings: - field_formatter_class: - class: '' - hs_field_helpers: - inline_contents: 0 - context_mapping: - entity: layout_builder.entity - additional: { } - weight: 16 - ce68835c-10e2-44d3-a6ce-7830a9c07cd2: - uuid: ce68835c-10e2-44d3-a6ce-7830a9c07cd2 - region: main - configuration: - id: 'field_block:node:hs_course:field_hs_course_section_syllabus' - label: Syllabus - provider: layout_builder - label_display: '0' - formatter: - label: above - type: entity_reference_entity_view - settings: - view_mode: default - third_party_settings: - field_formatter_class: - class: '' - hs_field_helpers: - inline_contents: 0 - context_mapping: - entity: layout_builder.entity - additional: { } - weight: 17 - 5ca0a647-9edc-4632-9909-9be755fb29eb: - uuid: 5ca0a647-9edc-4632-9909-9be755fb29eb - region: main - configuration: - id: 'field_block:node:hs_course:field_hs_course_section_units' - label: Units - provider: layout_builder - label_display: '0' - formatter: - label: above - type: string - settings: - link_to_entity: false - third_party_settings: - field_formatter_class: - class: '' - hs_field_helpers: - inline_contents: 0 - context_mapping: - entity: layout_builder.entity - additional: { } - weight: 18 - 86117c13-3143-41b7-918e-6c985af42602: - uuid: 86117c13-3143-41b7-918e-6c985af42602 - region: main - configuration: - id: 'field_block:node:hs_course:field_hs_course_academic_career' - label_display: '' - formatter: - label: above - settings: { } - third_party_settings: { } - type: list_default - context_mapping: - entity: layout_builder.entity - additional: - field_name: field_hs_course_academic_career - weight: 19 - 6fed084f-8afe-4e81-b523-59a03d581ff0: - uuid: 6fed084f-8afe-4e81-b523-59a03d581ff0 - region: main - configuration: - label_display: '0' - context_mapping: - entity: layout_builder.entity - id: 'field_block:node:hs_course:field_hs_course_explore_tags' - formatter: - label: above - settings: - link: true - third_party_settings: { } - type: entity_reference_label - additional: { } - weight: 20 -id: node.hs_course.default -targetEntityType: node -bundle: hs_course -mode: default -content: - field_hs_course_academic_career: - weight: 101 - label: above - settings: { } - third_party_settings: { } - type: list_default - region: main - field_hs_course_explore_tags: - weight: 102 - label: above - settings: - link: true - third_party_settings: { } - type: entity_reference_label - region: main - links: - weight: 100 - region: content - settings: { } - third_party_settings: { } -hidden: - body: true - field_hs_course_academic_year: true - field_hs_course_code: true - field_hs_course_grading: true - field_hs_course_id: true - field_hs_course_link: true - field_hs_course_requirements: true - field_hs_course_section_comp: true - field_hs_course_section_days: true - field_hs_course_section_end_date: true - field_hs_course_section_end_time: true - field_hs_course_section_id: true - field_hs_course_section_instruc: true - field_hs_course_section_location: true - field_hs_course_section_number: true - field_hs_course_section_quarter: true - field_hs_course_section_st_date: true - field_hs_course_section_st_time: true - field_hs_course_section_syllabus: true - field_hs_course_section_units: true - field_hs_course_subject: true - field_hs_course_tags: true diff --git a/docroot/modules/humsci/hs_courses/config/install/eck.eck_entity_type.course_collections.yml b/docroot/modules/humsci/hs_courses/config/install/eck.eck_entity_type.course_collections.yml deleted file mode 100644 index b249c5186b..0000000000 --- a/docroot/modules/humsci/hs_courses/config/install/eck.eck_entity_type.course_collections.yml +++ /dev/null @@ -1,10 +0,0 @@ -uuid: 14b682a0-37af-47d9-a384-2a94bd6bc96e -langcode: en -status: true -dependencies: { } -id: course_collections -label: 'Course Collections' -created: true -changed: true -uid: true -title: true diff --git a/docroot/modules/humsci/hs_courses/config/install/eck.eck_type.course_collections.instructor.yml b/docroot/modules/humsci/hs_courses/config/install/eck.eck_type.course_collections.instructor.yml deleted file mode 100644 index 07f1ce632d..0000000000 --- a/docroot/modules/humsci/hs_courses/config/install/eck.eck_type.course_collections.instructor.yml +++ /dev/null @@ -1,9 +0,0 @@ -uuid: 746154c0-c656-4efd-aaec-0c27b3769ddf -langcode: en -status: true -dependencies: - config: - - eck.eck_entity_type.course_collections -name: Instructor -type: instructor -description: '' diff --git a/docroot/modules/humsci/hs_courses/config/install/field.field.course_collections.instructor.field_instructor_person.yml b/docroot/modules/humsci/hs_courses/config/install/field.field.course_collections.instructor.field_instructor_person.yml deleted file mode 100644 index 539bb403ad..0000000000 --- a/docroot/modules/humsci/hs_courses/config/install/field.field.course_collections.instructor.field_instructor_person.yml +++ /dev/null @@ -1,28 +0,0 @@ -uuid: ea5fe7c4-f8d9-41a1-835c-e10ce72ed4ff -langcode: en -status: true -dependencies: - config: - - eck.eck_type.course_collections.instructor - - field.storage.course_collections.field_instructor_person - - node.type.hs_person -id: course_collections.instructor.field_instructor_person -field_name: field_instructor_person -entity_type: course_collections -bundle: instructor -label: 'Instructor Person' -description: 'Link the instructor to a person content.' -required: false -translatable: false -default_value: { } -default_value_callback: '' -settings: - handler: 'default:node' - handler_settings: - target_bundles: - hs_person: hs_person - sort: - field: _none - auto_create: false - auto_create_bundle: '' -field_type: entity_reference diff --git a/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.body.yml b/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.body.yml deleted file mode 100644 index 1060e06c4a..0000000000 --- a/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.body.yml +++ /dev/null @@ -1,24 +0,0 @@ -uuid: 3d43a89e-2492-4235-8fc7-200b95223906 -langcode: en -status: true -dependencies: - config: - - field.storage.node.body - - node.type.hs_course - module: - - text -_core: - default_config_hash: i0q_fEjQsqvG7VrfLxBrj62iC566L1uWB-4cFyM2sCA -id: node.hs_course.body -field_name: body -entity_type: node -bundle: hs_course -label: Body -description: '' -required: false -translatable: true -default_value: { } -default_value_callback: '' -settings: - display_summary: true -field_type: text_with_summary diff --git a/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_academic_career.yml b/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_academic_career.yml deleted file mode 100644 index 7a76e30449..0000000000 --- a/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_academic_career.yml +++ /dev/null @@ -1,21 +0,0 @@ -uuid: 16915a71-8f83-4275-8ed0-90111801bfa2 -langcode: en -status: true -dependencies: - config: - - field.storage.node.field_hs_course_academic_career - - node.type.hs_course - module: - - options -id: node.hs_course.field_hs_course_academic_career -field_name: field_hs_course_academic_career -entity_type: node -bundle: hs_course -label: 'Academic Career' -description: '' -required: false -translatable: false -default_value: { } -default_value_callback: '' -settings: { } -field_type: list_string diff --git a/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_academic_year.yml b/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_academic_year.yml deleted file mode 100644 index b4d118c56c..0000000000 --- a/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_academic_year.yml +++ /dev/null @@ -1,23 +0,0 @@ -uuid: 084a2e0d-738d-4c91-a075-53833723a560 -langcode: en -status: true -dependencies: - config: - - field.storage.node.field_hs_course_academic_year - - node.type.hs_course - module: - - datetime -_core: - default_config_hash: lRt3-Aohko8l83MT30v4upjfzUj-pEa4eYKq4LYPheA -id: node.hs_course.field_hs_course_academic_year -field_name: field_hs_course_academic_year -entity_type: node -bundle: hs_course -label: 'Academic Year' -description: '' -required: false -translatable: false -default_value: { } -default_value_callback: '' -settings: { } -field_type: datetime diff --git a/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_code.yml b/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_code.yml deleted file mode 100644 index 3e3b7316a3..0000000000 --- a/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_code.yml +++ /dev/null @@ -1,19 +0,0 @@ -uuid: 0b008db6-df0d-4cf7-9e7d-6bc7a3a81461 -langcode: en -status: true -dependencies: - config: - - field.storage.node.field_hs_course_code - - node.type.hs_course -id: node.hs_course.field_hs_course_code -field_name: field_hs_course_code -entity_type: node -bundle: hs_course -label: 'Course Code' -description: '' -required: false -translatable: false -default_value: { } -default_value_callback: '' -settings: { } -field_type: string diff --git a/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_explore_tags.yml b/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_explore_tags.yml deleted file mode 100644 index a49bf90f02..0000000000 --- a/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_explore_tags.yml +++ /dev/null @@ -1,29 +0,0 @@ -uuid: ae9bcf4e-734d-4415-9ee6-3ee0b02c5dde -langcode: en -status: true -dependencies: - config: - - field.storage.node.field_hs_course_explore_tags - - node.type.hs_course - - taxonomy.vocabulary.hs_course_tags -id: node.hs_course.field_hs_course_explore_tags -field_name: field_hs_course_explore_tags -entity_type: node -bundle: hs_course -label: 'Explore Course Tags' -description: '' -required: false -translatable: false -default_value: { } -default_value_callback: '' -settings: - handler: 'default:taxonomy_term' - handler_settings: - target_bundles: - hs_course_tags: hs_course_tags - sort: - field: name - direction: asc - auto_create: true - auto_create_bundle: '' -field_type: entity_reference diff --git a/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_grading.yml b/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_grading.yml deleted file mode 100644 index 0c6dc6c0ad..0000000000 --- a/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_grading.yml +++ /dev/null @@ -1,21 +0,0 @@ -uuid: c673e5c3-5ae8-40e6-aa2c-231035b3d7cb -langcode: en -status: true -dependencies: - config: - - field.storage.node.field_hs_course_grading - - node.type.hs_course -_core: - default_config_hash: bl70HmJzdSTYVFBDwDSGfKViYb4g0S0BhvlDAWZQDFM -id: node.hs_course.field_hs_course_grading -field_name: field_hs_course_grading -entity_type: node -bundle: hs_course -label: Grading -description: '' -required: false -translatable: false -default_value: { } -default_value_callback: '' -settings: { } -field_type: string diff --git a/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_id.yml b/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_id.yml deleted file mode 100644 index 25a4dbd575..0000000000 --- a/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_id.yml +++ /dev/null @@ -1,25 +0,0 @@ -uuid: 97b6af6d-99a4-407b-a1d4-a54af228d503 -langcode: en -status: true -dependencies: - config: - - field.storage.node.field_hs_course_id - - node.type.hs_course -_core: - default_config_hash: boTYKK39nsF_Vx_AtqgdWC-0IPlgbNK5JfaeMgZ5HuQ -id: node.hs_course.field_hs_course_id -field_name: field_hs_course_id -entity_type: node -bundle: hs_course -label: 'Course ID' -description: '' -required: false -translatable: false -default_value: { } -default_value_callback: '' -settings: - min: null - max: null - prefix: '' - suffix: '' -field_type: integer diff --git a/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_link.yml b/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_link.yml deleted file mode 100644 index b7feae104f..0000000000 --- a/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_link.yml +++ /dev/null @@ -1,25 +0,0 @@ -uuid: b6939e1c-5180-4b1b-9308-b43b88454e15 -langcode: en -status: true -dependencies: - config: - - field.storage.node.field_hs_course_link - - node.type.hs_course - module: - - link -_core: - default_config_hash: MvRrPIUTeabIU6brJBH0_CDyn1aETDspDuOO2fJ74Cw -id: node.hs_course.field_hs_course_link -field_name: field_hs_course_link -entity_type: node -bundle: hs_course -label: 'Course Link' -description: '' -required: false -translatable: false -default_value: { } -default_value_callback: '' -settings: - link_type: 16 - title: 0 -field_type: link diff --git a/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_requirements.yml b/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_requirements.yml deleted file mode 100644 index 041d12795f..0000000000 --- a/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_requirements.yml +++ /dev/null @@ -1,21 +0,0 @@ -uuid: 685d1dc4-a6e6-49da-b8fe-dc6f4eca2319 -langcode: en -status: true -dependencies: - config: - - field.storage.node.field_hs_course_requirements - - node.type.hs_course -_core: - default_config_hash: N_rrjD7BpoftlMsHWTvnFRXqtrayI9VlLSPtw0zMcUc -id: node.hs_course.field_hs_course_requirements -field_name: field_hs_course_requirements -entity_type: node -bundle: hs_course -label: Requirements -description: '' -required: false -translatable: false -default_value: { } -default_value_callback: '' -settings: { } -field_type: string diff --git a/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_comp.yml b/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_comp.yml deleted file mode 100644 index e63a77175d..0000000000 --- a/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_comp.yml +++ /dev/null @@ -1,31 +0,0 @@ -uuid: 4bd33839-86ff-4b1a-8b81-dff72d7af9c2 -langcode: en -status: true -dependencies: - config: - - field.storage.node.field_hs_course_section_comp - - node.type.hs_course - - taxonomy.vocabulary.hs_course_component -_core: - default_config_hash: ig-N5-bvXl4ovLsDpYgkmCI6oFmsyS86KT8nxYJ99L0 -id: node.hs_course.field_hs_course_section_comp -field_name: field_hs_course_section_comp -entity_type: node -bundle: hs_course -label: Component -description: '' -required: false -translatable: false -default_value: { } -default_value_callback: '' -settings: - handler: 'default:taxonomy_term' - handler_settings: - target_bundles: - hs_course_component: hs_course_component - sort: - field: name - direction: asc - auto_create: true - auto_create_bundle: '' -field_type: entity_reference diff --git a/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_days.yml b/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_days.yml deleted file mode 100644 index 354565979b..0000000000 --- a/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_days.yml +++ /dev/null @@ -1,19 +0,0 @@ -uuid: 75ec49e5-4291-4f5b-aafa-7d7af50b69ac -langcode: en -status: true -dependencies: - config: - - field.storage.node.field_hs_course_section_days - - node.type.hs_course -id: node.hs_course.field_hs_course_section_days -field_name: field_hs_course_section_days -entity_type: node -bundle: hs_course -label: 'Section Days' -description: '' -required: false -translatable: false -default_value: { } -default_value_callback: '' -settings: { } -field_type: string diff --git a/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_end_date.yml b/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_end_date.yml deleted file mode 100644 index 26239df83a..0000000000 --- a/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_end_date.yml +++ /dev/null @@ -1,21 +0,0 @@ -uuid: e69490a1-8ae0-4534-b3af-9e03c4351d60 -langcode: en -status: true -dependencies: - config: - - field.storage.node.field_hs_course_section_end_date - - node.type.hs_course - module: - - datetime -id: node.hs_course.field_hs_course_section_end_date -field_name: field_hs_course_section_end_date -entity_type: node -bundle: hs_course -label: 'End Date' -description: '' -required: false -translatable: false -default_value: { } -default_value_callback: '' -settings: { } -field_type: datetime diff --git a/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_end_time.yml b/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_end_time.yml deleted file mode 100644 index d5df24ed93..0000000000 --- a/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_end_time.yml +++ /dev/null @@ -1,19 +0,0 @@ -uuid: e5cf7721-5fec-4886-ae94-da118d4a5d1b -langcode: en -status: true -dependencies: - config: - - field.storage.node.field_hs_course_section_end_time - - node.type.hs_course -id: node.hs_course.field_hs_course_section_end_time -field_name: field_hs_course_section_end_time -entity_type: node -bundle: hs_course -label: 'End Time' -description: '' -required: false -translatable: false -default_value: { } -default_value_callback: '' -settings: { } -field_type: string diff --git a/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_id.yml b/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_id.yml deleted file mode 100644 index 73e66c942f..0000000000 --- a/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_id.yml +++ /dev/null @@ -1,25 +0,0 @@ -uuid: a1a548ce-dab0-4c0a-8cd9-84a75c0a507b -langcode: en -status: true -dependencies: - config: - - field.storage.node.field_hs_course_section_id - - node.type.hs_course -_core: - default_config_hash: sLP-0r9L-oZiL1j4YT8_4q8hXmB7gN9gJNjqf8JBmJo -id: node.hs_course.field_hs_course_section_id -field_name: field_hs_course_section_id -entity_type: node -bundle: hs_course -label: 'Section ID' -description: '' -required: false -translatable: false -default_value: { } -default_value_callback: '' -settings: - min: null - max: null - prefix: '' - suffix: '' -field_type: integer diff --git a/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_instruc.yml b/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_instruc.yml deleted file mode 100644 index 275949d1c2..0000000000 --- a/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_instruc.yml +++ /dev/null @@ -1,29 +0,0 @@ -uuid: e4cd19ef-8e54-4a48-b368-5cba334c3acb -langcode: en -status: true -dependencies: - config: - - eck.eck_type.course_collections.instructor - - field.storage.node.field_hs_course_section_instruc - - node.type.hs_course -id: node.hs_course.field_hs_course_section_instruc -field_name: field_hs_course_section_instruc -entity_type: node -bundle: hs_course -label: Instructors -description: '' -required: false -translatable: false -default_value: { } -default_value_callback: '' -settings: - handler: 'default:course_collections' - handler_settings: - target_bundles: - instructor: instructor - sort: - field: title - direction: ASC - auto_create: false - auto_create_bundle: '' -field_type: entity_reference diff --git a/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_location.yml b/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_location.yml deleted file mode 100644 index cde820ee2d..0000000000 --- a/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_location.yml +++ /dev/null @@ -1,19 +0,0 @@ -uuid: bb9a00a0-ab79-424b-bac3-273cf3409f7f -langcode: en -status: true -dependencies: - config: - - field.storage.node.field_hs_course_section_location - - node.type.hs_course -id: node.hs_course.field_hs_course_section_location -field_name: field_hs_course_section_location -entity_type: node -bundle: hs_course -label: Location -description: '' -required: false -translatable: false -default_value: { } -default_value_callback: '' -settings: { } -field_type: string diff --git a/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_number.yml b/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_number.yml deleted file mode 100644 index f2487659b9..0000000000 --- a/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_number.yml +++ /dev/null @@ -1,25 +0,0 @@ -uuid: 6302ce82-3217-4ad3-b5b1-0a523870373c -langcode: en -status: true -dependencies: - config: - - field.storage.node.field_hs_course_section_number - - node.type.hs_course -_core: - default_config_hash: tzZzxrHYmTluhaWfWUMTP7fTbLLmwSFQUlzjxU9xIMU -id: node.hs_course.field_hs_course_section_number -field_name: field_hs_course_section_number -entity_type: node -bundle: hs_course -label: 'Section Number' -description: '' -required: false -translatable: false -default_value: { } -default_value_callback: '' -settings: - min: null - max: null - prefix: '' - suffix: '' -field_type: integer diff --git a/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_quarter.yml b/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_quarter.yml deleted file mode 100644 index c4c44cd720..0000000000 --- a/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_quarter.yml +++ /dev/null @@ -1,23 +0,0 @@ -uuid: 4d037066-491f-4775-9367-16a2a5985770 -langcode: en -status: true -dependencies: - config: - - field.storage.node.field_hs_course_section_quarter - - node.type.hs_course - module: - - options -_core: - default_config_hash: BLjXJbQqfP8SsyaNSo-xcHzm0sWgVt_B--uu_cR1YGc -id: node.hs_course.field_hs_course_section_quarter -field_name: field_hs_course_section_quarter -entity_type: node -bundle: hs_course -label: Quarter -description: '' -required: false -translatable: false -default_value: { } -default_value_callback: '' -settings: { } -field_type: list_string diff --git a/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_st_date.yml b/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_st_date.yml deleted file mode 100644 index d1df5f2b43..0000000000 --- a/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_st_date.yml +++ /dev/null @@ -1,21 +0,0 @@ -uuid: 2de527cb-10d7-41ef-8932-16014fea5c2c -langcode: en -status: true -dependencies: - config: - - field.storage.node.field_hs_course_section_st_date - - node.type.hs_course - module: - - datetime -id: node.hs_course.field_hs_course_section_st_date -field_name: field_hs_course_section_st_date -entity_type: node -bundle: hs_course -label: 'Start Date' -description: '' -required: false -translatable: false -default_value: { } -default_value_callback: '' -settings: { } -field_type: datetime diff --git a/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_st_time.yml b/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_st_time.yml deleted file mode 100644 index bff4ac2def..0000000000 --- a/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_st_time.yml +++ /dev/null @@ -1,19 +0,0 @@ -uuid: 9a9bb84b-d193-4daf-80f7-53814f746577 -langcode: en -status: true -dependencies: - config: - - field.storage.node.field_hs_course_section_st_time - - node.type.hs_course -id: node.hs_course.field_hs_course_section_st_time -field_name: field_hs_course_section_st_time -entity_type: node -bundle: hs_course -label: 'Start Time' -description: '' -required: false -translatable: false -default_value: { } -default_value_callback: '' -settings: { } -field_type: string diff --git a/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_syllabus.yml b/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_syllabus.yml deleted file mode 100644 index 9ede4d7474..0000000000 --- a/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_syllabus.yml +++ /dev/null @@ -1,28 +0,0 @@ -uuid: c6889122-33e3-4331-b334-175e6f7a8755 -langcode: en -status: true -dependencies: - config: - - field.storage.node.field_hs_course_section_syllabus - - media.type.file - - node.type.hs_course -id: node.hs_course.field_hs_course_section_syllabus -field_name: field_hs_course_section_syllabus -entity_type: node -bundle: hs_course -label: Syllabus -description: '' -required: false -translatable: false -default_value: { } -default_value_callback: '' -settings: - handler: 'default:media' - handler_settings: - target_bundles: - file: file - sort: - field: _none - auto_create: false - auto_create_bundle: '' -field_type: entity_reference diff --git a/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_units.yml b/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_units.yml deleted file mode 100644 index 42dbdb1cec..0000000000 --- a/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_units.yml +++ /dev/null @@ -1,19 +0,0 @@ -uuid: a20f80cd-dcaf-4e89-aa08-0ce061a809c2 -langcode: en -status: true -dependencies: - config: - - field.storage.node.field_hs_course_section_units - - node.type.hs_course -id: node.hs_course.field_hs_course_section_units -field_name: field_hs_course_section_units -entity_type: node -bundle: hs_course -label: Units -description: '' -required: false -translatable: false -default_value: { } -default_value_callback: '' -settings: { } -field_type: string diff --git a/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_subject.yml b/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_subject.yml deleted file mode 100644 index 0fadb7d738..0000000000 --- a/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_subject.yml +++ /dev/null @@ -1,21 +0,0 @@ -uuid: 93917368-41e8-466f-b885-1a3e05f2893a -langcode: en -status: true -dependencies: - config: - - field.storage.node.field_hs_course_subject - - node.type.hs_course -_core: - default_config_hash: 7j1BScm1qWCF-87n38RJA5oL1JcMCBRN6tAfINfx-QA -id: node.hs_course.field_hs_course_subject -field_name: field_hs_course_subject -entity_type: node -bundle: hs_course -label: Subject -description: '' -required: false -translatable: false -default_value: { } -default_value_callback: '' -settings: { } -field_type: string diff --git a/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_tags.yml b/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_tags.yml deleted file mode 100644 index 77df6335ad..0000000000 --- a/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_tags.yml +++ /dev/null @@ -1,31 +0,0 @@ -uuid: bfd0ce3b-7846-486d-b3b1-41ae133042c6 -langcode: en -status: true -dependencies: - config: - - field.storage.node.field_hs_course_tags - - node.type.hs_course - - taxonomy.vocabulary.hs_course_tags -_core: - default_config_hash: UMU8CiqNBgyaYZ4hlq9_rAeSyh6eXnP3Jpttn1HbIiY -id: node.hs_course.field_hs_course_tags -field_name: field_hs_course_tags -entity_type: node -bundle: hs_course -label: 'Course Tags' -description: '' -required: false -translatable: false -default_value: { } -default_value_callback: '' -settings: - handler: 'default:taxonomy_term' - handler_settings: - target_bundles: - hs_course_tags: hs_course_tags - sort: - field: name - direction: asc - auto_create: true - auto_create_bundle: '' -field_type: entity_reference diff --git a/docroot/modules/humsci/hs_courses/config/install/field.storage.course_collections.field_instructor_person.yml b/docroot/modules/humsci/hs_courses/config/install/field.storage.course_collections.field_instructor_person.yml deleted file mode 100644 index cce8800ccb..0000000000 --- a/docroot/modules/humsci/hs_courses/config/install/field.storage.course_collections.field_instructor_person.yml +++ /dev/null @@ -1,20 +0,0 @@ -uuid: 623c304a-29ab-4f41-9312-eda02445d928 -langcode: en -status: true -dependencies: - module: - - eck - - node -id: course_collections.field_instructor_person -field_name: field_instructor_person -entity_type: course_collections -type: entity_reference -settings: - target_type: node -module: core -locked: false -cardinality: 1 -translatable: true -indexes: { } -persist_with_no_fields: false -custom_storage: false diff --git a/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_academic_career.yml b/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_academic_career.yml deleted file mode 100644 index 03afb9fc32..0000000000 --- a/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_academic_career.yml +++ /dev/null @@ -1,27 +0,0 @@ -uuid: 4d771e9f-ef42-4746-b2b3-3bded6e13426 -langcode: en -status: true -dependencies: - module: - - node - - options -id: node.field_hs_course_academic_career -field_name: field_hs_course_academic_career -entity_type: node -type: list_string -settings: - allowed_values: - - - value: UG - label: 'Undergraduate' - - - value: GR - label: Graduate - allowed_values_function: '' -module: options -locked: false -cardinality: 1 -translatable: true -indexes: { } -persist_with_no_fields: false -custom_storage: false diff --git a/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_academic_year.yml b/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_academic_year.yml deleted file mode 100644 index 7f3f7a2914..0000000000 --- a/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_academic_year.yml +++ /dev/null @@ -1,22 +0,0 @@ -uuid: 436700b5-6993-4d60-b502-4affd61fd881 -langcode: en -status: true -dependencies: - module: - - datetime - - node -_core: - default_config_hash: 6Ptg4nj5IfdaS7hkiV3-VaUca-m7ioz0-Uqy07AWank -id: node.field_hs_course_academic_year -field_name: field_hs_course_academic_year -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/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_code.yml b/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_code.yml deleted file mode 100644 index 8578311e7d..0000000000 --- a/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_code.yml +++ /dev/null @@ -1,21 +0,0 @@ -uuid: b7f849e2-e713-44ad-bc17-56f201ba8d24 -langcode: en -status: true -dependencies: - module: - - node -id: node.field_hs_course_code -field_name: field_hs_course_code -entity_type: node -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/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_explore_tags.yml b/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_explore_tags.yml deleted file mode 100644 index 0812028282..0000000000 --- a/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_explore_tags.yml +++ /dev/null @@ -1,20 +0,0 @@ -uuid: ae1b20b0-d5af-4b1c-be82-2d667769a850 -langcode: en -status: true -dependencies: - module: - - node - - taxonomy -id: node.field_hs_course_explore_tags -field_name: field_hs_course_explore_tags -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/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_grading.yml b/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_grading.yml deleted file mode 100644 index 7a773f969b..0000000000 --- a/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_grading.yml +++ /dev/null @@ -1,23 +0,0 @@ -uuid: 739613c8-8b23-4c62-9fe0-e555d9b731c5 -langcode: en -status: true -dependencies: - module: - - node -_core: - default_config_hash: MaNx8al519EBJEFFvrI8_JuZILd7JxwtJC1miLYnccc -id: node.field_hs_course_grading -field_name: field_hs_course_grading -entity_type: node -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/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_id.yml b/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_id.yml deleted file mode 100644 index 0921071b46..0000000000 --- a/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_id.yml +++ /dev/null @@ -1,22 +0,0 @@ -uuid: c2fa5273-4011-43f6-9b8e-28119531170c -langcode: en -status: true -dependencies: - module: - - node -_core: - default_config_hash: 6NnF-MdEdwpBL5aTwgfv6DpljH1Cde-LkEIkic8_k6Y -id: node.field_hs_course_id -field_name: field_hs_course_id -entity_type: node -type: integer -settings: - unsigned: false - size: normal -module: core -locked: false -cardinality: 1 -translatable: true -indexes: { } -persist_with_no_fields: false -custom_storage: false diff --git a/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_link.yml b/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_link.yml deleted file mode 100644 index 990ed805f4..0000000000 --- a/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_link.yml +++ /dev/null @@ -1,21 +0,0 @@ -uuid: 03cfd407-3b36-4f55-95d3-67ba321f40df -langcode: en -status: true -dependencies: - module: - - link - - node -_core: - default_config_hash: vkZlCAFkkmkJNX2xyW4bDrCIhkw25Qf7FqZo4KPx04M -id: node.field_hs_course_link -field_name: field_hs_course_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/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_requirements.yml b/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_requirements.yml deleted file mode 100644 index 82c8f15d3b..0000000000 --- a/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_requirements.yml +++ /dev/null @@ -1,23 +0,0 @@ -uuid: a1956377-91fe-4b18-bfea-733d6011c781 -langcode: en -status: true -dependencies: - module: - - node -_core: - default_config_hash: PLuYI4SQyfBdUh_EuMiUCCN0d6BfjbW-MurfhOTf7uE -id: node.field_hs_course_requirements -field_name: field_hs_course_requirements -entity_type: node -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/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_comp.yml b/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_comp.yml deleted file mode 100644 index e770ed7b26..0000000000 --- a/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_comp.yml +++ /dev/null @@ -1,22 +0,0 @@ -uuid: b2c4022b-4198-456d-a8a6-029c2d4932aa -langcode: en -status: true -dependencies: - module: - - node - - taxonomy -_core: - default_config_hash: sqlL7HQD_o5B_9ygamg3fH8gNYl5_Vl_JC6j7X6mdLU -id: node.field_hs_course_section_comp -field_name: field_hs_course_section_comp -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/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_days.yml b/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_days.yml deleted file mode 100644 index 607e73115d..0000000000 --- a/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_days.yml +++ /dev/null @@ -1,21 +0,0 @@ -uuid: 4882c3b2-4027-4c41-87f1-bfa9eb3f08be -langcode: en -status: true -dependencies: - module: - - node -id: node.field_hs_course_section_days -field_name: field_hs_course_section_days -entity_type: node -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/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_end_date.yml b/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_end_date.yml deleted file mode 100644 index 4999b87b02..0000000000 --- a/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_end_date.yml +++ /dev/null @@ -1,20 +0,0 @@ -uuid: 34df1361-70c9-4efd-89a1-a302ef05caa5 -langcode: en -status: true -dependencies: - module: - - datetime - - node -id: node.field_hs_course_section_end_date -field_name: field_hs_course_section_end_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/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_end_time.yml b/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_end_time.yml deleted file mode 100644 index f1d61e536e..0000000000 --- a/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_end_time.yml +++ /dev/null @@ -1,21 +0,0 @@ -uuid: bf9eaf51-92fc-4634-a250-4c43867f05a0 -langcode: en -status: true -dependencies: - module: - - node -id: node.field_hs_course_section_end_time -field_name: field_hs_course_section_end_time -entity_type: node -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/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_id.yml b/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_id.yml deleted file mode 100644 index 177dc1f094..0000000000 --- a/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_id.yml +++ /dev/null @@ -1,22 +0,0 @@ -uuid: 79dc7662-e855-48da-ab8e-765a25011938 -langcode: en -status: true -dependencies: - module: - - node -_core: - default_config_hash: kuYlLwp3EHXCxbuc60g0PdO174MhxqPEWelxbOy9as0 -id: node.field_hs_course_section_id -field_name: field_hs_course_section_id -entity_type: node -type: integer -settings: - unsigned: false - size: normal -module: core -locked: false -cardinality: 1 -translatable: true -indexes: { } -persist_with_no_fields: false -custom_storage: false diff --git a/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_instruc.yml b/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_instruc.yml deleted file mode 100644 index a455aba53c..0000000000 --- a/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_instruc.yml +++ /dev/null @@ -1,20 +0,0 @@ -uuid: 41a11d6b-fd97-41ba-ab5d-59eaf82042ff -langcode: en -status: true -dependencies: - module: - - eck - - node -id: node.field_hs_course_section_instruc -field_name: field_hs_course_section_instruc -entity_type: node -type: entity_reference -settings: - target_type: course_collections -module: core -locked: false -cardinality: -1 -translatable: true -indexes: { } -persist_with_no_fields: false -custom_storage: false diff --git a/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_location.yml b/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_location.yml deleted file mode 100644 index 39cd4d2c87..0000000000 --- a/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_location.yml +++ /dev/null @@ -1,21 +0,0 @@ -uuid: 0f1518a8-8d84-49b4-a857-9c926ab7557e -langcode: en -status: true -dependencies: - module: - - node -id: node.field_hs_course_section_location -field_name: field_hs_course_section_location -entity_type: node -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/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_number.yml b/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_number.yml deleted file mode 100644 index 8edd885392..0000000000 --- a/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_number.yml +++ /dev/null @@ -1,22 +0,0 @@ -uuid: 50e5af6e-adaf-40b0-8c6a-b97cbd36270c -langcode: en -status: true -dependencies: - module: - - node -_core: - default_config_hash: 1aMCEJWjyPpzTKL3IYMFXfAEEs0PNfKec_-BGIFoBnk -id: node.field_hs_course_section_number -field_name: field_hs_course_section_number -entity_type: node -type: integer -settings: - unsigned: false - size: normal -module: core -locked: false -cardinality: 1 -translatable: true -indexes: { } -persist_with_no_fields: false -custom_storage: false diff --git a/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_quarter.yml b/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_quarter.yml deleted file mode 100644 index c7fb66a883..0000000000 --- a/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_quarter.yml +++ /dev/null @@ -1,35 +0,0 @@ -uuid: 2e1d445b-7dea-4fbf-a9e9-bdf25105b362 -langcode: en -status: true -dependencies: - module: - - node - - options -_core: - default_config_hash: 9Km-cBe4cDg7mVfgX4s57DxdjWHm9D349QnEW1je-h0 -id: node.field_hs_course_section_quarter -field_name: field_hs_course_section_quarter -entity_type: node -type: list_string -settings: - allowed_values: - - - value: Summer - label: Summer - - - value: Autumn - label: Autumn - - - value: Winter - label: Winter - - - value: Spring - label: Spring - allowed_values_function: '' -module: options -locked: false -cardinality: 1 -translatable: true -indexes: { } -persist_with_no_fields: false -custom_storage: false diff --git a/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_st_date.yml b/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_st_date.yml deleted file mode 100644 index 95fa87dc72..0000000000 --- a/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_st_date.yml +++ /dev/null @@ -1,20 +0,0 @@ -uuid: 932fa376-49b9-43e8-957f-bcbff8282535 -langcode: en -status: true -dependencies: - module: - - datetime - - node -id: node.field_hs_course_section_st_date -field_name: field_hs_course_section_st_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/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_st_time.yml b/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_st_time.yml deleted file mode 100644 index 6f0e74138b..0000000000 --- a/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_st_time.yml +++ /dev/null @@ -1,21 +0,0 @@ -uuid: 2af52b10-6e45-4e89-b333-20db87055abe -langcode: en -status: true -dependencies: - module: - - node -id: node.field_hs_course_section_st_time -field_name: field_hs_course_section_st_time -entity_type: node -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/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_syllabus.yml b/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_syllabus.yml deleted file mode 100644 index 69ba94df2d..0000000000 --- a/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_syllabus.yml +++ /dev/null @@ -1,20 +0,0 @@ -uuid: 5979c5f7-4a15-4531-9d47-b911b37b690f -langcode: en -status: true -dependencies: - module: - - media - - node -id: node.field_hs_course_section_syllabus -field_name: field_hs_course_section_syllabus -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/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_units.yml b/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_units.yml deleted file mode 100644 index 92e1919c02..0000000000 --- a/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_units.yml +++ /dev/null @@ -1,21 +0,0 @@ -uuid: f63785e4-da23-4645-97a1-5d22874128af -langcode: en -status: true -dependencies: - module: - - node -id: node.field_hs_course_section_units -field_name: field_hs_course_section_units -entity_type: node -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/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_subject.yml b/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_subject.yml deleted file mode 100644 index fc51bbd9e5..0000000000 --- a/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_subject.yml +++ /dev/null @@ -1,23 +0,0 @@ -uuid: fc2528b9-d878-4c64-a761-14150a70e5ac -langcode: en -status: true -dependencies: - module: - - node -_core: - default_config_hash: ArBjMQk0BM0iAcgQx7cFORnsqdauU5wdjYZbgF9gzIk -id: node.field_hs_course_subject -field_name: field_hs_course_subject -entity_type: node -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/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_tags.yml b/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_tags.yml deleted file mode 100644 index df743f7cc7..0000000000 --- a/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_tags.yml +++ /dev/null @@ -1,22 +0,0 @@ -uuid: 677425c2-fd79-42eb-b47b-22ab8a3e0fce -langcode: en -status: true -dependencies: - module: - - node - - taxonomy -_core: - default_config_hash: QFplfa7tMhaQlkn_ysukFGhcId_Abg0zXhOXngAqUgU -id: node.field_hs_course_tags -field_name: field_hs_course_tags -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/docroot/modules/humsci/hs_courses/config/install/node.type.hs_course.yml b/docroot/modules/humsci/hs_courses/config/install/node.type.hs_course.yml deleted file mode 100644 index 4293666201..0000000000 --- a/docroot/modules/humsci/hs_courses/config/install/node.type.hs_course.yml +++ /dev/null @@ -1,19 +0,0 @@ -uuid: d1dc4194-1ad6-4e32-a46a-286859312545 -langcode: en -status: true -dependencies: - module: - - menu_ui -third_party_settings: - menu_ui: - available_menus: { } - parent: '' -_core: - default_config_hash: T65l74n_n5mKjcyV7KEuDEozegldUb-zN6qyK7XsTMQ -name: Course -type: hs_course -description: 'A course includes information such as title, year, quarter, day(s) and time(s), etc.' -help: '' -new_revision: true -preview_mode: 0 -display_submitted: false diff --git a/docroot/modules/humsci/hs_courses/config/install/pathauto.pattern.hs_courses.yml b/docroot/modules/humsci/hs_courses/config/install/pathauto.pattern.hs_courses.yml deleted file mode 100644 index 35b267b3ac..0000000000 --- a/docroot/modules/humsci/hs_courses/config/install/pathauto.pattern.hs_courses.yml +++ /dev/null @@ -1,22 +0,0 @@ -uuid: 926cc84d-ae48-4ae7-81ab-7dad0eccbccc -langcode: en -status: true -dependencies: - module: - - node -id: hs_courses -label: Courses -type: 'canonical_entities:node' -pattern: '/courses/[node:title]/[node:field_hs_course_section_number]' -selection_criteria: - fcd0ccb7-a344-4563-9117-603f2a67e523: - id: node_type - bundles: - hs_course: hs_course - negate: false - context_mapping: - node: node - uuid: fcd0ccb7-a344-4563-9117-603f2a67e523 -selection_logic: and -weight: 0 -relationships: { } diff --git a/docroot/modules/humsci/hs_courses/config/install/rabbit_hole.behavior_settings.node_type_hs_course.yml b/docroot/modules/humsci/hs_courses/config/install/rabbit_hole.behavior_settings.node_type_hs_course.yml deleted file mode 100644 index 880d849f2f..0000000000 --- a/docroot/modules/humsci/hs_courses/config/install/rabbit_hole.behavior_settings.node_type_hs_course.yml +++ /dev/null @@ -1,9 +0,0 @@ -uuid: 80a6fb19-2785-497d-81df-a3968ad35509 -langcode: en -status: true -dependencies: { } -id: node_type_hs_course -action: page_redirect -allow_override: 0 -redirect: '[node:field_hs_course_link:uri]' -redirect_code: 301 diff --git a/docroot/modules/humsci/hs_courses/config/install/taxonomy.vocabulary.hs_course_component.yml b/docroot/modules/humsci/hs_courses/config/install/taxonomy.vocabulary.hs_course_component.yml deleted file mode 100644 index 550074bb21..0000000000 --- a/docroot/modules/humsci/hs_courses/config/install/taxonomy.vocabulary.hs_course_component.yml +++ /dev/null @@ -1,11 +0,0 @@ -uuid: b93b530a-f418-42e1-bce7-e76a2ff1a24f -langcode: en -status: true -dependencies: { } -_core: - default_config_hash: WDaz4dgCph-oh3miMn4f7-tRfYsqmpGV3uwTXuFBA4Q -name: 'Course Component' -vid: hs_course_component -description: '' -hierarchy: 0 -weight: 0 diff --git a/docroot/modules/humsci/hs_courses/config/install/taxonomy.vocabulary.hs_course_tags.yml b/docroot/modules/humsci/hs_courses/config/install/taxonomy.vocabulary.hs_course_tags.yml deleted file mode 100644 index 2cecd3d14b..0000000000 --- a/docroot/modules/humsci/hs_courses/config/install/taxonomy.vocabulary.hs_course_tags.yml +++ /dev/null @@ -1,11 +0,0 @@ -uuid: 1ea341be-6624-4686-8693-03fa15a9a126 -langcode: en -status: true -dependencies: { } -_core: - default_config_hash: TnnADLYTlUsejOQTmcKK4KbeDgTRo_GIg7xhRef8qvE -name: 'Course Tags' -vid: hs_course_tags -description: 'Tags from ExploreCourses' -hierarchy: 0 -weight: 0 diff --git a/docroot/modules/humsci/hs_courses/config/install/views.view.hs_courses.yml b/docroot/modules/humsci/hs_courses/config/install/views.view.hs_courses.yml deleted file mode 100644 index 8c630ceccf..0000000000 --- a/docroot/modules/humsci/hs_courses/config/install/views.view.hs_courses.yml +++ /dev/null @@ -1,2248 +0,0 @@ -uuid: 97c24b5e-9c57-4ad5-bef9-56d730e9d426 -langcode: en -status: true -dependencies: - config: - - field.storage.node.field_hs_course_academic_year - - field.storage.node.field_hs_course_code - - field.storage.node.field_hs_course_section_days - - field.storage.node.field_hs_course_section_end_time - - field.storage.node.field_hs_course_section_instruc - - field.storage.node.field_hs_course_section_quarter - - field.storage.node.field_hs_course_section_st_time - - field.storage.node.field_hs_course_subject - - node.type.hs_course - module: - - datetime - - eck - - hs_field_helpers - - node - - options - - ui_patterns_views - - user -id: hs_courses -label: Courses -module: views -description: '' -tag: '' -base_table: node_field_data -base_field: nid -core: 8.x -display: - default: - display_plugin: default - id: default - display_title: Master - position: 0 - display_options: - access: - type: perm - options: - perm: 'access content' - cache: - type: tag - options: { } - query: - type: views_query - options: - disable_sql_rewrite: false - distinct: false - replica: false - query_comment: '' - query_tags: { } - exposed_form: - type: basic - options: - submit_button: Apply - reset_button: false - reset_button_label: Reset - exposed_sorts_label: 'Sort by' - expose_sort_order: true - sort_asc_label: Asc - sort_desc_label: Desc - pager: - type: none - options: - offset: 0 - style: - type: default - options: - grouping: { } - row_class: '' - default_row_class: true - row: - type: ui_patterns - options: - inline: { } - separator: '' - hide_empty: false - default_field_elements: true - fields: - field_hs_course_subject: - id: field_hs_course_subject - table: node__field_hs_course_subject - field: field_hs_course_subject - relationship: none - group_type: group - admin_label: '' - label: '' - exclude: true - alter: - alter_text: false - text: '' - make_link: false - path: '' - absolute: false - external: false - replace_spaces: false - path_case: none - trim_whitespace: false - alt: '' - rel: '' - link_class: '' - prefix: '' - suffix: '' - target: '' - nl2br: false - max_length: 0 - word_boundary: true - ellipsis: true - more_link: false - more_link_text: '' - more_link_path: '' - strip_tags: false - trim: false - preserve_tags: '' - html: false - element_type: '' - element_class: '' - element_label_type: '' - element_label_class: '' - element_label_colon: false - element_wrapper_type: '' - element_wrapper_class: '' - element_default_classes: true - empty: '' - hide_empty: false - empty_zero: false - hide_alter_empty: true - click_sort_column: value - type: string - settings: - link_to_entity: false - group_column: value - group_columns: { } - group_rows: true - delta_limit: 0 - delta_offset: 0 - delta_reversed: false - delta_first_last: false - multi_type: separator - separator: ', ' - field_api_classes: false - plugin_id: field - field_hs_course_code: - id: field_hs_course_code - table: node__field_hs_course_code - field: field_hs_course_code - relationship: none - group_type: group - admin_label: '' - label: '' - exclude: false - alter: - alter_text: true - text: '{{ field_hs_course_subject }} {{ field_hs_course_code }}' - make_link: false - path: '' - absolute: false - external: false - replace_spaces: false - path_case: none - trim_whitespace: false - alt: '' - rel: '' - link_class: '' - prefix: '' - suffix: '' - target: '' - nl2br: false - max_length: 0 - word_boundary: true - ellipsis: true - more_link: false - more_link_text: '' - more_link_path: '' - strip_tags: false - trim: false - preserve_tags: '' - html: false - element_type: '' - element_class: '' - element_label_type: '' - element_label_class: '' - element_label_colon: false - element_wrapper_type: '' - element_wrapper_class: '' - element_default_classes: true - empty: '{{ field_hs_course_subject }}' - hide_empty: false - empty_zero: false - hide_alter_empty: true - click_sort_column: value - type: string - settings: - link_to_entity: false - group_column: value - group_columns: { } - group_rows: true - delta_limit: 0 - delta_offset: 0 - delta_reversed: false - delta_first_last: false - multi_type: separator - separator: ', ' - field_api_classes: false - plugin_id: field - title: - id: title - table: node_field_data - field: title - relationship: none - group_type: group - admin_label: '' - label: '' - exclude: false - alter: - alter_text: false - text: '' - make_link: false - path: '' - absolute: false - external: false - replace_spaces: false - path_case: none - trim_whitespace: false - alt: '' - rel: '' - link_class: '' - prefix: '' - suffix: '' - target: '' - nl2br: false - max_length: 0 - word_boundary: false - ellipsis: false - more_link: false - more_link_text: '' - more_link_path: '' - strip_tags: false - trim: false - preserve_tags: '' - html: false - element_type: '' - element_class: '' - element_label_type: '' - element_label_class: '' - element_label_colon: false - element_wrapper_type: '' - element_wrapper_class: '' - element_default_classes: true - empty: '' - hide_empty: false - empty_zero: false - hide_alter_empty: true - click_sort_column: value - type: string - settings: - link_to_entity: true - group_column: value - group_columns: { } - group_rows: true - delta_limit: 0 - delta_offset: 0 - delta_reversed: false - delta_first_last: false - multi_type: separator - separator: ', ' - field_api_classes: false - entity_type: node - entity_field: title - plugin_id: field - field_hs_course_section_instruc: - id: field_hs_course_section_instruc - table: node__field_hs_course_section_instruc - field: field_hs_course_section_instruc - relationship: none - group_type: group - admin_label: '' - label: '' - exclude: false - alter: - alter_text: false - text: '' - make_link: false - path: '' - absolute: false - external: false - replace_spaces: false - path_case: none - trim_whitespace: true - alt: '' - rel: '' - link_class: '' - prefix: '' - suffix: '' - target: '' - nl2br: false - max_length: 0 - word_boundary: true - ellipsis: true - more_link: false - more_link_text: '' - more_link_path: '' - strip_tags: true - trim: false - preserve_tags: '' - html: false - element_type: '' - element_class: no-wrap - element_label_type: '' - element_label_class: '' - element_label_colon: false - element_wrapper_type: '' - element_wrapper_class: '' - element_default_classes: true - empty: '' - hide_empty: false - empty_zero: false - hide_alter_empty: true - click_sort_column: target_id - type: entity_reference_entity_view - settings: - view_mode: default - group_column: target_id - group_columns: { } - group_rows: true - delta_limit: 0 - delta_offset: 0 - delta_reversed: false - delta_first_last: false - multi_type: separator - separator: '
' - field_api_classes: false - plugin_id: field - field_hs_course_academic_year: - id: field_hs_course_academic_year - table: node__field_hs_course_academic_year - field: field_hs_course_academic_year - relationship: none - group_type: group - admin_label: '' - label: '' - exclude: false - alter: - alter_text: false - text: '' - make_link: false - path: '' - absolute: false - external: false - replace_spaces: false - path_case: none - trim_whitespace: false - alt: '' - rel: '' - link_class: '' - prefix: '' - suffix: '' - target: '' - nl2br: false - max_length: 0 - word_boundary: true - ellipsis: true - more_link: false - more_link_text: '' - more_link_path: '' - strip_tags: false - trim: false - preserve_tags: '' - html: false - element_type: '' - element_class: no-wrap - element_label_type: '' - element_label_class: '' - element_label_colon: false - element_wrapper_type: '' - element_wrapper_class: '' - element_default_classes: true - empty: '' - hide_empty: false - empty_zero: false - hide_alter_empty: true - click_sort_column: value - type: datetime_academic_year - settings: - timezone_override: '' - group_column: value - group_columns: { } - group_rows: true - delta_limit: 0 - delta_offset: 0 - delta_reversed: false - delta_first_last: false - multi_type: separator - separator: ', ' - field_api_classes: false - plugin_id: field - field_hs_course_section_quarter: - id: field_hs_course_section_quarter - table: node__field_hs_course_section_quarter - field: field_hs_course_section_quarter - relationship: none - group_type: group - admin_label: '' - label: '' - exclude: false - alter: - alter_text: false - text: '' - make_link: false - path: '' - absolute: false - external: false - replace_spaces: false - path_case: none - trim_whitespace: false - alt: '' - rel: '' - link_class: '' - prefix: '' - suffix: '' - target: '' - nl2br: false - max_length: 0 - word_boundary: true - ellipsis: true - more_link: false - more_link_text: '' - more_link_path: '' - strip_tags: false - trim: false - preserve_tags: '' - html: false - element_type: '' - element_class: '' - element_label_type: '' - element_label_class: '' - element_label_colon: false - element_wrapper_type: '' - element_wrapper_class: '' - element_default_classes: true - empty: '' - hide_empty: false - empty_zero: false - hide_alter_empty: true - click_sort_column: value - type: list_default - settings: { } - group_column: value - group_columns: { } - group_rows: true - delta_limit: 0 - delta_offset: 0 - delta_reversed: false - delta_first_last: false - multi_type: separator - separator: ', ' - field_api_classes: false - plugin_id: field - field_hs_course_section_days: - id: field_hs_course_section_days - table: node__field_hs_course_section_days - field: field_hs_course_section_days - relationship: none - group_type: group - admin_label: '' - label: '' - exclude: false - alter: - alter_text: false - text: '' - make_link: false - path: '' - absolute: false - external: false - replace_spaces: false - path_case: none - trim_whitespace: false - alt: '' - rel: '' - link_class: '' - prefix: '' - suffix: '' - target: '' - nl2br: false - max_length: 0 - word_boundary: true - ellipsis: true - more_link: false - more_link_text: '' - more_link_path: '' - strip_tags: false - trim: false - preserve_tags: '' - html: false - element_type: '' - element_class: '' - element_label_type: '' - element_label_class: '' - element_label_colon: false - element_wrapper_type: '' - element_wrapper_class: '' - element_default_classes: true - empty: '' - hide_empty: false - empty_zero: false - hide_alter_empty: true - click_sort_column: value - type: string - settings: - link_to_entity: false - group_column: value - group_columns: { } - group_rows: true - delta_limit: 0 - delta_offset: 0 - delta_reversed: false - delta_first_last: false - multi_type: separator - separator: ', ' - field_api_classes: false - plugin_id: field - field_hs_course_section_st_time: - id: field_hs_course_section_st_time - table: node__field_hs_course_section_st_time - field: field_hs_course_section_st_time - relationship: none - group_type: group - admin_label: '' - label: '' - exclude: false - alter: - alter_text: false - text: '' - make_link: false - path: '' - absolute: false - external: false - replace_spaces: false - path_case: none - trim_whitespace: false - alt: '' - rel: '' - link_class: '' - prefix: '' - suffix: '' - target: '' - nl2br: false - max_length: 0 - word_boundary: true - ellipsis: true - more_link: false - more_link_text: '' - more_link_path: '' - strip_tags: false - trim: false - preserve_tags: '' - html: false - element_type: '' - element_class: no-wrap - element_label_type: '' - element_label_class: '' - element_label_colon: false - element_wrapper_type: '' - element_wrapper_class: '' - element_default_classes: true - empty: '' - hide_empty: false - empty_zero: false - hide_alter_empty: true - click_sort_column: value - type: string - settings: - link_to_entity: false - group_column: value - group_columns: { } - group_rows: true - delta_limit: 0 - delta_offset: 0 - delta_reversed: false - delta_first_last: false - multi_type: separator - separator: ', ' - field_api_classes: false - plugin_id: field - field_hs_course_section_end_time: - id: field_hs_course_section_end_time - table: node__field_hs_course_section_end_time - field: field_hs_course_section_end_time - relationship: none - group_type: group - admin_label: '' - label: '' - exclude: false - alter: - alter_text: false - text: '' - make_link: false - path: '' - absolute: false - external: false - replace_spaces: false - path_case: none - trim_whitespace: false - alt: '' - rel: '' - link_class: '' - prefix: '' - suffix: '' - target: '' - nl2br: false - max_length: 0 - word_boundary: true - ellipsis: true - more_link: false - more_link_text: '' - more_link_path: '' - strip_tags: false - trim: false - preserve_tags: '' - html: false - element_type: '' - element_class: no-wrap - element_label_type: '' - element_label_class: '' - element_label_colon: false - element_wrapper_type: '' - element_wrapper_class: '' - element_default_classes: true - empty: '' - hide_empty: false - empty_zero: false - hide_alter_empty: true - click_sort_column: value - type: string - settings: - link_to_entity: false - group_column: value - group_columns: { } - group_rows: true - delta_limit: 0 - delta_offset: 0 - delta_reversed: false - delta_first_last: false - multi_type: separator - separator: ', ' - field_api_classes: false - plugin_id: field - filters: - status: - value: '1' - table: node_field_data - field: status - plugin_id: boolean - entity_type: node - entity_field: status - id: status - expose: - operator: '' - group: 1 - type: - id: type - table: node_field_data - field: type - value: - hs_course: hs_course - entity_type: node - entity_field: type - plugin_id: bundle - group: 1 - title: - id: title - table: node_field_data - field: title - relationship: none - group_type: group - admin_label: '' - operator: word - value: '' - group: 1 - exposed: true - expose: - operator_id: title_op - label: 'Search by Title' - description: '' - use_operator: false - operator: title_op - identifier: title - required: false - remember: false - multiple: false - remember_roles: - authenticated: authenticated - anonymous: '0' - administrator: '0' - contributor: '0' - site_manager: '0' - seven_admin_theme_user: '0' - placeholder: '' - is_grouped: false - group_info: - label: '' - description: '' - identifier: '' - optional: true - widget: select - multiple: false - remember: false - default_group: All - default_group_multiple: { } - group_items: { } - entity_type: node - entity_field: title - plugin_id: string - field_hs_course_section_quarter_value: - id: field_hs_course_section_quarter_value - table: node__field_hs_course_section_quarter - field: field_hs_course_section_quarter_value - relationship: none - group_type: group - admin_label: '' - operator: or - value: { } - group: 1 - exposed: true - expose: - operator_id: field_hs_course_section_quarter_value_op - label: Quarter - description: '' - use_operator: false - operator: field_hs_course_section_quarter_value_op - identifier: quarter - required: false - remember: false - multiple: true - remember_roles: - authenticated: authenticated - anonymous: '0' - administrator: '0' - contributor: '0' - site_manager: '0' - seven_admin_theme_user: '0' - reduce: false - is_grouped: false - group_info: - label: '' - description: '' - identifier: '' - optional: true - widget: select - multiple: false - remember: false - default_group: All - default_group_multiple: { } - group_items: { } - reduce_duplicates: false - plugin_id: list_field - field_hs_course_requirements_value: - id: field_hs_course_requirements_value - table: node__field_hs_course_requirements - field: field_hs_course_requirements_value - relationship: none - group_type: group - admin_label: '' - operator: word - value: '' - group: 1 - exposed: true - expose: - operator_id: field_hs_course_requirements_value_op - label: 'Concentration or Requirements' - description: '' - use_operator: false - operator: field_hs_course_requirements_value_op - identifier: reqs - required: false - remember: false - multiple: false - remember_roles: - authenticated: authenticated - anonymous: '0' - administrator: '0' - contributor: '0' - site_manager: '0' - seven_admin_theme_user: '0' - placeholder: '' - is_grouped: false - group_info: - label: '' - description: '' - identifier: '' - optional: true - widget: select - multiple: false - remember: false - default_group: All - default_group_multiple: { } - group_items: { } - plugin_id: string - field_hs_course_academic_career_value: - id: field_hs_course_academic_career_value - table: node__field_hs_course_academic_career - field: field_hs_course_academic_career_value - relationship: none - group_type: group - admin_label: '' - operator: or - value: { } - group: 1 - exposed: true - expose: - operator_id: field_hs_course_academic_career_value_op - label: Undergrad/Grad - description: '' - use_operator: false - operator: field_hs_course_academic_career_value_op - identifier: academic_career - required: false - remember: false - multiple: true - remember_roles: - authenticated: authenticated - anonymous: '0' - administrator: '0' - contributor: '0' - site_manager: '0' - seven_admin_theme_user: '0' - reduce: false - is_grouped: false - group_info: - label: '' - description: '' - identifier: '' - optional: true - widget: select - multiple: false - remember: false - default_group: All - default_group_multiple: { } - group_items: { } - reduce_duplicates: false - plugin_id: list_field - title_1: - id: title_1 - table: course_collections_field_data - field: title - relationship: field_hs_course_section_instruc - group_type: group - admin_label: '' - operator: word - value: '' - group: 1 - exposed: true - expose: - operator_id: title_1_op - label: Instructor - description: '' - use_operator: false - operator: title_1_op - identifier: instructor - required: false - remember: false - multiple: false - remember_roles: - authenticated: authenticated - anonymous: '0' - administrator: '0' - contributor: '0' - site_manager: '0' - seven_admin_theme_user: '0' - placeholder: '' - is_grouped: false - group_info: - label: '' - description: '' - identifier: '' - optional: true - widget: select - multiple: false - remember: false - default_group: All - default_group_multiple: { } - group_items: { } - entity_type: course_collections - entity_field: title - plugin_id: string - delta_1: - id: delta_1 - table: node__field_hs_course_section_instruc - field: delta - relationship: none - group_type: group - admin_label: '' - operator: empty - value: - min: '' - max: '' - value: '' - group: 2 - exposed: false - expose: - operator_id: '' - label: '' - description: '' - use_operator: false - operator: '' - identifier: '' - required: false - remember: false - multiple: false - remember_roles: - authenticated: authenticated - placeholder: '' - min_placeholder: '' - max_placeholder: '' - is_grouped: false - group_info: - label: '' - description: '' - identifier: '' - optional: true - widget: select - multiple: false - remember: false - default_group: All - default_group_multiple: { } - group_items: { } - plugin_id: numeric - delta: - id: delta - table: node__field_hs_course_section_instruc - field: delta - relationship: none - group_type: group - admin_label: '' - operator: '=' - value: - min: '' - max: '' - value: '0' - group: 2 - exposed: false - expose: - operator_id: '' - label: '' - description: '' - use_operator: false - operator: '' - identifier: '' - required: false - remember: false - multiple: false - remember_roles: - authenticated: authenticated - placeholder: '' - min_placeholder: '' - max_placeholder: '' - is_grouped: false - group_info: - label: '' - description: '' - identifier: '' - optional: true - widget: select - multiple: false - remember: false - default_group: All - default_group_multiple: { } - group_items: { } - plugin_id: numeric - sorts: - field_hs_course_code_value: - id: field_hs_course_code_value - table: node__field_hs_course_code - field: field_hs_course_code_value - relationship: none - group_type: group - admin_label: '' - order: ASC - exposed: false - expose: - label: '' - plugin_id: standard - field_hs_course_subject_value: - id: field_hs_course_subject_value - table: node__field_hs_course_subject - field: field_hs_course_subject_value - relationship: none - group_type: group - admin_label: '' - order: ASC - exposed: false - expose: - label: '' - plugin_id: standard - field_hs_course_section_st_date_value: - id: field_hs_course_section_st_date_value - table: node__field_hs_course_section_st_date - field: field_hs_course_section_st_date_value - relationship: none - group_type: group - admin_label: '' - order: ASC - exposed: false - expose: - label: '' - granularity: second - plugin_id: datetime - field_hs_course_section_number_value: - id: field_hs_course_section_number_value - table: node__field_hs_course_section_number - field: field_hs_course_section_number_value - relationship: none - group_type: group - admin_label: '' - order: ASC - exposed: false - expose: - label: '' - plugin_id: standard - title: - id: title - table: node_field_data - field: title - relationship: none - group_type: group - admin_label: '' - order: ASC - exposed: false - expose: - label: '' - entity_type: node - entity_field: title - plugin_id: standard - title: List - header: - area: - id: area - table: views - field: area - relationship: none - group_type: group - admin_label: '' - empty: false - tokenize: false - content: - value: "
\r\n Title\r\n
\r\n
\r\n Instructor\r\n
\r\n
\r\n Quarter\r\n
\r\n
\r\n Day, Time, Location\r\n
" - format: basic_html - plugin_id: text - footer: { } - empty: - area: - id: area - table: views - field: area - relationship: none - group_type: group - admin_label: '' - empty: true - tokenize: false - content: - value: '

No courses offered in the current quarter.

' - format: basic_html - plugin_id: text - relationships: - field_hs_course_section_instruc: - id: field_hs_course_section_instruc - table: node__field_hs_course_section_instruc - field: field_hs_course_section_instruc - relationship: none - group_type: group - admin_label: 'field_hs_course_section_instruc: Course Collections' - required: false - plugin_id: standard - arguments: { } - display_extenders: { } - use_ajax: true - group_by: false - filter_groups: - operator: AND - groups: - 1: AND - 2: OR - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_content' - - 'languages:language_interface' - - url - - 'user.node_grants:view' - - user.permissions - tags: - - 'config:field.storage.node.field_hs_course_academic_year' - - 'config:field.storage.node.field_hs_course_code' - - 'config:field.storage.node.field_hs_course_section_days' - - 'config:field.storage.node.field_hs_course_section_end_time' - - 'config:field.storage.node.field_hs_course_section_instruc' - - 'config:field.storage.node.field_hs_course_section_quarter' - - 'config:field.storage.node.field_hs_course_section_st_time' - - 'config:field.storage.node.field_hs_course_subject' - - extensions - list: - display_plugin: block - id: list - display_title: 'All List' - position: 1 - display_options: - display_extenders: { } - style: - type: pattern - options: - pattern: table_pattern - pattern_mapping: - rows: - destination: items - weight: '0' - title: - destination: '' - weight: '0' - 'header:area': - destination: header - weight: '0' - defaults: - style: false - row: false - row: - type: ui_patterns - options: - default_field_elements: 1 - inline: - field_hs_course_subject: 0 - field_hs_course_code: 0 - title: 0 - field_hs_course_section_instruc: 0 - field_hs_course_academic_year: 0 - field_hs_course_section_quarter: 0 - field_hs_course_section_days: 0 - field_hs_course_section_st_time: 0 - field_hs_course_section_end_time: 0 - separator: '' - hide_empty: 0 - pattern: table_row - pattern_mapping: - 'views_row:field_hs_course_code': - destination: column_1 - weight: 0 - plugin: views_row - source: field_hs_course_code - 'views_row:field_hs_course_section_st_time': - destination: column_4 - weight: 1 - plugin: views_row - source: field_hs_course_section_st_time - 'views_row:title': - destination: column_1 - weight: 2 - plugin: views_row - source: title - 'views_row:field_hs_course_section_instruc': - destination: column_2 - weight: 3 - plugin: views_row - source: field_hs_course_section_instruc - 'views_row:field_hs_course_academic_year': - destination: column_3 - weight: 4 - plugin: views_row - source: field_hs_course_academic_year - 'views_row:field_hs_course_section_quarter': - destination: column_3 - weight: 5 - plugin: views_row - source: field_hs_course_section_quarter - 'views_row:field_hs_course_section_days': - destination: column_4 - weight: 6 - plugin: views_row - source: field_hs_course_section_days - 'views_row:field_hs_course_section_end_time': - destination: column_4 - weight: 7 - plugin: views_row - source: field_hs_course_section_end_time - exposed_block: true - block_category: 'Courses (Views)' - display_description: '' - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_content' - - 'languages:language_interface' - - url - - 'user.node_grants:view' - - user.permissions - tags: - - 'config:field.storage.node.field_hs_course_academic_year' - - 'config:field.storage.node.field_hs_course_code' - - 'config:field.storage.node.field_hs_course_section_days' - - 'config:field.storage.node.field_hs_course_section_end_time' - - 'config:field.storage.node.field_hs_course_section_instruc' - - 'config:field.storage.node.field_hs_course_section_quarter' - - 'config:field.storage.node.field_hs_course_section_st_time' - - 'config:field.storage.node.field_hs_course_subject' - - extensions - not_offered_list: - display_plugin: block - id: not_offered_list - display_title: 'Not Currently Offered' - position: 2 - display_options: - display_extenders: { } - display_description: '' - filters: - status: - value: '1' - table: node_field_data - field: status - plugin_id: boolean - entity_type: node - entity_field: status - id: status - expose: - operator: '' - group: 1 - type: - id: type - table: node_field_data - field: type - value: - hs_course: hs_course - entity_type: node - entity_field: type - plugin_id: bundle - group: 1 - field_hs_course_section_id_value: - id: field_hs_course_section_id_value - table: node__field_hs_course_section_id - field: field_hs_course_section_id_value - relationship: none - group_type: group - admin_label: '' - operator: empty - value: - min: '' - max: '' - value: '' - group: 1 - exposed: false - expose: - operator_id: '' - label: '' - description: '' - use_operator: false - operator: '' - identifier: '' - required: false - remember: false - multiple: false - remember_roles: - authenticated: authenticated - placeholder: '' - min_placeholder: '' - max_placeholder: '' - is_grouped: false - group_info: - label: '' - description: '' - identifier: '' - optional: true - widget: select - multiple: false - remember: false - default_group: All - default_group_multiple: { } - group_items: { } - plugin_id: numeric - title: - id: title - table: node_field_data - field: title - relationship: none - group_type: group - admin_label: '' - operator: word - value: '' - group: 1 - exposed: true - expose: - operator_id: title_op - label: 'Search by Title' - description: '' - use_operator: false - operator: title_op - identifier: title - required: false - remember: false - multiple: false - remember_roles: - authenticated: authenticated - anonymous: '0' - administrator: '0' - contributor: '0' - site_manager: '0' - seven_admin_theme_user: '0' - placeholder: '' - is_grouped: false - group_info: - label: '' - description: '' - identifier: '' - optional: true - widget: select - multiple: false - remember: false - default_group: All - default_group_multiple: { } - group_items: { } - entity_type: node - entity_field: title - plugin_id: string - field_hs_course_section_quarter_value: - id: field_hs_course_section_quarter_value - table: node__field_hs_course_section_quarter - field: field_hs_course_section_quarter_value - relationship: none - group_type: group - admin_label: '' - operator: or - value: { } - group: 1 - exposed: true - expose: - operator_id: field_hs_course_section_quarter_value_op - label: Quarter - description: '' - use_operator: false - operator: field_hs_course_section_quarter_value_op - identifier: quarter - required: false - remember: false - multiple: true - remember_roles: - authenticated: authenticated - anonymous: '0' - administrator: '0' - contributor: '0' - site_manager: '0' - seven_admin_theme_user: '0' - reduce: false - is_grouped: false - group_info: - label: '' - description: '' - identifier: '' - optional: true - widget: select - multiple: false - remember: false - default_group: All - default_group_multiple: { } - group_items: { } - reduce_duplicates: false - plugin_id: list_field - field_hs_course_requirements_value: - id: field_hs_course_requirements_value - table: node__field_hs_course_requirements - field: field_hs_course_requirements_value - relationship: none - group_type: group - admin_label: '' - operator: word - value: '' - group: 1 - exposed: true - expose: - operator_id: field_hs_course_requirements_value_op - label: 'Concentration or Requirements' - description: '' - use_operator: false - operator: field_hs_course_requirements_value_op - identifier: reqs - required: false - remember: false - multiple: false - remember_roles: - authenticated: authenticated - anonymous: '0' - administrator: '0' - contributor: '0' - site_manager: '0' - seven_admin_theme_user: '0' - placeholder: '' - is_grouped: false - group_info: - label: '' - description: '' - identifier: '' - optional: true - widget: select - multiple: false - remember: false - default_group: All - default_group_multiple: { } - group_items: { } - plugin_id: string - field_hs_course_academic_career_value: - id: field_hs_course_academic_career_value - table: node__field_hs_course_academic_career - field: field_hs_course_academic_career_value - relationship: none - group_type: group - admin_label: '' - operator: or - value: { } - group: 1 - exposed: true - expose: - operator_id: field_hs_course_academic_career_value_op - label: Undergrad/Grad - description: '' - use_operator: false - operator: field_hs_course_academic_career_value_op - identifier: academic_career - required: false - remember: false - multiple: true - remember_roles: - authenticated: authenticated - anonymous: '0' - administrator: '0' - contributor: '0' - site_manager: '0' - seven_admin_theme_user: '0' - reduce: false - is_grouped: false - group_info: - label: '' - description: '' - identifier: '' - optional: true - widget: select - multiple: false - remember: false - default_group: All - default_group_multiple: { } - group_items: { } - reduce_duplicates: false - plugin_id: list_field - title_1: - id: title_1 - table: course_collections_field_data - field: title - relationship: field_hs_course_section_instruc - group_type: group - admin_label: '' - operator: word - value: '' - group: 1 - exposed: true - expose: - operator_id: title_1_op - label: Instructor - description: '' - use_operator: false - operator: title_1_op - identifier: instructor - required: false - remember: false - multiple: false - remember_roles: - authenticated: authenticated - anonymous: '0' - administrator: '0' - contributor: '0' - site_manager: '0' - seven_admin_theme_user: '0' - placeholder: '' - is_grouped: false - group_info: - label: '' - description: '' - identifier: '' - optional: true - widget: select - multiple: false - remember: false - default_group: All - default_group_multiple: { } - group_items: { } - entity_type: course_collections - entity_field: title - plugin_id: string - delta_1: - id: delta_1 - table: node__field_hs_course_section_instruc - field: delta - relationship: none - group_type: group - admin_label: '' - operator: empty - value: - min: '' - max: '' - value: '' - group: 2 - exposed: false - expose: - operator_id: '' - label: '' - description: '' - use_operator: false - operator: '' - identifier: '' - required: false - remember: false - multiple: false - remember_roles: - authenticated: authenticated - placeholder: '' - min_placeholder: '' - max_placeholder: '' - is_grouped: false - group_info: - label: '' - description: '' - identifier: '' - optional: true - widget: select - multiple: false - remember: false - default_group: All - default_group_multiple: { } - group_items: { } - plugin_id: numeric - delta: - id: delta - table: node__field_hs_course_section_instruc - field: delta - relationship: none - group_type: group - admin_label: '' - operator: '=' - value: - min: '' - max: '' - value: '0' - group: 2 - exposed: false - expose: - operator_id: '' - label: '' - description: '' - use_operator: false - operator: '' - identifier: '' - required: false - remember: false - multiple: false - remember_roles: - authenticated: authenticated - placeholder: '' - min_placeholder: '' - max_placeholder: '' - is_grouped: false - group_info: - label: '' - description: '' - identifier: '' - optional: true - widget: select - multiple: false - remember: false - default_group: All - default_group_multiple: { } - group_items: { } - plugin_id: numeric - defaults: - filters: false - filter_groups: false - style: false - row: false - filter_groups: - operator: AND - groups: - 1: AND - 2: OR - style: - type: pattern - options: - pattern: table_pattern - pattern_mapping: - rows: - destination: items - weight: '0' - title: - destination: '' - weight: '0' - 'header:area': - destination: header - weight: '0' - row: - type: ui_patterns - options: - default_field_elements: 1 - inline: - field_hs_course_subject: 0 - field_hs_course_code: 0 - title: 0 - field_hs_course_section_instruc: 0 - field_hs_course_academic_year: 0 - field_hs_course_section_quarter: 0 - field_hs_course_section_days: 0 - field_hs_course_section_st_time: 0 - field_hs_course_section_end_time: 0 - separator: '' - hide_empty: 0 - pattern: table_row - pattern_mapping: - 'views_row:field_hs_course_subject': - destination: column_1 - weight: 0 - plugin: views_row - source: field_hs_course_subject - 'views_row:field_hs_course_code': - destination: column_1 - weight: 1 - plugin: views_row - source: field_hs_course_code - 'views_row:title': - destination: column_1 - weight: 2 - plugin: views_row - source: title - 'views_row:field_hs_course_section_instruc': - destination: column_2 - weight: 3 - plugin: views_row - source: field_hs_course_section_instruc - 'views_row:field_hs_course_academic_year': - destination: column_3 - weight: 4 - plugin: views_row - source: field_hs_course_academic_year - 'views_row:field_hs_course_section_quarter': - destination: column_3 - weight: 5 - plugin: views_row - source: field_hs_course_section_quarter - 'views_row:field_hs_course_section_days': - destination: column_4 - weight: 6 - plugin: views_row - source: field_hs_course_section_days - 'views_row:field_hs_course_section_st_time': - destination: column_4 - weight: 7 - plugin: views_row - source: field_hs_course_section_st_time - 'views_row:field_hs_course_section_end_time': - destination: column_4 - weight: 8 - plugin: views_row - source: field_hs_course_section_end_time - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_content' - - 'languages:language_interface' - - url - - 'user.node_grants:view' - - user.permissions - tags: - - 'config:field.storage.node.field_hs_course_academic_year' - - 'config:field.storage.node.field_hs_course_code' - - 'config:field.storage.node.field_hs_course_section_days' - - 'config:field.storage.node.field_hs_course_section_end_time' - - 'config:field.storage.node.field_hs_course_section_instruc' - - 'config:field.storage.node.field_hs_course_section_quarter' - - 'config:field.storage.node.field_hs_course_section_st_time' - - 'config:field.storage.node.field_hs_course_subject' - - extensions - offered_list: - display_plugin: block - id: offered_list - display_title: 'Currently Offered' - position: 2 - display_options: - display_extenders: { } - display_description: '' - style: - type: pattern - options: - pattern: table_pattern - pattern_mapping: - rows: - destination: items - weight: '0' - title: - destination: '' - weight: '0' - 'header:area': - destination: header - weight: '0' - 'header:result': - destination: '' - weight: '0' - defaults: - style: false - row: false - filters: false - filter_groups: false - row: - type: ui_patterns - options: - default_field_elements: 1 - inline: - field_hs_course_subject: 0 - field_hs_course_code: 0 - title: 0 - field_hs_course_section_instruc: 0 - field_hs_course_academic_year: 0 - field_hs_course_section_quarter: 0 - field_hs_course_section_days: 0 - field_hs_course_section_st_time: 0 - field_hs_course_section_end_time: 0 - separator: '' - hide_empty: 0 - pattern: table_row - pattern_mapping: - 'views_row:field_hs_course_subject': - destination: column_1 - weight: 0 - plugin: views_row - source: field_hs_course_subject - 'views_row:field_hs_course_code': - destination: column_1 - weight: 1 - plugin: views_row - source: field_hs_course_code - 'views_row:title': - destination: column_1 - weight: 2 - plugin: views_row - source: title - 'views_row:field_hs_course_section_instruc': - destination: column_2 - weight: 3 - plugin: views_row - source: field_hs_course_section_instruc - 'views_row:field_hs_course_academic_year': - destination: column_3 - weight: 4 - plugin: views_row - source: field_hs_course_academic_year - 'views_row:field_hs_course_section_quarter': - destination: column_3 - weight: 5 - plugin: views_row - source: field_hs_course_section_quarter - 'views_row:field_hs_course_section_days': - destination: column_4 - weight: 6 - plugin: views_row - source: field_hs_course_section_days - 'views_row:field_hs_course_section_st_time': - destination: column_4 - weight: 7 - plugin: views_row - source: field_hs_course_section_st_time - 'views_row:field_hs_course_section_end_time': - destination: column_4 - weight: 8 - plugin: views_row - source: field_hs_course_section_end_time - filters: - status: - value: '1' - table: node_field_data - field: status - plugin_id: boolean - entity_type: node - entity_field: status - id: status - expose: - operator: '' - group: 1 - type: - id: type - table: node_field_data - field: type - value: - hs_course: hs_course - entity_type: node - entity_field: type - plugin_id: bundle - group: 1 - field_hs_course_section_id_value: - id: field_hs_course_section_id_value - table: node__field_hs_course_section_id - field: field_hs_course_section_id_value - relationship: none - group_type: group - admin_label: '' - operator: '>=' - value: - min: '' - max: '' - value: '1' - group: 1 - exposed: false - expose: - operator_id: '' - label: '' - description: '' - use_operator: false - operator: '' - identifier: '' - required: false - remember: false - multiple: false - remember_roles: - authenticated: authenticated - placeholder: '' - min_placeholder: '' - max_placeholder: '' - is_grouped: false - group_info: - label: '' - description: '' - identifier: '' - optional: true - widget: select - multiple: false - remember: false - default_group: All - default_group_multiple: { } - group_items: { } - plugin_id: numeric - title: - id: title - table: node_field_data - field: title - relationship: none - group_type: group - admin_label: '' - operator: word - value: '' - group: 1 - exposed: true - expose: - operator_id: title_op - label: 'Search by Title' - description: '' - use_operator: false - operator: title_op - identifier: title - required: false - remember: false - multiple: false - remember_roles: - authenticated: authenticated - anonymous: '0' - administrator: '0' - contributor: '0' - site_manager: '0' - seven_admin_theme_user: '0' - placeholder: '' - is_grouped: false - group_info: - label: '' - description: '' - identifier: '' - optional: true - widget: select - multiple: false - remember: false - default_group: All - default_group_multiple: { } - group_items: { } - entity_type: node - entity_field: title - plugin_id: string - field_hs_course_section_quarter_value: - id: field_hs_course_section_quarter_value - table: node__field_hs_course_section_quarter - field: field_hs_course_section_quarter_value - relationship: none - group_type: group - admin_label: '' - operator: or - value: { } - group: 1 - exposed: true - expose: - operator_id: field_hs_course_section_quarter_value_op - label: Quarter - description: '' - use_operator: false - operator: field_hs_course_section_quarter_value_op - identifier: quarter - required: false - remember: false - multiple: true - remember_roles: - authenticated: authenticated - anonymous: '0' - administrator: '0' - contributor: '0' - site_manager: '0' - seven_admin_theme_user: '0' - reduce: false - is_grouped: false - group_info: - label: '' - description: '' - identifier: '' - optional: true - widget: select - multiple: false - remember: false - default_group: All - default_group_multiple: { } - group_items: { } - reduce_duplicates: false - plugin_id: list_field - field_hs_course_requirements_value: - id: field_hs_course_requirements_value - table: node__field_hs_course_requirements - field: field_hs_course_requirements_value - relationship: none - group_type: group - admin_label: '' - operator: word - value: '' - group: 1 - exposed: true - expose: - operator_id: field_hs_course_requirements_value_op - label: 'Concentration or Requirements' - description: '' - use_operator: false - operator: field_hs_course_requirements_value_op - identifier: reqs - required: false - remember: false - multiple: false - remember_roles: - authenticated: authenticated - anonymous: '0' - administrator: '0' - contributor: '0' - site_manager: '0' - seven_admin_theme_user: '0' - placeholder: '' - is_grouped: false - group_info: - label: '' - description: '' - identifier: '' - optional: true - widget: select - multiple: false - remember: false - default_group: All - default_group_multiple: { } - group_items: { } - plugin_id: string - field_hs_course_academic_career_value: - id: field_hs_course_academic_career_value - table: node__field_hs_course_academic_career - field: field_hs_course_academic_career_value - relationship: none - group_type: group - admin_label: '' - operator: or - value: { } - group: 1 - exposed: true - expose: - operator_id: field_hs_course_academic_career_value_op - label: Undergrad/Grad - description: '' - use_operator: false - operator: field_hs_course_academic_career_value_op - identifier: academic_career - required: false - remember: false - multiple: true - remember_roles: - authenticated: authenticated - anonymous: '0' - administrator: '0' - contributor: '0' - site_manager: '0' - seven_admin_theme_user: '0' - reduce: false - is_grouped: false - group_info: - label: '' - description: '' - identifier: '' - optional: true - widget: select - multiple: false - remember: false - default_group: All - default_group_multiple: { } - group_items: { } - reduce_duplicates: false - plugin_id: list_field - title_1: - id: title_1 - table: course_collections_field_data - field: title - relationship: field_hs_course_section_instruc - group_type: group - admin_label: '' - operator: word - value: '' - group: 1 - exposed: true - expose: - operator_id: title_1_op - label: Instructor - description: '' - use_operator: false - operator: title_1_op - identifier: instructor - required: false - remember: false - multiple: false - remember_roles: - authenticated: authenticated - anonymous: '0' - administrator: '0' - contributor: '0' - site_manager: '0' - seven_admin_theme_user: '0' - placeholder: '' - is_grouped: false - group_info: - label: '' - description: '' - identifier: '' - optional: true - widget: select - multiple: false - remember: false - default_group: All - default_group_multiple: { } - group_items: { } - entity_type: course_collections - entity_field: title - plugin_id: string - delta_1: - id: delta_1 - table: node__field_hs_course_section_instruc - field: delta - relationship: none - group_type: group - admin_label: '' - operator: empty - value: - min: '' - max: '' - value: '' - group: 2 - exposed: false - expose: - operator_id: '' - label: '' - description: '' - use_operator: false - operator: '' - identifier: '' - required: false - remember: false - multiple: false - remember_roles: - authenticated: authenticated - placeholder: '' - min_placeholder: '' - max_placeholder: '' - is_grouped: false - group_info: - label: '' - description: '' - identifier: '' - optional: true - widget: select - multiple: false - remember: false - default_group: All - default_group_multiple: { } - group_items: { } - plugin_id: numeric - delta: - id: delta - table: node__field_hs_course_section_instruc - field: delta - relationship: none - group_type: group - admin_label: '' - operator: '=' - value: - min: '' - max: '' - value: '0' - group: 2 - exposed: false - expose: - operator_id: '' - label: '' - description: '' - use_operator: false - operator: '' - identifier: '' - required: false - remember: false - multiple: false - remember_roles: - authenticated: authenticated - placeholder: '' - min_placeholder: '' - max_placeholder: '' - is_grouped: false - group_info: - label: '' - description: '' - identifier: '' - optional: true - widget: select - multiple: false - remember: false - default_group: All - default_group_multiple: { } - group_items: { } - plugin_id: numeric - field_hs_course_section_end_date_value: - id: field_hs_course_section_end_date_value - table: node__field_hs_course_section_end_date - field: field_hs_course_section_end_date_value - relationship: none - group_type: group - admin_label: '' - operator: '>=' - value: - min: '' - max: '' - value: now - type: offset - group: 1 - exposed: false - expose: - operator_id: '' - label: '' - description: '' - use_operator: false - operator: '' - identifier: '' - required: false - remember: false - multiple: false - remember_roles: - authenticated: authenticated - placeholder: '' - min_placeholder: '' - max_placeholder: '' - is_grouped: false - group_info: - label: '' - description: '' - identifier: '' - optional: true - widget: select - multiple: false - remember: false - default_group: All - default_group_multiple: { } - group_items: { } - plugin_id: datetime - field_hs_course_section_st_date_value: - id: field_hs_course_section_st_date_value - table: node__field_hs_course_section_st_date - field: field_hs_course_section_st_date_value - relationship: none - group_type: group - admin_label: '' - operator: '<=' - value: - min: '' - max: '' - value: 'now +45days' - type: offset - group: 1 - exposed: false - expose: - operator_id: '' - label: '' - description: '' - use_operator: false - operator: '' - identifier: '' - required: false - remember: false - multiple: false - remember_roles: - authenticated: authenticated - placeholder: '' - min_placeholder: '' - max_placeholder: '' - is_grouped: false - group_info: - label: '' - description: '' - identifier: '' - optional: true - widget: select - multiple: false - remember: false - default_group: All - default_group_multiple: { } - group_items: { } - plugin_id: datetime - filter_groups: - operator: AND - groups: - 1: AND - 2: OR - exposed_block: true - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_content' - - 'languages:language_interface' - - url - - 'user.node_grants:view' - - user.permissions - tags: - - 'config:field.storage.node.field_hs_course_academic_year' - - 'config:field.storage.node.field_hs_course_code' - - 'config:field.storage.node.field_hs_course_section_days' - - 'config:field.storage.node.field_hs_course_section_end_time' - - 'config:field.storage.node.field_hs_course_section_instruc' - - 'config:field.storage.node.field_hs_course_section_quarter' - - 'config:field.storage.node.field_hs_course_section_st_time' - - 'config:field.storage.node.field_hs_course_subject' - - extensions diff --git a/docroot/modules/humsci/hs_courses/hs_courses.info.yml b/docroot/modules/humsci/hs_courses/hs_courses.info.yml index fde3da7377..8f6e96680d 100644 --- a/docroot/modules/humsci/hs_courses/hs_courses.info.yml +++ b/docroot/modules/humsci/hs_courses/hs_courses.info.yml @@ -6,7 +6,6 @@ version: 8.2.7 package: 'Humanities & Sciences' dependencies: - datetime - - eck - field_formatter_class - field_group - hs_field_helpers From 4b7e88e017cbed6754b88394a5c908e5f329c0d9 Mon Sep 17 00:00:00 2001 From: joegl <20383-joegl@users.noreply.drupalcode.org> Date: Tue, 4 Jun 2024 15:46:08 -0500 Subject: [PATCH 05/15] Dropped hs_publications install configs and eck dependency. --- .../humsci/hs_events/hs_events.info.yml | 1 - .../hs_field_helpers/hs_field_helpers.module | 1 - .../hs_publications/config/install/.htaccess | 24 - ..._override.node.hs_publications.promote.yml | 23 - ...k_entity_type.publications_collections.yml | 11 - ...cations_collections.publication_author.yml | 10 - .../field.field.node.hs_publications.body.yml | 23 - ...blications.field_hs_publication_author.yml | 29 - ...cations.field_hs_publication_documents.yml | 29 - ...ublications.field_hs_publication_image.yml | 29 - ...publications.field_hs_publication_link.yml | 24 - ...cations.field_hs_publication_publisher.yml | 20 - ...publications.field_hs_publication_type.yml | 30 - ...publications.field_hs_publication_year.yml | 25 - ...orage.node.field_hs_publication_author.yml | 21 - ...ge.node.field_hs_publication_documents.yml | 21 - ...torage.node.field_hs_publication_image.yml | 21 - ...storage.node.field_hs_publication_link.yml | 20 - ...ge.node.field_hs_publication_publisher.yml | 22 - ...storage.node.field_hs_publication_type.yml | 21 - ...storage.node.field_hs_publication_year.yml | 21 - .../install/node.type.hs_publications.yml | 18 - ...pathauto.pattern.hs_publications_nodes.yml | 23 - ...axonomy.vocabulary.hs_publication_type.yml | 10 - .../install/views.view.hs_publications.yml | 1323 ----------------- ...ion_author.field_hs_publication_author.yml | 28 - ...ollections.field_hs_publication_author.yml | 19 - .../hs_publications/hs_publications.info.yml | 1 - ...m_display.node.hs_publications.default.yml | 170 --- ...w_display.node.hs_publications.default.yml | 208 --- ....node.hs_publications.hs_vertical_card.yml | 101 -- ...collections.publication_author.default.yml | 33 - ...collections.publication_author.default.yml | 35 - 33 files changed, 2395 deletions(-) delete mode 100644 docroot/modules/humsci/hs_publications/config/install/.htaccess delete mode 100644 docroot/modules/humsci/hs_publications/config/install/core.base_field_override.node.hs_publications.promote.yml delete mode 100644 docroot/modules/humsci/hs_publications/config/install/eck.eck_entity_type.publications_collections.yml delete mode 100644 docroot/modules/humsci/hs_publications/config/install/eck.eck_type.publications_collections.publication_author.yml delete mode 100644 docroot/modules/humsci/hs_publications/config/install/field.field.node.hs_publications.body.yml delete mode 100644 docroot/modules/humsci/hs_publications/config/install/field.field.node.hs_publications.field_hs_publication_author.yml delete mode 100644 docroot/modules/humsci/hs_publications/config/install/field.field.node.hs_publications.field_hs_publication_documents.yml delete mode 100644 docroot/modules/humsci/hs_publications/config/install/field.field.node.hs_publications.field_hs_publication_image.yml delete mode 100644 docroot/modules/humsci/hs_publications/config/install/field.field.node.hs_publications.field_hs_publication_link.yml delete mode 100644 docroot/modules/humsci/hs_publications/config/install/field.field.node.hs_publications.field_hs_publication_publisher.yml delete mode 100644 docroot/modules/humsci/hs_publications/config/install/field.field.node.hs_publications.field_hs_publication_type.yml delete mode 100644 docroot/modules/humsci/hs_publications/config/install/field.field.node.hs_publications.field_hs_publication_year.yml delete mode 100644 docroot/modules/humsci/hs_publications/config/install/field.storage.node.field_hs_publication_author.yml delete mode 100644 docroot/modules/humsci/hs_publications/config/install/field.storage.node.field_hs_publication_documents.yml delete mode 100644 docroot/modules/humsci/hs_publications/config/install/field.storage.node.field_hs_publication_image.yml delete mode 100644 docroot/modules/humsci/hs_publications/config/install/field.storage.node.field_hs_publication_link.yml delete mode 100644 docroot/modules/humsci/hs_publications/config/install/field.storage.node.field_hs_publication_publisher.yml delete mode 100644 docroot/modules/humsci/hs_publications/config/install/field.storage.node.field_hs_publication_type.yml delete mode 100644 docroot/modules/humsci/hs_publications/config/install/field.storage.node.field_hs_publication_year.yml delete mode 100644 docroot/modules/humsci/hs_publications/config/install/node.type.hs_publications.yml delete mode 100644 docroot/modules/humsci/hs_publications/config/install/pathauto.pattern.hs_publications_nodes.yml delete mode 100644 docroot/modules/humsci/hs_publications/config/install/taxonomy.vocabulary.hs_publication_type.yml delete mode 100644 docroot/modules/humsci/hs_publications/config/install/views.view.hs_publications.yml delete mode 100644 docroot/modules/humsci/hs_publications/config/optional/field.field.publications_collections.publication_author.field_hs_publication_author.yml delete mode 100644 docroot/modules/humsci/hs_publications/config/optional/field.storage.publications_collections.field_hs_publication_author.yml delete mode 100644 docroot/modules/humsci/hs_publications/modules/hs_publications_display/config/install/core.entity_form_display.node.hs_publications.default.yml delete mode 100644 docroot/modules/humsci/hs_publications/modules/hs_publications_display/config/install/core.entity_view_display.node.hs_publications.default.yml delete mode 100644 docroot/modules/humsci/hs_publications/modules/hs_publications_display/config/install/core.entity_view_display.node.hs_publications.hs_vertical_card.yml delete mode 100644 docroot/modules/humsci/hs_publications/modules/hs_publications_display/config/optional/core.entity_form_display.publications_collections.publication_author.default.yml delete mode 100644 docroot/modules/humsci/hs_publications/modules/hs_publications_display/config/optional/core.entity_view_display.publications_collections.publication_author.default.yml diff --git a/docroot/modules/humsci/hs_events/hs_events.info.yml b/docroot/modules/humsci/hs_events/hs_events.info.yml index 981c6ce58a..42404677d6 100755 --- a/docroot/modules/humsci/hs_events/hs_events.info.yml +++ b/docroot/modules/humsci/hs_events/hs_events.info.yml @@ -9,7 +9,6 @@ dependencies: - ctools - datetime - datetime_range - - eck - field_group - hs_field_helpers - inline_entity_form diff --git a/docroot/modules/humsci/hs_field_helpers/hs_field_helpers.module b/docroot/modules/humsci/hs_field_helpers/hs_field_helpers.module index a89e261f79..c229079c9f 100644 --- a/docroot/modules/humsci/hs_field_helpers/hs_field_helpers.module +++ b/docroot/modules/humsci/hs_field_helpers/hs_field_helpers.module @@ -16,7 +16,6 @@ use Drupal\Core\Form\FormStateInterface; use Drupal\Core\Layout\LayoutDefinition; use Drupal\Core\Render\Element; use Drupal\Core\Routing\RouteMatchInterface; -use Drupal\eck\Entity\EckEntity; use Drupal\field\Entity\FieldConfig; use Drupal\field\FieldStorageConfigInterface; use Drupal\field_permissions\Plugin\FieldPermissionTypeInterface; diff --git a/docroot/modules/humsci/hs_publications/config/install/.htaccess b/docroot/modules/humsci/hs_publications/config/install/.htaccess deleted file mode 100644 index 0e4a69afd2..0000000000 --- a/docroot/modules/humsci/hs_publications/config/install/.htaccess +++ /dev/null @@ -1,24 +0,0 @@ -# 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 - \ No newline at end of file diff --git a/docroot/modules/humsci/hs_publications/config/install/core.base_field_override.node.hs_publications.promote.yml b/docroot/modules/humsci/hs_publications/config/install/core.base_field_override.node.hs_publications.promote.yml deleted file mode 100644 index 4339855e6a..0000000000 --- a/docroot/modules/humsci/hs_publications/config/install/core.base_field_override.node.hs_publications.promote.yml +++ /dev/null @@ -1,23 +0,0 @@ -langcode: en -status: true -dependencies: - config: - - node.type.hs_publications -_core: - default_config_hash: 5ZDzbZbvjBo5FxZ3aR8AINCBGe1KepUNuQrig0BiN-E -id: node.hs_publications.promote -field_name: promote -entity_type: node -bundle: hs_publications -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/docroot/modules/humsci/hs_publications/config/install/eck.eck_entity_type.publications_collections.yml b/docroot/modules/humsci/hs_publications/config/install/eck.eck_entity_type.publications_collections.yml deleted file mode 100644 index 5f7b80192e..0000000000 --- a/docroot/modules/humsci/hs_publications/config/install/eck.eck_entity_type.publications_collections.yml +++ /dev/null @@ -1,11 +0,0 @@ -langcode: en -status: true -dependencies: { } -_core: - default_config_hash: y300-6TYpKouDO1W5WE4E7Y-5zAvDdjdID4xmWIu6KM -id: publications_collections -label: 'Publications Collections' -created: false -changed: false -uid: false -title: true diff --git a/docroot/modules/humsci/hs_publications/config/install/eck.eck_type.publications_collections.publication_author.yml b/docroot/modules/humsci/hs_publications/config/install/eck.eck_type.publications_collections.publication_author.yml deleted file mode 100644 index 5505209f52..0000000000 --- a/docroot/modules/humsci/hs_publications/config/install/eck.eck_type.publications_collections.publication_author.yml +++ /dev/null @@ -1,10 +0,0 @@ -langcode: en -status: true -dependencies: - config: - - eck.eck_entity_type.publications_collections -_core: - default_config_hash: bAhjSMbo3b9kLI5vZkf_mMIPDovZqFWbIR-2421TyQ0 -name: 'Publication Author' -type: publication_author -description: '' diff --git a/docroot/modules/humsci/hs_publications/config/install/field.field.node.hs_publications.body.yml b/docroot/modules/humsci/hs_publications/config/install/field.field.node.hs_publications.body.yml deleted file mode 100644 index f9769fe565..0000000000 --- a/docroot/modules/humsci/hs_publications/config/install/field.field.node.hs_publications.body.yml +++ /dev/null @@ -1,23 +0,0 @@ -langcode: en -status: true -dependencies: - config: - - field.storage.node.body - - node.type.hs_publications - module: - - text -_core: - default_config_hash: sdonG0iwCFPjlhT0KM26FBfOmQcjma9tgJ2ZkZZYOog -id: node.hs_publications.body -field_name: body -entity_type: node -bundle: hs_publications -label: Body -description: '' -required: false -translatable: true -default_value: { } -default_value_callback: '' -settings: - display_summary: true -field_type: text_with_summary diff --git a/docroot/modules/humsci/hs_publications/config/install/field.field.node.hs_publications.field_hs_publication_author.yml b/docroot/modules/humsci/hs_publications/config/install/field.field.node.hs_publications.field_hs_publication_author.yml deleted file mode 100644 index ff9ec7f956..0000000000 --- a/docroot/modules/humsci/hs_publications/config/install/field.field.node.hs_publications.field_hs_publication_author.yml +++ /dev/null @@ -1,29 +0,0 @@ -langcode: en -status: true -dependencies: - config: - - eck.eck_type.publications_collections.publication_author - - field.storage.node.field_hs_publication_author - - node.type.hs_publications -_core: - default_config_hash: V1lfXLPGn1Vnv-rV8S1sUAPdFVind2VZKIH5vDLxlqM -id: node.hs_publications.field_hs_publication_author -field_name: field_hs_publication_author -entity_type: node -bundle: hs_publications -label: Author -description: '' -required: false -translatable: false -default_value: { } -default_value_callback: '' -settings: - handler: 'default:publications_collections' - handler_settings: - target_bundles: - publication_author: publication_author - sort: - field: _none - auto_create: true - auto_create_bundle: '' -field_type: entity_reference diff --git a/docroot/modules/humsci/hs_publications/config/install/field.field.node.hs_publications.field_hs_publication_documents.yml b/docroot/modules/humsci/hs_publications/config/install/field.field.node.hs_publications.field_hs_publication_documents.yml deleted file mode 100644 index bc6ca9c133..0000000000 --- a/docroot/modules/humsci/hs_publications/config/install/field.field.node.hs_publications.field_hs_publication_documents.yml +++ /dev/null @@ -1,29 +0,0 @@ -langcode: en -status: true -dependencies: - config: - - field.storage.node.field_hs_publication_documents - - media.type.file - - node.type.hs_publications -_core: - default_config_hash: pXfSXGDRn1wmxqGtLB0j5Q6vGB-0TMIOmDyD_jrn9-M -id: node.hs_publications.field_hs_publication_documents -field_name: field_hs_publication_documents -entity_type: node -bundle: hs_publications -label: 'Publication Documents' -description: '' -required: false -translatable: false -default_value: { } -default_value_callback: '' -settings: - handler: 'default:media' - handler_settings: - target_bundles: - file: file - sort: - field: _none - auto_create: false - auto_create_bundle: '' -field_type: entity_reference diff --git a/docroot/modules/humsci/hs_publications/config/install/field.field.node.hs_publications.field_hs_publication_image.yml b/docroot/modules/humsci/hs_publications/config/install/field.field.node.hs_publications.field_hs_publication_image.yml deleted file mode 100644 index a18f264ebc..0000000000 --- a/docroot/modules/humsci/hs_publications/config/install/field.field.node.hs_publications.field_hs_publication_image.yml +++ /dev/null @@ -1,29 +0,0 @@ -langcode: en -status: true -dependencies: - config: - - field.storage.node.field_hs_publication_image - - media.type.image - - node.type.hs_publications -_core: - default_config_hash: 9cNlBcoLL4sl-jh-hYVm3XU1cYPaVczgsq7Cnul3cH0 -id: node.hs_publications.field_hs_publication_image -field_name: field_hs_publication_image -entity_type: node -bundle: hs_publications -label: 'Publication Image' -description: '' -required: false -translatable: false -default_value: { } -default_value_callback: '' -settings: - handler: 'default:media' - handler_settings: - target_bundles: - image: image - sort: - field: _none - auto_create: false - auto_create_bundle: '' -field_type: entity_reference diff --git a/docroot/modules/humsci/hs_publications/config/install/field.field.node.hs_publications.field_hs_publication_link.yml b/docroot/modules/humsci/hs_publications/config/install/field.field.node.hs_publications.field_hs_publication_link.yml deleted file mode 100644 index d70441703b..0000000000 --- a/docroot/modules/humsci/hs_publications/config/install/field.field.node.hs_publications.field_hs_publication_link.yml +++ /dev/null @@ -1,24 +0,0 @@ -langcode: en -status: true -dependencies: - config: - - field.storage.node.field_hs_publication_link - - node.type.hs_publications - module: - - link -_core: - default_config_hash: 0dimy4TYSXGpSRVo7sx0dFz0k9_CGdVj89EcfUdqxBY -id: node.hs_publications.field_hs_publication_link -field_name: field_hs_publication_link -entity_type: node -bundle: hs_publications -label: 'Publication Link' -description: '' -required: false -translatable: false -default_value: { } -default_value_callback: '' -settings: - link_type: 17 - title: 2 -field_type: link diff --git a/docroot/modules/humsci/hs_publications/config/install/field.field.node.hs_publications.field_hs_publication_publisher.yml b/docroot/modules/humsci/hs_publications/config/install/field.field.node.hs_publications.field_hs_publication_publisher.yml deleted file mode 100644 index 6427778556..0000000000 --- a/docroot/modules/humsci/hs_publications/config/install/field.field.node.hs_publications.field_hs_publication_publisher.yml +++ /dev/null @@ -1,20 +0,0 @@ -langcode: en -status: true -dependencies: - config: - - field.storage.node.field_hs_publication_publisher - - node.type.hs_publications -_core: - default_config_hash: NJZW4pU9xrX__eVrjHVqAKkFzgrMp3nDcEJoLwxLpAs -id: node.hs_publications.field_hs_publication_publisher -field_name: field_hs_publication_publisher -entity_type: node -bundle: hs_publications -label: Publisher -description: 'Enter the name of the publisher.' -required: false -translatable: false -default_value: { } -default_value_callback: '' -settings: { } -field_type: string diff --git a/docroot/modules/humsci/hs_publications/config/install/field.field.node.hs_publications.field_hs_publication_type.yml b/docroot/modules/humsci/hs_publications/config/install/field.field.node.hs_publications.field_hs_publication_type.yml deleted file mode 100644 index 6a9bfd68ab..0000000000 --- a/docroot/modules/humsci/hs_publications/config/install/field.field.node.hs_publications.field_hs_publication_type.yml +++ /dev/null @@ -1,30 +0,0 @@ -langcode: en -status: true -dependencies: - config: - - field.storage.node.field_hs_publication_type - - node.type.hs_publications - - taxonomy.vocabulary.hs_publication_type -_core: - default_config_hash: V0PSy6ip9v23wn5_HmLSiLdRalDP7Oh8vVEvYt7KFyY -id: node.hs_publications.field_hs_publication_type -field_name: field_hs_publication_type -entity_type: node -bundle: hs_publications -label: 'Publication Type' -description: '' -required: false -translatable: false -default_value: { } -default_value_callback: '' -settings: - handler: 'default:taxonomy_term' - handler_settings: - target_bundles: - hs_publication_type: hs_publication_type - sort: - field: name - direction: asc - auto_create: false - auto_create_bundle: '' -field_type: entity_reference diff --git a/docroot/modules/humsci/hs_publications/config/install/field.field.node.hs_publications.field_hs_publication_year.yml b/docroot/modules/humsci/hs_publications/config/install/field.field.node.hs_publications.field_hs_publication_year.yml deleted file mode 100644 index 2b2ebe3f6b..0000000000 --- a/docroot/modules/humsci/hs_publications/config/install/field.field.node.hs_publications.field_hs_publication_year.yml +++ /dev/null @@ -1,25 +0,0 @@ -langcode: en -status: true -dependencies: - config: - - field.storage.node.field_hs_publication_year - - node.type.hs_publications - module: - - datetime -_core: - default_config_hash: 9BSA282lULfRzbBucohwUs1Lya7GwmrF9ibKFYg-S7k -id: node.hs_publications.field_hs_publication_year -field_name: field_hs_publication_year -entity_type: node -bundle: hs_publications -label: 'Publication Year' -description: 'Choose the year of publication.' -required: false -translatable: false -default_value: - - - default_date_type: now - default_date: now -default_value_callback: '' -settings: { } -field_type: datetime diff --git a/docroot/modules/humsci/hs_publications/config/install/field.storage.node.field_hs_publication_author.yml b/docroot/modules/humsci/hs_publications/config/install/field.storage.node.field_hs_publication_author.yml deleted file mode 100644 index 54f83c00d8..0000000000 --- a/docroot/modules/humsci/hs_publications/config/install/field.storage.node.field_hs_publication_author.yml +++ /dev/null @@ -1,21 +0,0 @@ -langcode: en -status: true -dependencies: - module: - - eck - - node -_core: - default_config_hash: OdRW7Cr-RRkHgoTbfW3J-mCydNkKd7yEO8crouK9kg4 -id: node.field_hs_publication_author -field_name: field_hs_publication_author -entity_type: node -type: entity_reference -settings: - target_type: publications_collections -module: core -locked: false -cardinality: -1 -translatable: true -indexes: { } -persist_with_no_fields: false -custom_storage: false diff --git a/docroot/modules/humsci/hs_publications/config/install/field.storage.node.field_hs_publication_documents.yml b/docroot/modules/humsci/hs_publications/config/install/field.storage.node.field_hs_publication_documents.yml deleted file mode 100644 index 8594459462..0000000000 --- a/docroot/modules/humsci/hs_publications/config/install/field.storage.node.field_hs_publication_documents.yml +++ /dev/null @@ -1,21 +0,0 @@ -langcode: en -status: true -dependencies: - module: - - media - - node -_core: - default_config_hash: Dsl3z7DQQ2qiCI_jaqlrsjma4DSDwFjpJ855zZlC6Vs -id: node.field_hs_publication_documents -field_name: field_hs_publication_documents -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/docroot/modules/humsci/hs_publications/config/install/field.storage.node.field_hs_publication_image.yml b/docroot/modules/humsci/hs_publications/config/install/field.storage.node.field_hs_publication_image.yml deleted file mode 100644 index 0eaf1237ab..0000000000 --- a/docroot/modules/humsci/hs_publications/config/install/field.storage.node.field_hs_publication_image.yml +++ /dev/null @@ -1,21 +0,0 @@ -langcode: en -status: true -dependencies: - module: - - media - - node -_core: - default_config_hash: bXDdoNJOaN-nBxJBL9Uca0RzBv94v0wYTc-E9S7bZPs -id: node.field_hs_publication_image -field_name: field_hs_publication_image -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/docroot/modules/humsci/hs_publications/config/install/field.storage.node.field_hs_publication_link.yml b/docroot/modules/humsci/hs_publications/config/install/field.storage.node.field_hs_publication_link.yml deleted file mode 100644 index 8bb0cf5293..0000000000 --- a/docroot/modules/humsci/hs_publications/config/install/field.storage.node.field_hs_publication_link.yml +++ /dev/null @@ -1,20 +0,0 @@ -langcode: en -status: true -dependencies: - module: - - link - - node -_core: - default_config_hash: jkvHokBE324M07YP4KCXnWojyBeltsKhsLNlQs0dZWI -id: node.field_hs_publication_link -field_name: field_hs_publication_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/docroot/modules/humsci/hs_publications/config/install/field.storage.node.field_hs_publication_publisher.yml b/docroot/modules/humsci/hs_publications/config/install/field.storage.node.field_hs_publication_publisher.yml deleted file mode 100644 index 6729f166b4..0000000000 --- a/docroot/modules/humsci/hs_publications/config/install/field.storage.node.field_hs_publication_publisher.yml +++ /dev/null @@ -1,22 +0,0 @@ -langcode: en -status: true -dependencies: - module: - - node -_core: - default_config_hash: zv7zWUXHTsPZ87GgEZD8PeU0_hpWYiIfE7_VtEGhkD4 -id: node.field_hs_publication_publisher -field_name: field_hs_publication_publisher -entity_type: node -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/docroot/modules/humsci/hs_publications/config/install/field.storage.node.field_hs_publication_type.yml b/docroot/modules/humsci/hs_publications/config/install/field.storage.node.field_hs_publication_type.yml deleted file mode 100644 index 3fc8e0c38f..0000000000 --- a/docroot/modules/humsci/hs_publications/config/install/field.storage.node.field_hs_publication_type.yml +++ /dev/null @@ -1,21 +0,0 @@ -langcode: en -status: true -dependencies: - module: - - node - - taxonomy -_core: - default_config_hash: rO_bwPn0pCLdxsXHfW_V1Kg6BZkPbLgDOCeNaGpvw_M -id: node.field_hs_publication_type -field_name: field_hs_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/docroot/modules/humsci/hs_publications/config/install/field.storage.node.field_hs_publication_year.yml b/docroot/modules/humsci/hs_publications/config/install/field.storage.node.field_hs_publication_year.yml deleted file mode 100644 index 469f9d76e8..0000000000 --- a/docroot/modules/humsci/hs_publications/config/install/field.storage.node.field_hs_publication_year.yml +++ /dev/null @@ -1,21 +0,0 @@ -langcode: en -status: true -dependencies: - module: - - datetime - - node -_core: - default_config_hash: ZOGwqz-tq8oneWjz4tYIkKtXpqOQCrbZPzA5AiMPD8c -id: node.field_hs_publication_year -field_name: field_hs_publication_year -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/docroot/modules/humsci/hs_publications/config/install/node.type.hs_publications.yml b/docroot/modules/humsci/hs_publications/config/install/node.type.hs_publications.yml deleted file mode 100644 index 7f8241f367..0000000000 --- a/docroot/modules/humsci/hs_publications/config/install/node.type.hs_publications.yml +++ /dev/null @@ -1,18 +0,0 @@ -langcode: en -status: true -dependencies: - module: - - menu_ui -third_party_settings: - menu_ui: - available_menus: { } - parent: '' -_core: - default_config_hash: h46c8vZdmGINDFVvXovkkw9OeqkaZ-h3aWcsutZkQbI -name: Publications -type: hs_publications -description: 'A publication can be a book, an article, a poem, etc.' -help: '' -new_revision: true -preview_mode: 0 -display_submitted: false diff --git a/docroot/modules/humsci/hs_publications/config/install/pathauto.pattern.hs_publications_nodes.yml b/docroot/modules/humsci/hs_publications/config/install/pathauto.pattern.hs_publications_nodes.yml deleted file mode 100644 index d99b5c5356..0000000000 --- a/docroot/modules/humsci/hs_publications/config/install/pathauto.pattern.hs_publications_nodes.yml +++ /dev/null @@ -1,23 +0,0 @@ -langcode: en -status: true -dependencies: - module: - - node -_core: - default_config_hash: uRhJ74Hz_WuGSub3pgprFocLrEJ90j_DQsyR7xrYVTQ -id: hs_publications_nodes -label: 'Publications Nodes' -type: 'canonical_entities:node' -pattern: '/publications/[node:title]' -selection_criteria: - ae421f2f-7264-4d10-bf8d-52db6c0dc003: - id: node_type - bundles: - hs_publications: hs_publications - negate: false - context_mapping: - node: node - uuid: ae421f2f-7264-4d10-bf8d-52db6c0dc003 -selection_logic: and -weight: -5 -relationships: { } diff --git a/docroot/modules/humsci/hs_publications/config/install/taxonomy.vocabulary.hs_publication_type.yml b/docroot/modules/humsci/hs_publications/config/install/taxonomy.vocabulary.hs_publication_type.yml deleted file mode 100644 index 896b3fd721..0000000000 --- a/docroot/modules/humsci/hs_publications/config/install/taxonomy.vocabulary.hs_publication_type.yml +++ /dev/null @@ -1,10 +0,0 @@ -langcode: en -status: true -dependencies: { } -_core: - default_config_hash: UVt_n5FY1edXij5AAEwkdFzDsb2FmxdHYPYmcI4tAxE -name: 'Publication Type' -vid: hs_publication_type -description: '' -hierarchy: 0 -weight: 0 diff --git a/docroot/modules/humsci/hs_publications/config/install/views.view.hs_publications.yml b/docroot/modules/humsci/hs_publications/config/install/views.view.hs_publications.yml deleted file mode 100644 index 99e427cb9e..0000000000 --- a/docroot/modules/humsci/hs_publications/config/install/views.view.hs_publications.yml +++ /dev/null @@ -1,1323 +0,0 @@ -langcode: en -status: true -dependencies: - config: - - core.entity_view_mode.node.hs_vertical_card - - field.storage.node.field_hs_publication_author - - field.storage.node.field_hs_publication_image - - field.storage.node.field_hs_publication_type - - field.storage.node.field_hs_publication_year - - node.type.hs_publications - - taxonomy.vocabulary.hs_publication_type - module: - - datetime - - eck - - hs_field_helpers - - node - - stanford_media - - taxonomy - - ui_patterns_views - - user - - views_infinite_scroll -id: hs_publications -label: Publications -module: views -description: '' -tag: '' -base_table: node_field_data -base_field: nid -core: 8.x -display: - default: - display_plugin: default - id: default - display_title: Master - position: 0 - display_options: - access: - type: perm - options: - perm: 'access content' - cache: - type: tag - options: { } - query: - type: views_query - options: - disable_sql_rewrite: false - distinct: false - replica: false - query_comment: '' - query_tags: { } - exposed_form: - type: basic - options: - submit_button: Apply - reset_button: false - reset_button_label: Reset - exposed_sorts_label: 'Sort by' - expose_sort_order: true - sort_asc_label: Asc - sort_desc_label: Desc - pager: - type: infinite_scroll - options: - items_per_page: 9 - offset: 0 - id: 0 - total_pages: null - tags: - previous: '‹ Previous' - next: 'Next ›' - expose: - items_per_page: false - items_per_page_label: 'Items per page' - items_per_page_options: '5, 10, 25, 50' - items_per_page_options_all: false - items_per_page_options_all_label: '- All -' - offset: false - offset_label: Offset - views_infinite_scroll: - button_text: 'Show More' - automatically_load_content: false - style: - type: pattern - options: - pattern: masonry - pattern_mapping: - rows: - destination: items - weight: '0' - title: - destination: '' - weight: '0' - row: - type: ui_patterns - options: - default_field_elements: 1 - inline: - field_hs_publication_image: 0 - field_hs_publication_type: 0 - title: 0 - field_hs_publication_author: 0 - field_hs_publication_year: 0 - nid: 0 - separator: '' - hide_empty: 1 - pattern: masonry_item - pattern_mapping: - 'views_row:field_hs_publication_image': - destination: image - weight: 0 - plugin: views_row - source: field_hs_publication_image - 'views_row:nid': - destination: body - weight: 1 - plugin: views_row - source: nid - 'views_row:field_hs_publication_type': - destination: body - weight: 2 - plugin: views_row - source: field_hs_publication_type - 'views_row:title': - destination: body - weight: 3 - plugin: views_row - source: title - 'views_row:field_hs_publication_author': - destination: body - weight: 4 - plugin: views_row - source: field_hs_publication_author - 'views_row:field_hs_publication_year': - destination: body - weight: 5 - plugin: views_row - source: field_hs_publication_year - fields: - field_hs_publication_image: - id: field_hs_publication_image - table: node__field_hs_publication_image - field: field_hs_publication_image - relationship: none - group_type: group - admin_label: '' - label: '' - exclude: false - alter: - alter_text: false - text: '' - make_link: false - path: '' - absolute: false - external: false - replace_spaces: false - path_case: none - trim_whitespace: false - alt: '' - rel: '' - link_class: '' - prefix: '' - suffix: '' - target: '' - nl2br: false - max_length: 0 - word_boundary: true - ellipsis: true - more_link: false - more_link_text: '' - more_link_path: '' - strip_tags: false - trim: false - preserve_tags: '' - html: false - element_type: '' - element_class: '' - element_label_type: '' - element_label_class: '' - element_label_colon: false - element_wrapper_type: '' - element_wrapper_class: '' - element_default_classes: true - empty: '' - hide_empty: false - empty_zero: false - hide_alter_empty: true - click_sort_column: target_id - type: media_image_formatter - settings: - view_mode: default - image_style: responsive_small - link: 1 - group_column: target_id - group_columns: { } - group_rows: true - delta_limit: 0 - delta_offset: 0 - delta_reversed: false - delta_first_last: false - multi_type: separator - separator: ', ' - field_api_classes: false - plugin_id: field - field_hs_publication_type: - id: field_hs_publication_type - table: node__field_hs_publication_type - field: field_hs_publication_type - relationship: none - group_type: group - admin_label: '' - label: '' - exclude: false - alter: - alter_text: false - text: '' - make_link: false - path: '' - absolute: false - external: false - replace_spaces: false - path_case: none - trim_whitespace: false - alt: '' - rel: '' - link_class: '' - prefix: '' - suffix: '' - target: '' - nl2br: false - max_length: 0 - word_boundary: true - ellipsis: true - more_link: false - more_link_text: '' - more_link_path: '' - strip_tags: false - trim: false - preserve_tags: '' - html: false - element_type: '' - element_class: 'accent-dash masonry-item--type' - element_label_type: '' - element_label_class: '' - element_label_colon: false - element_wrapper_type: '' - element_wrapper_class: '' - element_default_classes: true - empty: '' - hide_empty: false - empty_zero: false - hide_alter_empty: true - click_sort_column: target_id - type: entity_reference_label - settings: - link: false - group_column: target_id - group_columns: { } - group_rows: true - delta_limit: 0 - delta_offset: 0 - delta_reversed: false - delta_first_last: false - multi_type: separator - separator: ', ' - field_api_classes: false - plugin_id: field - title: - id: title - table: node_field_data - field: title - relationship: none - group_type: group - admin_label: '' - label: '' - exclude: false - alter: - alter_text: false - text: '' - make_link: false - path: '' - absolute: false - external: false - replace_spaces: false - path_case: none - trim_whitespace: false - alt: '' - rel: '' - link_class: '' - prefix: '' - suffix: '' - target: '' - nl2br: false - max_length: 0 - word_boundary: false - ellipsis: false - more_link: false - more_link_text: '' - more_link_path: '' - strip_tags: false - trim: false - preserve_tags: '' - html: false - element_type: h3 - element_class: 'no-dash masonry-item--title' - element_label_type: '' - element_label_class: '' - element_label_colon: false - element_wrapper_type: '' - element_wrapper_class: '' - element_default_classes: true - empty: '' - hide_empty: false - empty_zero: false - hide_alter_empty: true - click_sort_column: value - type: string - settings: - link_to_entity: true - group_column: value - group_columns: { } - group_rows: true - delta_limit: 0 - delta_offset: 0 - delta_reversed: false - delta_first_last: false - multi_type: separator - separator: ', ' - field_api_classes: false - entity_type: node - entity_field: title - plugin_id: field - field_hs_publication_year: - id: field_hs_publication_year - table: node__field_hs_publication_year - field: field_hs_publication_year - relationship: none - group_type: group - admin_label: '' - label: '' - exclude: true - alter: - alter_text: false - text: '' - make_link: false - path: '' - absolute: false - external: false - replace_spaces: false - path_case: none - trim_whitespace: false - alt: '' - rel: '' - link_class: '' - prefix: '' - suffix: '' - target: '' - nl2br: false - max_length: 0 - word_boundary: true - ellipsis: true - more_link: false - more_link_text: '' - more_link_path: '' - strip_tags: false - trim: false - preserve_tags: '' - html: false - element_type: '' - element_class: '' - element_label_type: '' - element_label_class: '' - element_label_colon: false - element_wrapper_type: '' - element_wrapper_class: '' - element_default_classes: true - empty: '' - hide_empty: false - empty_zero: false - hide_alter_empty: true - click_sort_column: value - type: datetime_custom - settings: - timezone_override: '' - date_format: 'Y' - group_column: value - group_columns: { } - group_rows: true - delta_limit: 0 - delta_offset: 0 - delta_reversed: false - delta_first_last: false - multi_type: separator - separator: ', ' - field_api_classes: false - plugin_id: field - field_hs_publication_author: - id: field_hs_publication_author - table: node__field_hs_publication_author - field: field_hs_publication_author - relationship: none - group_type: group - admin_label: '' - label: '' - exclude: false - alter: - alter_text: true - text: '{% if field_hs_publication_author|render|striptags|trim %}{{ field_hs_publication_author|render|striptags|trim }}, {% endif %}{{ field_hs_publication_year|trim }}' - make_link: false - path: '' - absolute: false - external: false - replace_spaces: false - path_case: none - trim_whitespace: false - alt: '' - rel: '' - link_class: '' - prefix: '' - suffix: '' - target: '' - nl2br: false - max_length: 0 - word_boundary: true - ellipsis: true - more_link: false - more_link_text: '' - more_link_path: '' - strip_tags: true - trim: false - preserve_tags: '' - html: false - element_type: '' - element_class: masonry-item--author-year - element_label_type: '' - element_label_class: '' - element_label_colon: false - element_wrapper_type: '' - element_wrapper_class: '' - element_default_classes: true - empty: '{{ field_hs_publication_year }}' - hide_empty: false - empty_zero: true - hide_alter_empty: true - click_sort_column: target_id - type: entity_reference_entity_view - settings: - view_mode: default - group_column: target_id - group_columns: { } - group_rows: true - delta_limit: 0 - delta_offset: 0 - delta_reversed: false - delta_first_last: false - multi_type: separator - separator: ', ' - field_api_classes: false - plugin_id: field - filters: - status: - value: '1' - table: node_field_data - field: status - plugin_id: boolean - entity_type: node - entity_field: status - id: status - expose: - operator: '' - group: 1 - type: - id: type - table: node_field_data - field: type - value: - hs_publications: hs_publications - entity_type: node - entity_field: type - plugin_id: bundle - group: 1 - title: - id: title - table: node_field_data - field: title - relationship: none - group_type: group - admin_label: '' - operator: word - value: '' - group: 1 - exposed: true - expose: - operator_id: title_op - label: 'Search by Name' - description: '' - use_operator: false - operator: title_op - identifier: name - required: false - remember: false - multiple: false - remember_roles: - authenticated: authenticated - anonymous: '0' - administrator: '0' - placeholder: '' - is_grouped: false - group_info: - label: '' - description: '' - identifier: '' - optional: true - widget: select - multiple: false - remember: false - default_group: All - default_group_multiple: { } - group_items: { } - entity_type: node - entity_field: title - plugin_id: string - title_1: - id: title_1 - table: publications_collections_field_data - field: title - relationship: field_hs_publication_author - group_type: group - admin_label: '' - operator: word - value: '' - group: 1 - exposed: true - expose: - operator_id: title_1_op - label: 'Search by Author' - description: '' - use_operator: false - operator: title_1_op - identifier: pub_author - required: false - remember: false - multiple: false - remember_roles: - authenticated: authenticated - anonymous: '0' - administrator: '0' - placeholder: '' - is_grouped: false - group_info: - label: '' - description: '' - identifier: '' - optional: true - widget: select - multiple: false - remember: false - default_group: All - default_group_multiple: { } - group_items: { } - entity_type: publications_collections - entity_field: title - plugin_id: string - field_hs_publication_type_target_id: - id: field_hs_publication_type_target_id - table: node__field_hs_publication_type - field: field_hs_publication_type_target_id - relationship: none - group_type: group - admin_label: '' - operator: or - value: { } - group: 1 - exposed: true - expose: - operator_id: field_hs_publication_type_target_id_op - label: 'Filter by Type' - description: '' - use_operator: false - operator: field_hs_publication_type_target_id_op - identifier: type - required: false - remember: false - multiple: true - remember_roles: - authenticated: authenticated - anonymous: '0' - administrator: '0' - reduce: false - is_grouped: false - group_info: - label: '' - description: '' - identifier: '' - optional: true - widget: select - multiple: false - remember: false - default_group: All - default_group_multiple: { } - group_items: { } - reduce_duplicates: false - type: select - limit: true - vid: hs_publication_type - hierarchy: false - error_message: true - plugin_id: taxonomy_index_tid - sorts: - field_hs_publication_year_value: - id: field_hs_publication_year_value - table: node__field_hs_publication_year - field: field_hs_publication_year_value - relationship: none - group_type: group - admin_label: '' - order: DESC - exposed: false - expose: - label: '' - granularity: year - plugin_id: datetime - created: - id: created - table: node_field_data - field: created - order: DESC - entity_type: node - entity_field: created - plugin_id: date - relationship: none - group_type: group - admin_label: '' - exposed: false - expose: - label: '' - granularity: second - title: Publications - header: { } - footer: { } - empty: - area: - id: area - table: views - field: area - relationship: none - group_type: group - admin_label: '' - empty: true - tokenize: false - content: - value: '

No publications are available at this time. Please check back again soon.

' - format: basic_html - plugin_id: text - relationships: - field_hs_publication_author: - id: field_hs_publication_author - table: node__field_hs_publication_author - field: field_hs_publication_author - relationship: none - group_type: group - admin_label: 'field_hs_publication_author: Publications Collections' - required: false - plugin_id: standard - arguments: { } - display_extenders: { } - use_ajax: true - filter_groups: - operator: AND - groups: - 1: AND - group_by: true - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_content' - - 'languages:language_interface' - - url - - url.query_args - - user - - 'user.node_grants:view' - - user.permissions - tags: - - 'config:field.storage.node.field_hs_publication_author' - - 'config:field.storage.node.field_hs_publication_image' - - 'config:field.storage.node.field_hs_publication_type' - - 'config:field.storage.node.field_hs_publication_year' - - extensions - author_list: - display_plugin: block - id: author_list - display_title: 'Author''s List' - position: 3 - display_options: - display_extenders: { } - display_description: '' - style: - type: pattern - options: - pattern: masonry - pattern_mapping: - rows: - destination: items - weight: '0' - title: - destination: '' - weight: '0' - defaults: - style: false - row: false - arguments: false - group_by: false - filters: false - filter_groups: false - fields: false - empty: false - title: false - pager: false - row: - type: ui_patterns - options: - default_field_elements: 1 - inline: - field_hs_publication_image: 0 - field_hs_publication_type: 0 - title: 0 - field_hs_publication_author: 0 - field_hs_publication_year: 0 - nid: 0 - separator: '' - hide_empty: 1 - pattern: masonry_item - pattern_mapping: - 'views_row:field_hs_publication_image': - destination: image - weight: 0 - plugin: views_row - source: field_hs_publication_image - 'views_row:nid': - destination: body - weight: 1 - plugin: views_row - source: nid - 'views_row:field_hs_publication_type': - destination: body - weight: 2 - plugin: views_row - source: field_hs_publication_type - 'views_row:title': - destination: body - weight: 3 - plugin: views_row - source: title - 'views_row:field_hs_publication_author': - destination: body - weight: 4 - plugin: views_row - source: field_hs_publication_author - 'views_row:field_hs_publication_year': - destination: body - weight: 5 - plugin: views_row - source: field_hs_publication_year - arguments: - field_hs_publication_author_target_id: - id: field_hs_publication_author_target_id - table: publications_collections__field_hs_publication_author - field: field_hs_publication_author_target_id - relationship: field_hs_publication_author - group_type: group - admin_label: '' - default_action: default - exception: - value: all - title_enable: false - title: All - title_enable: false - title: '' - default_argument_type: node - default_argument_options: { } - default_argument_skip_url: false - summary_options: - base_path: '' - count: true - items_per_page: 25 - override: false - summary: - sort_order: asc - number_of_records: 0 - format: default_summary - specify_validation: false - validate: - type: none - fail: 'not found' - validate_options: { } - break_phrase: false - not: false - plugin_id: numeric - group_by: false - filters: - status: - value: '1' - table: node_field_data - field: status - plugin_id: boolean - entity_type: node - entity_field: status - id: status - expose: - operator: '' - group: 1 - type: - id: type - table: node_field_data - field: type - value: - hs_publications: hs_publications - entity_type: node - entity_field: type - plugin_id: bundle - group: 1 - filter_groups: - operator: AND - groups: - 1: AND - fields: - field_hs_publication_image: - id: field_hs_publication_image - table: node__field_hs_publication_image - field: field_hs_publication_image - relationship: none - group_type: group - admin_label: '' - label: '' - exclude: false - alter: - alter_text: false - text: '' - make_link: false - path: '' - absolute: false - external: false - replace_spaces: false - path_case: none - trim_whitespace: false - alt: '' - rel: '' - link_class: '' - prefix: '' - suffix: '' - target: '' - nl2br: false - max_length: 0 - word_boundary: true - ellipsis: true - more_link: false - more_link_text: '' - more_link_path: '' - strip_tags: false - trim: false - preserve_tags: '' - html: false - element_type: '' - element_class: '' - element_label_type: '' - element_label_class: '' - element_label_colon: false - element_wrapper_type: '' - element_wrapper_class: '' - element_default_classes: true - empty: '' - hide_empty: false - empty_zero: false - hide_alter_empty: true - click_sort_column: target_id - type: media_image_formatter - settings: - view_mode: default - image_style: responsive_small - link: 1 - group_column: target_id - group_columns: { } - group_rows: true - delta_limit: 0 - delta_offset: 0 - delta_reversed: false - delta_first_last: false - multi_type: separator - separator: ', ' - field_api_classes: false - plugin_id: field - field_hs_publication_type: - id: field_hs_publication_type - table: node__field_hs_publication_type - field: field_hs_publication_type - relationship: none - group_type: group - admin_label: '' - label: '' - exclude: false - alter: - alter_text: false - text: '' - make_link: false - path: '' - absolute: false - external: false - replace_spaces: false - path_case: none - trim_whitespace: false - alt: '' - rel: '' - link_class: '' - prefix: '' - suffix: '' - target: '' - nl2br: false - max_length: 0 - word_boundary: true - ellipsis: true - more_link: false - more_link_text: '' - more_link_path: '' - strip_tags: false - trim: false - preserve_tags: '' - html: false - element_type: '' - element_class: masonry-item--type - element_label_type: '' - element_label_class: '' - element_label_colon: false - element_wrapper_type: '' - element_wrapper_class: '' - element_default_classes: true - empty: '' - hide_empty: false - empty_zero: false - hide_alter_empty: true - click_sort_column: target_id - type: entity_reference_label - settings: - link: false - group_column: target_id - group_columns: { } - group_rows: true - delta_limit: 0 - delta_offset: 0 - delta_reversed: false - delta_first_last: false - multi_type: separator - separator: ', ' - field_api_classes: false - plugin_id: field - title: - id: title - table: node_field_data - field: title - relationship: none - group_type: group - admin_label: '' - label: '' - exclude: false - alter: - alter_text: false - text: '' - make_link: false - path: '' - absolute: false - external: false - replace_spaces: false - path_case: none - trim_whitespace: false - alt: '' - rel: '' - link_class: '' - prefix: '' - suffix: '' - target: '' - nl2br: false - max_length: 0 - word_boundary: false - ellipsis: false - more_link: false - more_link_text: '' - more_link_path: '' - strip_tags: false - trim: false - preserve_tags: '' - html: false - element_type: h3 - element_class: 'no-dash masonry-item--title' - element_label_type: '' - element_label_class: '' - element_label_colon: false - element_wrapper_type: '' - element_wrapper_class: '' - element_default_classes: true - empty: '' - hide_empty: false - empty_zero: false - hide_alter_empty: true - click_sort_column: value - type: string - settings: - link_to_entity: true - group_column: value - group_columns: { } - group_rows: true - delta_limit: 0 - delta_offset: 0 - delta_reversed: false - delta_first_last: false - multi_type: separator - separator: ', ' - field_api_classes: false - entity_type: node - entity_field: title - plugin_id: field - field_hs_publication_year: - id: field_hs_publication_year - table: node__field_hs_publication_year - field: field_hs_publication_year - relationship: none - group_type: group - admin_label: '' - label: '' - exclude: false - alter: - alter_text: false - text: '' - make_link: false - path: '' - absolute: false - external: false - replace_spaces: false - path_case: none - trim_whitespace: false - alt: '' - rel: '' - link_class: '' - prefix: '' - suffix: '' - target: '' - nl2br: false - max_length: 0 - word_boundary: true - ellipsis: true - more_link: false - more_link_text: '' - more_link_path: '' - strip_tags: false - trim: false - preserve_tags: '' - html: false - element_type: '' - element_class: '' - element_label_type: '' - element_label_class: '' - element_label_colon: false - element_wrapper_type: '' - element_wrapper_class: '' - element_default_classes: true - empty: '' - hide_empty: false - empty_zero: false - hide_alter_empty: true - click_sort_column: value - type: datetime_custom - settings: - timezone_override: '' - date_format: 'Y' - group_column: value - group_columns: { } - group_rows: true - delta_limit: 0 - delta_offset: 0 - delta_reversed: false - delta_first_last: false - multi_type: separator - separator: ', ' - field_api_classes: false - plugin_id: field - empty: { } - title: 'Featured Publications' - pager: - type: some - options: - items_per_page: 3 - offset: 0 - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_content' - - 'languages:language_interface' - - url - - 'user.node_grants:view' - - user.permissions - tags: - - 'config:field.storage.node.field_hs_publication_image' - - 'config:field.storage.node.field_hs_publication_type' - - 'config:field.storage.node.field_hs_publication_year' - - extensions - masonry_list: - display_plugin: block - id: masonry_list - display_title: 'Masonry List' - position: 1 - display_options: - display_extenders: { } - exposed_block: true - display_description: '' - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_content' - - 'languages:language_interface' - - url - - url.query_args - - user - - 'user.node_grants:view' - - user.permissions - tags: - - 'config:field.storage.node.field_hs_publication_author' - - 'config:field.storage.node.field_hs_publication_image' - - 'config:field.storage.node.field_hs_publication_type' - - 'config:field.storage.node.field_hs_publication_year' - - extensions - single_featured: - display_plugin: block - id: single_featured - display_title: 'Single Featured' - position: 2 - display_options: - display_extenders: { } - display_description: '' - pager: - type: some - options: - items_per_page: 1 - offset: 0 - defaults: - pager: false - relationships: false - group_by: false - filters: false - filter_groups: false - fields: false - sorts: false - style: false - row: false - use_more: false - use_more_always: false - use_more_text: false - link_display: false - link_url: false - relationships: { } - group_by: false - filters: - status: - value: '1' - table: node_field_data - field: status - plugin_id: boolean - entity_type: node - entity_field: status - id: status - expose: - operator: '' - group: 1 - type: - id: type - table: node_field_data - field: type - value: - hs_publications: hs_publications - entity_type: node - entity_field: type - plugin_id: bundle - group: 1 - promote: - id: promote - table: node_field_data - field: promote - relationship: none - group_type: group - admin_label: '' - operator: '=' - value: '1' - group: 1 - exposed: false - expose: - operator_id: '' - label: '' - description: '' - use_operator: false - operator: '' - identifier: '' - required: false - remember: false - multiple: false - remember_roles: - authenticated: authenticated - is_grouped: false - group_info: - label: '' - description: '' - identifier: '' - optional: true - widget: select - multiple: false - remember: false - default_group: All - default_group_multiple: { } - group_items: { } - entity_type: node - entity_field: promote - plugin_id: boolean - filter_groups: - operator: AND - groups: - 1: AND - fields: - title: - id: title - table: node_field_data - field: title - entity_type: node - entity_field: title - label: '' - alter: - alter_text: false - make_link: false - absolute: false - trim: false - word_boundary: false - ellipsis: false - strip_tags: false - html: false - hide_empty: false - empty_zero: false - settings: - link_to_entity: true - plugin_id: field - relationship: none - group_type: group - admin_label: '' - exclude: false - element_type: '' - element_class: '' - element_label_type: '' - element_label_class: '' - element_label_colon: true - element_wrapper_type: '' - element_wrapper_class: '' - element_default_classes: true - empty: '' - hide_alter_empty: true - click_sort_column: value - type: string - group_column: value - group_columns: { } - group_rows: true - delta_limit: 0 - delta_offset: 0 - delta_reversed: false - delta_first_last: false - multi_type: separator - separator: ', ' - field_api_classes: false - sorts: - field_hs_publication_year_value: - id: field_hs_publication_year_value - table: node__field_hs_publication_year - field: field_hs_publication_year_value - relationship: none - group_type: group - admin_label: '' - order: DESC - exposed: false - expose: - label: '' - granularity: year - plugin_id: datetime - created: - id: created - table: node_field_data - field: created - order: DESC - entity_type: node - entity_field: created - plugin_id: date - relationship: none - group_type: group - admin_label: '' - exposed: false - expose: - label: '' - granularity: second - style: - type: default - options: - grouping: { } - row_class: '' - default_row_class: true - row: - type: 'entity:node' - options: - relationship: none - view_mode: hs_vertical_card - use_more: true - use_more_always: true - use_more_text: 'See More Publications' - link_display: custom_url - link_url: /research/publications - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_content' - - 'languages:language_interface' - - 'user.node_grants:view' - - user.permissions - tags: { } diff --git a/docroot/modules/humsci/hs_publications/config/optional/field.field.publications_collections.publication_author.field_hs_publication_author.yml b/docroot/modules/humsci/hs_publications/config/optional/field.field.publications_collections.publication_author.field_hs_publication_author.yml deleted file mode 100644 index 0928137b04..0000000000 --- a/docroot/modules/humsci/hs_publications/config/optional/field.field.publications_collections.publication_author.field_hs_publication_author.yml +++ /dev/null @@ -1,28 +0,0 @@ -langcode: en -status: true -dependencies: - config: - - eck.eck_type.publications_collections.publication_author - - field.storage.publications_collections.field_hs_publication_author - - node.type.hs_person -id: publications_collections.publication_author.field_hs_publication_author -field_name: field_hs_publication_author -entity_type: publications_collections -bundle: publication_author -label: 'Author Person' -description: '' -required: false -translatable: false -default_value: { } -default_value_callback: '' -settings: - handler: 'default:node' - handler_settings: - target_bundles: - hs_person: hs_person - sort: - field: title - direction: ASC - auto_create: false - auto_create_bundle: '' -field_type: entity_reference diff --git a/docroot/modules/humsci/hs_publications/config/optional/field.storage.publications_collections.field_hs_publication_author.yml b/docroot/modules/humsci/hs_publications/config/optional/field.storage.publications_collections.field_hs_publication_author.yml deleted file mode 100644 index 21c8f72a17..0000000000 --- a/docroot/modules/humsci/hs_publications/config/optional/field.storage.publications_collections.field_hs_publication_author.yml +++ /dev/null @@ -1,19 +0,0 @@ -langcode: en -status: true -dependencies: - module: - - eck - - node -id: publications_collections.field_hs_publication_author -field_name: field_hs_publication_author -entity_type: publications_collections -type: entity_reference -settings: - target_type: node -module: core -locked: false -cardinality: 1 -translatable: true -indexes: { } -persist_with_no_fields: false -custom_storage: false diff --git a/docroot/modules/humsci/hs_publications/hs_publications.info.yml b/docroot/modules/humsci/hs_publications/hs_publications.info.yml index ef31f5f6a2..82b024a08e 100644 --- a/docroot/modules/humsci/hs_publications/hs_publications.info.yml +++ b/docroot/modules/humsci/hs_publications/hs_publications.info.yml @@ -6,7 +6,6 @@ version: 8.2.7 package: 'Humanities & Sciences' dependencies: - datetime - - eck - hs_field_helpers - inline_entity_form - layout_builder diff --git a/docroot/modules/humsci/hs_publications/modules/hs_publications_display/config/install/core.entity_form_display.node.hs_publications.default.yml b/docroot/modules/humsci/hs_publications/modules/hs_publications_display/config/install/core.entity_form_display.node.hs_publications.default.yml deleted file mode 100644 index aeb3646ba0..0000000000 --- a/docroot/modules/humsci/hs_publications/modules/hs_publications_display/config/install/core.entity_form_display.node.hs_publications.default.yml +++ /dev/null @@ -1,170 +0,0 @@ -uuid: 71d081fe-6ced-4bd4-85fa-c64fa2db19a4 -langcode: en -status: true -dependencies: - config: - - entity_browser.browser.image_browser - - field.field.node.hs_publications.body - - field.field.node.hs_publications.field_hs_publication_author - - field.field.node.hs_publications.field_hs_publication_documents - - field.field.node.hs_publications.field_hs_publication_image - - field.field.node.hs_publications.field_hs_publication_link - - field.field.node.hs_publications.field_hs_publication_publisher - - field.field.node.hs_publications.field_hs_publication_type - - field.field.node.hs_publications.field_hs_publication_year - - node.type.hs_publications - module: - - entity_browser - - entity_browser_entity_form - - hs_field_helpers - - inline_entity_form - - link - - path - - text -_core: - default_config_hash: YhHMDht0zK7u6dzUkYGt05lJdgV84TQV7AKbR4AdXss -id: node.hs_publications.default -targetEntityType: node -bundle: hs_publications -mode: default -content: - body: - type: text_textarea_with_summary - weight: 14 - settings: - rows: 9 - summary_rows: 3 - placeholder: '' - third_party_settings: { } - region: content - created: - type: datetime_timestamp - weight: 3 - region: content - settings: { } - third_party_settings: { } - field_hs_publication_author: - weight: 13 - settings: - form_mode: default - override_labels: true - label_singular: Author - label_plural: Authors - allow_new: true - match_operator: CONTAINS - allow_existing: false - third_party_settings: - entity_browser_entity_form: - entity_browser_id: _none - type: inline_entity_form_complex - region: content - field_hs_publication_documents: - weight: 15 - settings: - entity_browser: file_browser - field_widget_display: rendered_entity - field_widget_edit: true - field_widget_remove: true - selection_mode: selection_append - field_widget_display_settings: - view_mode: thumbnail - field_widget_replace: false - open: false - third_party_settings: { } - type: entity_browser_entity_reference - region: content - field_hs_publication_image: - weight: 1 - settings: - entity_browser: image_browser - field_widget_display: rendered_entity - field_widget_edit: true - field_widget_remove: true - selection_mode: selection_append - field_widget_display_settings: - view_mode: thumbnail - field_widget_replace: false - open: false - third_party_settings: { } - type: entity_browser_entity_reference - region: content - field_hs_publication_link: - weight: 10 - settings: - placeholder_url: '' - placeholder_title: '' - third_party_settings: { } - type: link_default - region: content - field_hs_publication_publisher: - weight: 12 - settings: - size: 60 - placeholder: '' - third_party_settings: { } - type: string_textfield - region: content - field_hs_publication_type: - weight: 9 - settings: { } - third_party_settings: { } - type: options_select - region: content - field_hs_publication_year: - weight: 11 - settings: - min: 'now - 10 years' - max: 'now + 10 years' - third_party_settings: { } - type: datetime_year_only - region: content - path: - type: path - weight: 6 - region: content - settings: { } - third_party_settings: { } - promote: - type: boolean_checkbox - settings: - display_label: true - weight: 4 - region: content - third_party_settings: { } - status: - type: boolean_checkbox - settings: - display_label: true - weight: 8 - region: content - third_party_settings: { } - sticky: - type: boolean_checkbox - settings: - display_label: true - weight: 5 - region: content - 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 - settings: - match_operator: CONTAINS - size: 60 - placeholder: '' - region: content - third_party_settings: { } - url_redirects: - weight: 7 - region: content - settings: { } - third_party_settings: { } -hidden: { } diff --git a/docroot/modules/humsci/hs_publications/modules/hs_publications_display/config/install/core.entity_view_display.node.hs_publications.default.yml b/docroot/modules/humsci/hs_publications/modules/hs_publications_display/config/install/core.entity_view_display.node.hs_publications.default.yml deleted file mode 100644 index 666ecc1c55..0000000000 --- a/docroot/modules/humsci/hs_publications/modules/hs_publications_display/config/install/core.entity_view_display.node.hs_publications.default.yml +++ /dev/null @@ -1,208 +0,0 @@ -uuid: d188fbb6-67cc-483a-a42e-dfd145cb6e45 -langcode: en -status: true -dependencies: - config: - - field.field.node.hs_publications.body - - field.field.node.hs_publications.field_hs_publication_author - - field.field.node.hs_publications.field_hs_publication_documents - - field.field.node.hs_publications.field_hs_publication_image - - field.field.node.hs_publications.field_hs_publication_link - - field.field.node.hs_publications.field_hs_publication_publisher - - field.field.node.hs_publications.field_hs_publication_type - - field.field.node.hs_publications.field_hs_publication_year - - node.type.hs_publications - - system.menu.main - module: - - hs_layouts - - layout_builder - - menu_block - - user -third_party_settings: - layout_builder: - sections: - - - layout_id: three_column_w_image - layout_settings: - section_width: decanter-grid - components: - 044e738a-222f-42da-b06b-1825238cbcea: - uuid: 044e738a-222f-42da-b06b-1825238cbcea - region: top - configuration: - id: 'field_block:node:hs_publications:title' - label: Title - provider: layout_builder - label_display: '0' - formatter: - label: hidden - type: entity_title_heading - settings: - tag: h1 - third_party_settings: { } - context_mapping: - entity: layout_builder.entity - additional: { } - weight: 0 - 2ee63ce7-4930-468f-a038-d26d7227b0e9: - uuid: 2ee63ce7-4930-468f-a038-d26d7227b0e9 - region: image - configuration: - id: 'field_block:node:hs_publications:field_hs_publication_image' - label: 'Publication Image' - provider: layout_builder - label_display: '0' - formatter: - label: hidden - type: media_image_formatter - settings: - view_mode: default - image_style: hs_medium_square_360x360 - link: 0 - third_party_settings: { } - context_mapping: - entity: layout_builder.entity - additional: { } - weight: 0 - 9f2ea3b6-1b3f-4bba-b196-1c0fc24df01e: - uuid: 9f2ea3b6-1b3f-4bba-b196-1c0fc24df01e - region: left_sidebar - configuration: - id: 'menu_block:main' - label: 'Main navigation' - provider: menu_block - label_display: visible - follow: 1 - follow_parent: '-1' - level: 1 - depth: 0 - expand: 1 - parent: 'main:' - suggestion: main - label_type: root - context_mapping: { } - additional: { } - weight: 0 - 175f27f1-1a75-4457-90af-8722fa5816b5: - uuid: 175f27f1-1a75-4457-90af-8722fa5816b5 - region: main_above - configuration: - id: 'field_block:node:hs_publications:field_hs_publication_link' - label: 'Publication Link' - provider: layout_builder - label_display: '0' - formatter: - label: hidden - type: link - settings: - trim_length: 80 - url_only: false - url_plain: false - rel: '0' - target: '0' - third_party_settings: - ds: - ds_limit: '' - context_mapping: - entity: layout_builder.entity - additional: { } - weight: 0 - 7be5daa9-a55a-4a01-ad60-54dc099c14ba: - uuid: 7be5daa9-a55a-4a01-ad60-54dc099c14ba - region: main_above - configuration: - id: 'field_block:node:hs_publications:field_hs_publication_year' - label: 'Publication Year' - provider: layout_builder - label_display: '0' - formatter: - label: hidden - type: datetime_custom - settings: - timezone_override: '' - date_format: 'Y' - third_party_settings: { } - context_mapping: - entity: layout_builder.entity - additional: { } - weight: 1 - 83f8fce7-f3dc-46a0-b3a1-2d4c6e573fe0: - uuid: 83f8fce7-f3dc-46a0-b3a1-2d4c6e573fe0 - region: main_above - configuration: - id: 'field_block:node:hs_publications:field_hs_publication_author' - label: Author - provider: layout_builder - label_display: '0' - formatter: - label: hidden - type: entity_reference_entity_view - settings: - view_mode: default - third_party_settings: - ds: - ds_limit: '' - context_mapping: - entity: layout_builder.entity - additional: { } - weight: 2 - 9e34500f-1fcd-4b1e-b3eb-b3f5a2bc2182: - uuid: 9e34500f-1fcd-4b1e-b3eb-b3f5a2bc2182 - region: main_below - configuration: - id: 'field_block:node:hs_publications:body' - label: Body - provider: layout_builder - label_display: '0' - formatter: - label: hidden - type: text_default - settings: { } - third_party_settings: { } - context_mapping: - entity: layout_builder.entity - additional: { } - weight: 0 - 5c724759-2354-4d97-a7b5-bf4c17e5420c: - uuid: 5c724759-2354-4d97-a7b5-bf4c17e5420c - region: main_below - configuration: - id: 'field_block:node:hs_publications:field_hs_publication_documents' - label: 'Publication Documents' - provider: layout_builder - label_display: '0' - formatter: - label: hidden - type: entity_reference_entity_view - settings: - view_mode: default - third_party_settings: - ds: - ds_limit: '' - context_mapping: - entity: layout_builder.entity - additional: { } - weight: 1 - enabled: true - allow_custom: false -_core: - default_config_hash: ehwq1DmA62lLdGErJNMTRhmHOSau7saUQWGHqnpn72k -id: node.hs_publications.default -targetEntityType: node -bundle: hs_publications -mode: default -content: - links: - weight: 100 - region: content - settings: { } - third_party_settings: { } -hidden: - body: true - field_hs_publication_author: true - field_hs_publication_documents: true - field_hs_publication_image: true - field_hs_publication_link: true - field_hs_publication_publisher: true - field_hs_publication_type: true - field_hs_publication_year: true diff --git a/docroot/modules/humsci/hs_publications/modules/hs_publications_display/config/install/core.entity_view_display.node.hs_publications.hs_vertical_card.yml b/docroot/modules/humsci/hs_publications/modules/hs_publications_display/config/install/core.entity_view_display.node.hs_publications.hs_vertical_card.yml deleted file mode 100644 index 1a6a118a48..0000000000 --- a/docroot/modules/humsci/hs_publications/modules/hs_publications_display/config/install/core.entity_view_display.node.hs_publications.hs_vertical_card.yml +++ /dev/null @@ -1,101 +0,0 @@ -uuid: 1b1e3c62-6830-4692-8ae1-e41ef8315560 -langcode: en -status: true -dependencies: - config: - - core.entity_view_mode.node.hs_vertical_card - - field.field.node.hs_publications.body - - field.field.node.hs_publications.field_hs_publication_author - - field.field.node.hs_publications.field_hs_publication_documents - - field.field.node.hs_publications.field_hs_publication_image - - field.field.node.hs_publications.field_hs_publication_link - - field.field.node.hs_publications.field_hs_publication_publisher - - field.field.node.hs_publications.field_hs_publication_type - - field.field.node.hs_publications.field_hs_publication_year - - node.type.hs_publications - module: - - datetime - - ds - - field_formatter_class - - hs_field_helpers - - layout_builder - - layout_discovery - - stanford_media - - user -third_party_settings: - ds: - layout: - id: pattern_vertical_card - library: null - disable_css: false - entity_classes: all_classes - settings: - pattern: - field_templates: default - regions: - image: - - field_hs_publication_image - description: - - field_hs_publication_type - - node_title - - field_hs_publication_author - - field_hs_publication_year - fields: - node_title: - plugin_id: node_title - weight: 2 - label: hidden - formatter: default - settings: - link: true - wrapper: h2 - class: '' -id: node.hs_publications.hs_vertical_card -targetEntityType: node -bundle: hs_publications -mode: hs_vertical_card -content: - field_hs_publication_author: - type: entity_reference_entity_view - weight: 3 - region: description - label: hidden - settings: - link: false - view_mode: default - third_party_settings: { } - field_hs_publication_image: - type: media_image_formatter - weight: 0 - region: image - label: hidden - settings: - view_mode: default - image_style: hs_vertical_rectangle_360x430 - link: '1' - third_party_settings: { } - field_hs_publication_type: - type: entity_reference_label - weight: 1 - region: description - label: hidden - settings: - link: false - third_party_settings: - field_formatter_class: - class: accent-dash - field_hs_publication_year: - type: datetime_custom - weight: 4 - region: description - label: hidden - settings: - timezone_override: '' - date_format: 'Y' - third_party_settings: { } -hidden: - body: true - field_hs_publication_documents: true - field_hs_publication_link: true - field_hs_publication_publisher: true - links: true diff --git a/docroot/modules/humsci/hs_publications/modules/hs_publications_display/config/optional/core.entity_form_display.publications_collections.publication_author.default.yml b/docroot/modules/humsci/hs_publications/modules/hs_publications_display/config/optional/core.entity_form_display.publications_collections.publication_author.default.yml deleted file mode 100644 index 4b09445762..0000000000 --- a/docroot/modules/humsci/hs_publications/modules/hs_publications_display/config/optional/core.entity_form_display.publications_collections.publication_author.default.yml +++ /dev/null @@ -1,33 +0,0 @@ -uuid: 2851983c-1ecd-4e17-b03e-76b0edbcdc1d -langcode: en -status: true -dependencies: - config: - - eck.eck_type.publications_collections.publication_author - - field.field.publications_collections.publication_author.field_hs_publication_author -id: publications_collections.publication_author.default -targetEntityType: publications_collections -bundle: publication_author -mode: default -content: - field_hs_publication_author: - type: options_select - weight: 1 - region: content - settings: { } - third_party_settings: { } - field_hs_publication_author_link: - weight: 3 - settings: { } - third_party_settings: { } - type: options_select - region: content - title: - type: string_textfield - weight: 0 - region: content - settings: - size: 60 - placeholder: '' - third_party_settings: { } -hidden: { } diff --git a/docroot/modules/humsci/hs_publications/modules/hs_publications_display/config/optional/core.entity_view_display.publications_collections.publication_author.default.yml b/docroot/modules/humsci/hs_publications/modules/hs_publications_display/config/optional/core.entity_view_display.publications_collections.publication_author.default.yml deleted file mode 100644 index 7c8dce821b..0000000000 --- a/docroot/modules/humsci/hs_publications/modules/hs_publications_display/config/optional/core.entity_view_display.publications_collections.publication_author.default.yml +++ /dev/null @@ -1,35 +0,0 @@ -uuid: 6b61b4ea-8881-49e2-9675-a5686097906e -langcode: en -status: true -dependencies: - config: - - eck.eck_type.publications_collections.publication_author - - field.field.publications_collections.publication_author.field_hs_publication_author - module: - - field_formatter_class - - layout_builder - - layout_discovery -id: publications_collections.publication_author.default -targetEntityType: publications_collections -bundle: publication_author -mode: default -content: - field_hs_publication_author: - weight: 1 - label: hidden - settings: - link: true - third_party_settings: - field_formatter_class: - class: '' - type: entity_reference_label - region: content - title: - type: string - weight: 0 - region: content - label: hidden - settings: - link_to_entity: false - third_party_settings: { } -hidden: { } From aa2d67b80d9d93d01727d4fe2bb308a551b32411 Mon Sep 17 00:00:00 2001 From: joegl <20383-joegl@users.noreply.drupalcode.org> Date: Tue, 4 Jun 2024 16:43:07 -0500 Subject: [PATCH 06/15] dumped hs_events. --- .../humsci/hs_events/config/install/.htaccess | 24 - ...e_field_override.node.hs_event.promote.yml | 23 - .../eck.eck_entity_type.event_collections.yml | 11 - ...eck.eck_type.event_collections.speaker.yml | 10 - .../field.field.node.hs_event.body.yml | 23 - ...node.hs_event.field_hs_event_admission.yml | 26 - ....node.hs_event.field_hs_event_audience.yml | 29 - ....node.hs_event.field_hs_event_category.yml | 29 - ....hs_event.field_hs_event_contact_email.yml | 20 - ....hs_event.field_hs_event_contact_phone.yml | 22 - ...ield.node.hs_event.field_hs_event_date.yml | 27 - ...eld.node.hs_event.field_hs_event_image.yml | 29 - ...ield.node.hs_event.field_hs_event_link.yml | 24 - ....node.hs_event.field_hs_event_location.yml | 20 - ....node.hs_event.field_hs_event_map_link.yml | 24 - ...ld.node.hs_event.field_hs_event_series.yml | 30 - ...d.node.hs_event.field_hs_event_speaker.yml | 29 - ...d.node.hs_event.field_hs_event_sponsor.yml | 20 - ...ld.node.hs_event.field_hs_event_status.yml | 30 - ...ield.node.hs_event.field_hs_event_type.yml | 30 - ...eld.node.hs_event.field_hs_event_video.yml | 29 - ....storage.node.field_hs_event_admission.yml | 20 - ...d.storage.node.field_hs_event_audience.yml | 21 - ...d.storage.node.field_hs_event_category.yml | 21 - ...rage.node.field_hs_event_contact_email.yml | 19 - ...rage.node.field_hs_event_contact_phone.yml | 20 - ...field.storage.node.field_hs_event_date.yml | 21 - ...ield.storage.node.field_hs_event_image.yml | 21 - ...field.storage.node.field_hs_event_link.yml | 20 - ...d.storage.node.field_hs_event_location.yml | 20 - ...d.storage.node.field_hs_event_map_link.yml | 20 - ...eld.storage.node.field_hs_event_series.yml | 20 - ...ld.storage.node.field_hs_event_speaker.yml | 20 - ...ld.storage.node.field_hs_event_sponsor.yml | 20 - ...eld.storage.node.field_hs_event_status.yml | 21 - ...field.storage.node.field_hs_event_type.yml | 21 - ...ield.storage.node.field_hs_event_video.yml | 21 - .../config/install/node.type.hs_event.yml | 18 - .../install/pathauto.pattern.hs_events.yml | 21 - .../taxonomy.vocabulary.hs_event_audience.yml | 10 - .../taxonomy.vocabulary.hs_event_category.yml | 10 - .../taxonomy.vocabulary.hs_event_status.yml | 10 - .../taxonomy.vocabulary.hs_event_type.yml | 10 - .../config/install/views.view.hs_events.yml | 1125 ----------------- 44 files changed, 2039 deletions(-) delete mode 100644 docroot/modules/humsci/hs_events/config/install/.htaccess delete mode 100644 docroot/modules/humsci/hs_events/config/install/core.base_field_override.node.hs_event.promote.yml delete mode 100644 docroot/modules/humsci/hs_events/config/install/eck.eck_entity_type.event_collections.yml delete mode 100644 docroot/modules/humsci/hs_events/config/install/eck.eck_type.event_collections.speaker.yml delete mode 100644 docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.body.yml delete mode 100644 docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_admission.yml delete mode 100644 docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_audience.yml delete mode 100644 docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_category.yml delete mode 100644 docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_contact_email.yml delete mode 100644 docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_contact_phone.yml delete mode 100644 docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_date.yml delete mode 100644 docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_image.yml delete mode 100644 docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_link.yml delete mode 100644 docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_location.yml delete mode 100644 docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_map_link.yml delete mode 100644 docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_series.yml delete mode 100644 docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_speaker.yml delete mode 100644 docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_sponsor.yml delete mode 100644 docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_status.yml delete mode 100644 docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_type.yml delete mode 100644 docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_video.yml delete mode 100644 docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_admission.yml delete mode 100644 docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_audience.yml delete mode 100644 docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_category.yml delete mode 100644 docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_contact_email.yml delete mode 100644 docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_contact_phone.yml delete mode 100644 docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_date.yml delete mode 100644 docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_image.yml delete mode 100644 docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_link.yml delete mode 100644 docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_location.yml delete mode 100644 docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_map_link.yml delete mode 100644 docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_series.yml delete mode 100644 docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_speaker.yml delete mode 100644 docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_sponsor.yml delete mode 100644 docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_status.yml delete mode 100644 docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_type.yml delete mode 100644 docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_video.yml delete mode 100644 docroot/modules/humsci/hs_events/config/install/node.type.hs_event.yml delete mode 100644 docroot/modules/humsci/hs_events/config/install/pathauto.pattern.hs_events.yml delete mode 100644 docroot/modules/humsci/hs_events/config/install/taxonomy.vocabulary.hs_event_audience.yml delete mode 100644 docroot/modules/humsci/hs_events/config/install/taxonomy.vocabulary.hs_event_category.yml delete mode 100644 docroot/modules/humsci/hs_events/config/install/taxonomy.vocabulary.hs_event_status.yml delete mode 100644 docroot/modules/humsci/hs_events/config/install/taxonomy.vocabulary.hs_event_type.yml delete mode 100644 docroot/modules/humsci/hs_events/config/install/views.view.hs_events.yml diff --git a/docroot/modules/humsci/hs_events/config/install/.htaccess b/docroot/modules/humsci/hs_events/config/install/.htaccess deleted file mode 100644 index 0e4a69afd2..0000000000 --- a/docroot/modules/humsci/hs_events/config/install/.htaccess +++ /dev/null @@ -1,24 +0,0 @@ -# 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 - \ No newline at end of file diff --git a/docroot/modules/humsci/hs_events/config/install/core.base_field_override.node.hs_event.promote.yml b/docroot/modules/humsci/hs_events/config/install/core.base_field_override.node.hs_event.promote.yml deleted file mode 100644 index bcc75a4846..0000000000 --- a/docroot/modules/humsci/hs_events/config/install/core.base_field_override.node.hs_event.promote.yml +++ /dev/null @@ -1,23 +0,0 @@ -langcode: en -status: true -dependencies: - config: - - node.type.hs_event -_core: - default_config_hash: APgbjC1ePX6t-fZWXg6zSzSetWhZdRDb5y_V9msqvpg -id: node.hs_event.promote -field_name: promote -entity_type: node -bundle: hs_event -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/docroot/modules/humsci/hs_events/config/install/eck.eck_entity_type.event_collections.yml b/docroot/modules/humsci/hs_events/config/install/eck.eck_entity_type.event_collections.yml deleted file mode 100644 index 1f1a01bd6f..0000000000 --- a/docroot/modules/humsci/hs_events/config/install/eck.eck_entity_type.event_collections.yml +++ /dev/null @@ -1,11 +0,0 @@ -langcode: en -status: true -dependencies: { } -_core: - default_config_hash: alpO-KfdmucorAsjGAyjOWW4-8QKpVlvtMbkJaSym7Y -id: event_collections -label: 'Event Collections' -created: false -changed: false -uid: false -title: true diff --git a/docroot/modules/humsci/hs_events/config/install/eck.eck_type.event_collections.speaker.yml b/docroot/modules/humsci/hs_events/config/install/eck.eck_type.event_collections.speaker.yml deleted file mode 100644 index b54f0cd1d6..0000000000 --- a/docroot/modules/humsci/hs_events/config/install/eck.eck_type.event_collections.speaker.yml +++ /dev/null @@ -1,10 +0,0 @@ -langcode: en -status: true -dependencies: - config: - - eck.eck_entity_type.event_collections -_core: - default_config_hash: OSVogGYGckUu_H15-sGsEM8hbxIhPkAaq3KWmJwbqfM -name: Speaker -type: speaker -description: '' diff --git a/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.body.yml b/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.body.yml deleted file mode 100644 index 748718d87d..0000000000 --- a/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.body.yml +++ /dev/null @@ -1,23 +0,0 @@ -langcode: en -status: true -dependencies: - config: - - field.storage.node.body - - node.type.hs_event - module: - - text -_core: - default_config_hash: weGG4AS2tlJ7sy8ae5nhESz3o376BoGOJOkYkjhvzPw -id: node.hs_event.body -field_name: body -entity_type: node -bundle: hs_event -label: Body -description: '' -required: false -translatable: true -default_value: { } -default_value_callback: '' -settings: - display_summary: true -field_type: text_with_summary diff --git a/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_admission.yml b/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_admission.yml deleted file mode 100644 index 9d207764ac..0000000000 --- a/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_admission.yml +++ /dev/null @@ -1,26 +0,0 @@ -langcode: en -status: true -dependencies: - config: - - field.storage.node.field_hs_event_admission - - node.type.hs_event - module: - - allowed_formats - - text -third_party_settings: - allowed_formats: - plain_text: plain_text -_core: - default_config_hash: OsXGBAd_oCkXVZVqBY7uLDTO9DEu4MzNCyrgdAW8dE8 -id: node.hs_event.field_hs_event_admission -field_name: field_hs_event_admission -entity_type: node -bundle: hs_event -label: 'Admission Information' -description: '' -required: false -translatable: false -default_value: { } -default_value_callback: '' -settings: { } -field_type: text_long diff --git a/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_audience.yml b/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_audience.yml deleted file mode 100644 index 68b3a6fe08..0000000000 --- a/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_audience.yml +++ /dev/null @@ -1,29 +0,0 @@ -langcode: en -status: true -dependencies: - config: - - field.storage.node.field_hs_event_audience - - node.type.hs_event - - taxonomy.vocabulary.hs_event_audience -_core: - default_config_hash: 08NzAzU9GFcwC5KCTXbgs7RQYW9auenxYjV_UnyzFbA -id: node.hs_event.field_hs_event_audience -field_name: field_hs_event_audience -entity_type: node -bundle: hs_event -label: Audience -description: '' -required: false -translatable: false -default_value: { } -default_value_callback: '' -settings: - handler: 'default:taxonomy_term' - handler_settings: - target_bundles: - hs_event_audience: hs_event_audience - sort: - field: _none - auto_create: true - auto_create_bundle: '' -field_type: entity_reference diff --git a/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_category.yml b/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_category.yml deleted file mode 100644 index 07cbeab503..0000000000 --- a/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_category.yml +++ /dev/null @@ -1,29 +0,0 @@ -langcode: en -status: true -dependencies: - config: - - field.storage.node.field_hs_event_category - - node.type.hs_event - - taxonomy.vocabulary.hs_event_category -_core: - default_config_hash: uJIHKuetZ-gelUhrgjtrXSm-admYJ1E281nvZhD2jVA -id: node.hs_event.field_hs_event_category -field_name: field_hs_event_category -entity_type: node -bundle: hs_event -label: Category -description: '' -required: false -translatable: false -default_value: { } -default_value_callback: '' -settings: - handler: 'default:taxonomy_term' - handler_settings: - target_bundles: - hs_event_category: hs_event_category - sort: - field: _none - auto_create: true - auto_create_bundle: '' -field_type: entity_reference diff --git a/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_contact_email.yml b/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_contact_email.yml deleted file mode 100644 index 8f8f1dd6eb..0000000000 --- a/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_contact_email.yml +++ /dev/null @@ -1,20 +0,0 @@ -langcode: en -status: true -dependencies: - config: - - field.storage.node.field_hs_event_contact_email - - node.type.hs_event -_core: - default_config_hash: U-4uU9u441gP69vofeokosPIFN0lMlq9i-zXN9hKa1w -id: node.hs_event.field_hs_event_contact_email -field_name: field_hs_event_contact_email -entity_type: node -bundle: hs_event -label: 'Contact Email' -description: '' -required: false -translatable: false -default_value: { } -default_value_callback: '' -settings: { } -field_type: email diff --git a/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_contact_phone.yml b/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_contact_phone.yml deleted file mode 100644 index 30ee6a37c4..0000000000 --- a/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_contact_phone.yml +++ /dev/null @@ -1,22 +0,0 @@ -langcode: en -status: true -dependencies: - config: - - field.storage.node.field_hs_event_contact_phone - - node.type.hs_event - module: - - telephone -_core: - default_config_hash: VzBiBAEnRSqoyK9IhYZ6Up_zUIiwo-Eo8JZRqMCaXTw -id: node.hs_event.field_hs_event_contact_phone -field_name: field_hs_event_contact_phone -entity_type: node -bundle: hs_event -label: 'Contact Phone Number' -description: '' -required: false -translatable: false -default_value: { } -default_value_callback: '' -settings: { } -field_type: telephone diff --git a/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_date.yml b/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_date.yml deleted file mode 100644 index 22e06ee7d1..0000000000 --- a/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_date.yml +++ /dev/null @@ -1,27 +0,0 @@ -langcode: en -status: true -dependencies: - config: - - field.storage.node.field_hs_event_date - - node.type.hs_event - module: - - datetime_range -_core: - default_config_hash: THMFluROCyw8Oy51lNA7c32YudL3_-lVExx0EYtYIuA -id: node.hs_event.field_hs_event_date -field_name: field_hs_event_date -entity_type: node -bundle: hs_event -label: Date -description: '' -required: false -translatable: false -default_value: - - - default_date_type: now - default_date: now - default_end_date_type: '' - default_end_date: '' -default_value_callback: '' -settings: { } -field_type: daterange diff --git a/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_image.yml b/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_image.yml deleted file mode 100644 index d77e1cf437..0000000000 --- a/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_image.yml +++ /dev/null @@ -1,29 +0,0 @@ -langcode: en -status: true -dependencies: - config: - - field.storage.node.field_hs_event_image - - media.type.image - - node.type.hs_event -_core: - default_config_hash: Xi3G0oPgFXUFsAT-slXLLBjwHv1IRJfzkHMBvGI7yMk -id: node.hs_event.field_hs_event_image -field_name: field_hs_event_image -entity_type: node -bundle: hs_event -label: Image -description: '' -required: false -translatable: true -default_value: { } -default_value_callback: '' -settings: - handler: 'default:media' - handler_settings: - target_bundles: - image: image - sort: - field: _none - auto_create: false - auto_create_bundle: '' -field_type: entity_reference diff --git a/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_link.yml b/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_link.yml deleted file mode 100644 index 229d3e1a16..0000000000 --- a/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_link.yml +++ /dev/null @@ -1,24 +0,0 @@ -langcode: en -status: true -dependencies: - config: - - field.storage.node.field_hs_event_link - - node.type.hs_event - module: - - link -_core: - default_config_hash: reUNFaZWSR8oQ3kv3gl1ha9kpuJf1r4bpk4-ZB4Hp1U -id: node.hs_event.field_hs_event_link -field_name: field_hs_event_link -entity_type: node -bundle: hs_event -label: 'Event Link' -description: '' -required: false -translatable: false -default_value: { } -default_value_callback: '' -settings: - link_type: 17 - title: 1 -field_type: link diff --git a/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_location.yml b/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_location.yml deleted file mode 100644 index 45631696d2..0000000000 --- a/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_location.yml +++ /dev/null @@ -1,20 +0,0 @@ -langcode: en -status: true -dependencies: - config: - - field.storage.node.field_hs_event_location - - node.type.hs_event -_core: - default_config_hash: nUA3VNhvTsp8uf-wpGuYN2wJY30jgwEACYl7hozoftM -id: node.hs_event.field_hs_event_location -field_name: field_hs_event_location -entity_type: node -bundle: hs_event -label: Location -description: '' -required: false -translatable: false -default_value: { } -default_value_callback: '' -settings: { } -field_type: string_long diff --git a/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_map_link.yml b/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_map_link.yml deleted file mode 100644 index e256365b9b..0000000000 --- a/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_map_link.yml +++ /dev/null @@ -1,24 +0,0 @@ -langcode: en -status: true -dependencies: - config: - - field.storage.node.field_hs_event_map_link - - node.type.hs_event - module: - - link -_core: - default_config_hash: KAr_yv3qd1o5hbHsE0ckfvyggezeRJSJq9fq2EUN5jk -id: node.hs_event.field_hs_event_map_link -field_name: field_hs_event_map_link -entity_type: node -bundle: hs_event -label: 'Map Link' -description: '' -required: false -translatable: false -default_value: { } -default_value_callback: '' -settings: - link_type: 17 - title: 1 -field_type: link diff --git a/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_series.yml b/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_series.yml deleted file mode 100644 index 8c427296cb..0000000000 --- a/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_series.yml +++ /dev/null @@ -1,30 +0,0 @@ -langcode: en -status: true -dependencies: - config: - - field.storage.node.field_hs_event_series - - node.type.hs_event - - node.type.hs_event_series -_core: - default_config_hash: Fv1kwJLz1pnmVOMwzwHbv8UsbF6SuWCXD7Cz6wUXnlw -id: node.hs_event.field_hs_event_series -field_name: field_hs_event_series -entity_type: node -bundle: hs_event -label: 'Event Series' -description: '' -required: false -translatable: false -default_value: { } -default_value_callback: '' -settings: - handler: 'default:node' - handler_settings: - target_bundles: - hs_event_series: hs_event_series - sort: - field: title - direction: ASC - auto_create: false - auto_create_bundle: '' -field_type: entity_reference diff --git a/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_speaker.yml b/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_speaker.yml deleted file mode 100644 index 6e5f5647da..0000000000 --- a/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_speaker.yml +++ /dev/null @@ -1,29 +0,0 @@ -langcode: en -status: true -dependencies: - config: - - eck.eck_type.event_collections.speaker - - field.storage.node.field_hs_event_speaker - - node.type.hs_event -_core: - default_config_hash: 4xGrQJ4s8WhZhKnySZZI6nnswVgZmhEI21ab1EBGk58 -id: node.hs_event.field_hs_event_speaker -field_name: field_hs_event_speaker -entity_type: node -bundle: hs_event -label: Speaker -description: '' -required: false -translatable: false -default_value: { } -default_value_callback: '' -settings: - handler: 'default:event_collections' - handler_settings: - target_bundles: - speaker: speaker - sort: - field: _none - auto_create: 0 - auto_create_bundle: '' -field_type: bricks diff --git a/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_sponsor.yml b/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_sponsor.yml deleted file mode 100644 index 7ff639bbc3..0000000000 --- a/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_sponsor.yml +++ /dev/null @@ -1,20 +0,0 @@ -langcode: en -status: true -dependencies: - config: - - field.storage.node.field_hs_event_sponsor - - node.type.hs_event -_core: - default_config_hash: eltVPn4YYn97hN8GaisB1VTdLQIf3YME9LfxVVdZKn0 -id: node.hs_event.field_hs_event_sponsor -field_name: field_hs_event_sponsor -entity_type: node -bundle: hs_event -label: 'Event Sponsor' -description: '' -required: false -translatable: false -default_value: { } -default_value_callback: '' -settings: { } -field_type: string_long diff --git a/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_status.yml b/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_status.yml deleted file mode 100644 index d81dbc75b1..0000000000 --- a/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_status.yml +++ /dev/null @@ -1,30 +0,0 @@ -langcode: en -status: true -dependencies: - config: - - field.storage.node.field_hs_event_status - - node.type.hs_event - - taxonomy.vocabulary.hs_event_status -_core: - default_config_hash: qUWFx4bzUfzl714O4z3Xxd5jZv48299_eZEmKV7B4J4 -id: node.hs_event.field_hs_event_status -field_name: field_hs_event_status -entity_type: node -bundle: hs_event -label: Status -description: '' -required: false -translatable: false -default_value: { } -default_value_callback: '' -settings: - handler: 'default:taxonomy_term' - handler_settings: - target_bundles: - hs_event_status: hs_event_status - sort: - field: name - direction: asc - auto_create: false - auto_create_bundle: '' -field_type: entity_reference diff --git a/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_type.yml b/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_type.yml deleted file mode 100644 index dbd9c69237..0000000000 --- a/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_type.yml +++ /dev/null @@ -1,30 +0,0 @@ -langcode: en -status: true -dependencies: - config: - - field.storage.node.field_hs_event_type - - node.type.hs_event - - taxonomy.vocabulary.hs_event_type -_core: - default_config_hash: iCxZa5PU2zyRarWhp_fPz3OY-x1UPYHA4tMNsvG-Kik -id: node.hs_event.field_hs_event_type -field_name: field_hs_event_type -entity_type: node -bundle: hs_event -label: 'Event Type' -description: 'Select which type of event this is.' -required: false -translatable: false -default_value: { } -default_value_callback: '' -settings: - handler: 'default:taxonomy_term' - handler_settings: - target_bundles: - hs_event_type: hs_event_type - sort: - field: name - direction: asc - auto_create: true - auto_create_bundle: '' -field_type: entity_reference diff --git a/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_video.yml b/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_video.yml deleted file mode 100644 index b18989deaf..0000000000 --- a/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_video.yml +++ /dev/null @@ -1,29 +0,0 @@ -langcode: en -status: true -dependencies: - config: - - field.storage.node.field_hs_event_video - - media.type.video - - node.type.hs_event -_core: - default_config_hash: h0-JqHqPKmmEH1F8rfAtXbattiTnV62CBMZLq1ZNEcA -id: node.hs_event.field_hs_event_video -field_name: field_hs_event_video -entity_type: node -bundle: hs_event -label: 'Event Video' -description: '' -required: false -translatable: true -default_value: { } -default_value_callback: '' -settings: - handler: 'default:media' - handler_settings: - target_bundles: - video: video - sort: - field: _none - auto_create: false - auto_create_bundle: '' -field_type: entity_reference diff --git a/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_admission.yml b/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_admission.yml deleted file mode 100644 index f998ae1566..0000000000 --- a/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_admission.yml +++ /dev/null @@ -1,20 +0,0 @@ -langcode: en -status: true -dependencies: - module: - - node - - text -_core: - default_config_hash: GvUf9pWf6DdxwkyOocTCrfeP6sZpP6bLtoY5lSNjK5E -id: node.field_hs_event_admission -field_name: field_hs_event_admission -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/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_audience.yml b/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_audience.yml deleted file mode 100644 index fea1bc15c2..0000000000 --- a/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_audience.yml +++ /dev/null @@ -1,21 +0,0 @@ -langcode: en -status: true -dependencies: - module: - - node - - taxonomy -_core: - default_config_hash: mXjw2bUdcQoMWdPxdGUMiroW9UGAG22Cyw9ICX-7e9E -id: node.field_hs_event_audience -field_name: field_hs_event_audience -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/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_category.yml b/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_category.yml deleted file mode 100644 index 674200b86a..0000000000 --- a/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_category.yml +++ /dev/null @@ -1,21 +0,0 @@ -langcode: en -status: true -dependencies: - module: - - node - - taxonomy -_core: - default_config_hash: 2SbsJEGfbq-aDUM8sx8JbbupJAlqIhhoqqwSEdLcD48 -id: node.field_hs_event_category -field_name: field_hs_event_category -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/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_contact_email.yml b/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_contact_email.yml deleted file mode 100644 index dcc8346ed4..0000000000 --- a/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_contact_email.yml +++ /dev/null @@ -1,19 +0,0 @@ -langcode: en -status: true -dependencies: - module: - - node -_core: - default_config_hash: H4S4LVhkrp9OFOAtWJjtvDwd_PZQmbFoPmLMSuJUc1Q -id: node.field_hs_event_contact_email -field_name: field_hs_event_contact_email -entity_type: node -type: email -settings: { } -module: core -locked: false -cardinality: 1 -translatable: true -indexes: { } -persist_with_no_fields: false -custom_storage: false diff --git a/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_contact_phone.yml b/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_contact_phone.yml deleted file mode 100644 index 5b92eba2ed..0000000000 --- a/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_contact_phone.yml +++ /dev/null @@ -1,20 +0,0 @@ -langcode: en -status: true -dependencies: - module: - - node - - telephone -_core: - default_config_hash: '-5qwpdcpsr896G87dFV1uxkHbjwC4puoz1T4gBBoTdM' -id: node.field_hs_event_contact_phone -field_name: field_hs_event_contact_phone -entity_type: node -type: telephone -settings: { } -module: telephone -locked: false -cardinality: 1 -translatable: true -indexes: { } -persist_with_no_fields: false -custom_storage: false diff --git a/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_date.yml b/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_date.yml deleted file mode 100644 index b8219f8e37..0000000000 --- a/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_date.yml +++ /dev/null @@ -1,21 +0,0 @@ -langcode: en -status: true -dependencies: - module: - - datetime_range - - node -_core: - default_config_hash: '-bk7vQ_5H-X_n5dNirTU91F-6AtFClESMxNnhV13J1k' -id: node.field_hs_event_date -field_name: field_hs_event_date -entity_type: node -type: daterange -settings: - datetime_type: datetime -module: datetime_range -locked: false -cardinality: 1 -translatable: true -indexes: { } -persist_with_no_fields: false -custom_storage: false diff --git a/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_image.yml b/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_image.yml deleted file mode 100644 index 306079aa03..0000000000 --- a/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_image.yml +++ /dev/null @@ -1,21 +0,0 @@ -langcode: en -status: true -dependencies: - module: - - media - - node -_core: - default_config_hash: 4X6o0SQ3The0TzB8EpldNID_xJH5ou4ID_43ueNYP7s -id: node.field_hs_event_image -field_name: field_hs_event_image -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/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_link.yml b/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_link.yml deleted file mode 100644 index a4a6303be1..0000000000 --- a/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_link.yml +++ /dev/null @@ -1,20 +0,0 @@ -langcode: en -status: true -dependencies: - module: - - link - - node -_core: - default_config_hash: 8EiTBkWcCniuJmxtKHWk3JJJataFJCNpJCWtKa1z7b8 -id: node.field_hs_event_link -field_name: field_hs_event_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/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_location.yml b/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_location.yml deleted file mode 100644 index 5bcfe41d56..0000000000 --- a/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_location.yml +++ /dev/null @@ -1,20 +0,0 @@ -langcode: en -status: true -dependencies: - module: - - node -_core: - default_config_hash: iB3KuCe9UluW4er3vQNNM5D6AX2m2tTB5Km2OjVvwDw -id: node.field_hs_event_location -field_name: field_hs_event_location -entity_type: node -type: string_long -settings: - case_sensitive: false -module: core -locked: false -cardinality: 1 -translatable: true -indexes: { } -persist_with_no_fields: false -custom_storage: false diff --git a/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_map_link.yml b/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_map_link.yml deleted file mode 100644 index 6364835fd1..0000000000 --- a/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_map_link.yml +++ /dev/null @@ -1,20 +0,0 @@ -langcode: en -status: true -dependencies: - module: - - link - - node -_core: - default_config_hash: rV_SCOfPR7C1yfSaWSAb__-lTRmor1MXKBOQzde5LkA -id: node.field_hs_event_map_link -field_name: field_hs_event_map_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/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_series.yml b/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_series.yml deleted file mode 100644 index eba8c94025..0000000000 --- a/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_series.yml +++ /dev/null @@ -1,20 +0,0 @@ -langcode: en -status: true -dependencies: - module: - - node -_core: - default_config_hash: RfdV_xyOISKmTTQCsMAjnxCWEgp4l16ZjR_OJR4UfYo -id: node.field_hs_event_series -field_name: field_hs_event_series -entity_type: node -type: entity_reference -settings: - target_type: node -module: core -locked: false -cardinality: 1 -translatable: true -indexes: { } -persist_with_no_fields: false -custom_storage: false diff --git a/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_speaker.yml b/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_speaker.yml deleted file mode 100644 index f9d721fede..0000000000 --- a/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_speaker.yml +++ /dev/null @@ -1,20 +0,0 @@ -langcode: en -status: true -dependencies: - - eck - - node -_core: - default_config_hash: 8Uhp2twGSrzMJMCte4pOAKL9wkyixWMK727IQKVDCII -id: node.field_hs_event_speaker -field_name: field_hs_event_speaker -entity_type: node -type: bricks -settings: - target_type: event_collections -module: bricks -locked: false -cardinality: -1 -translatable: true -indexes: { } -persist_with_no_fields: false -custom_storage: false diff --git a/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_sponsor.yml b/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_sponsor.yml deleted file mode 100644 index 95a9ca5ff4..0000000000 --- a/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_sponsor.yml +++ /dev/null @@ -1,20 +0,0 @@ -langcode: en -status: true -dependencies: - module: - - node -_core: - default_config_hash: 6rULY3c8kXDC7uiyP-VMigNBLFDCONe2mKfAYDs2Ou4 -id: node.field_hs_event_sponsor -field_name: field_hs_event_sponsor -entity_type: node -type: string_long -settings: - case_sensitive: false -module: core -locked: false -cardinality: 1 -translatable: true -indexes: { } -persist_with_no_fields: false -custom_storage: false diff --git a/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_status.yml b/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_status.yml deleted file mode 100644 index 086c598be3..0000000000 --- a/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_status.yml +++ /dev/null @@ -1,21 +0,0 @@ -langcode: en -status: true -dependencies: - module: - - node - - taxonomy -_core: - default_config_hash: 8rf_JMytNG24QRXBSD2UgWZAyHxCPFc4VLN9Mcl47BU -id: node.field_hs_event_status -field_name: field_hs_event_status -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/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_type.yml b/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_type.yml deleted file mode 100644 index b3e312c6c1..0000000000 --- a/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_type.yml +++ /dev/null @@ -1,21 +0,0 @@ -langcode: en -status: true -dependencies: - module: - - node - - taxonomy -_core: - default_config_hash: Uvebwd5grGrDvWBJftww8nJlAcwlHoD1hEs1w66jW8k -id: node.field_hs_event_type -field_name: field_hs_event_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/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_video.yml b/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_video.yml deleted file mode 100644 index a3045d1987..0000000000 --- a/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_video.yml +++ /dev/null @@ -1,21 +0,0 @@ -langcode: en -status: true -dependencies: - module: - - media - - node -_core: - default_config_hash: UJdqPAM-CNvhAwpATrJ1SKFg9rpThd7ztYJnuFgr_bY -id: node.field_hs_event_video -field_name: field_hs_event_video -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/docroot/modules/humsci/hs_events/config/install/node.type.hs_event.yml b/docroot/modules/humsci/hs_events/config/install/node.type.hs_event.yml deleted file mode 100644 index 1e63bca71a..0000000000 --- a/docroot/modules/humsci/hs_events/config/install/node.type.hs_event.yml +++ /dev/null @@ -1,18 +0,0 @@ -langcode: en -status: true -dependencies: - module: - - menu_ui -third_party_settings: - menu_ui: - available_menus: { } - parent: '' -_core: - default_config_hash: _RqEpKFtMIL9phINGaFF5UMPY919G_-TEZEbMFHaBII -name: Event -type: hs_event -description: 'An event pulled in from events-legacy.stanford.edu.' -help: '' -new_revision: true -preview_mode: 1 -display_submitted: false diff --git a/docroot/modules/humsci/hs_events/config/install/pathauto.pattern.hs_events.yml b/docroot/modules/humsci/hs_events/config/install/pathauto.pattern.hs_events.yml deleted file mode 100644 index 2e74560a3a..0000000000 --- a/docroot/modules/humsci/hs_events/config/install/pathauto.pattern.hs_events.yml +++ /dev/null @@ -1,21 +0,0 @@ -langcode: en -status: true -dependencies: - module: - - node -id: hs_events -label: 'Events Content' -type: 'canonical_entities:node' -pattern: 'events/[node:title]' -selection_criteria: - 84209e61-9c8c-4b2e-838f-d88f4e9160d0: - id: node_type - bundles: - hs_event: hs_event - negate: false - context_mapping: - node: node - uuid: 84209e61-9c8c-4b2e-838f-d88f4e9160d0 -selection_logic: and -weight: -5 -relationships: { } diff --git a/docroot/modules/humsci/hs_events/config/install/taxonomy.vocabulary.hs_event_audience.yml b/docroot/modules/humsci/hs_events/config/install/taxonomy.vocabulary.hs_event_audience.yml deleted file mode 100644 index 26ff3720dc..0000000000 --- a/docroot/modules/humsci/hs_events/config/install/taxonomy.vocabulary.hs_event_audience.yml +++ /dev/null @@ -1,10 +0,0 @@ -langcode: en -status: true -dependencies: { } -_core: - default_config_hash: CxqCkQSx5gVBQrwxdjpcfi07Y7w_eEDcuZqufJJLanw -name: 'Event Audience' -vid: hs_event_audience -description: '' -hierarchy: 0 -weight: 0 diff --git a/docroot/modules/humsci/hs_events/config/install/taxonomy.vocabulary.hs_event_category.yml b/docroot/modules/humsci/hs_events/config/install/taxonomy.vocabulary.hs_event_category.yml deleted file mode 100644 index d99f69a0d4..0000000000 --- a/docroot/modules/humsci/hs_events/config/install/taxonomy.vocabulary.hs_event_category.yml +++ /dev/null @@ -1,10 +0,0 @@ -langcode: en -status: true -dependencies: { } -_core: - default_config_hash: J7WT1F4emhKazTQe_1LgVS2N4Nl8N57T0kD13FYz2BA -name: 'Event Category' -vid: hs_event_category -description: '' -hierarchy: 0 -weight: 0 diff --git a/docroot/modules/humsci/hs_events/config/install/taxonomy.vocabulary.hs_event_status.yml b/docroot/modules/humsci/hs_events/config/install/taxonomy.vocabulary.hs_event_status.yml deleted file mode 100644 index b97e01ab1f..0000000000 --- a/docroot/modules/humsci/hs_events/config/install/taxonomy.vocabulary.hs_event_status.yml +++ /dev/null @@ -1,10 +0,0 @@ -langcode: en -status: true -dependencies: { } -_core: - default_config_hash: 5svXZ9e6cD6et5Cl7PT38Xb6KsdR7KejS0qZacmo3X8 -name: 'Event Status' -vid: hs_event_status -description: '' -hierarchy: 0 -weight: 0 diff --git a/docroot/modules/humsci/hs_events/config/install/taxonomy.vocabulary.hs_event_type.yml b/docroot/modules/humsci/hs_events/config/install/taxonomy.vocabulary.hs_event_type.yml deleted file mode 100644 index e0f56be469..0000000000 --- a/docroot/modules/humsci/hs_events/config/install/taxonomy.vocabulary.hs_event_type.yml +++ /dev/null @@ -1,10 +0,0 @@ -langcode: en -status: true -dependencies: { } -_core: - default_config_hash: cod6oHFlDboim8apSYPgCklUxJfyTAbObPr0uAw6coY -name: 'Event Type' -vid: hs_event_type -description: '' -hierarchy: 0 -weight: 0 diff --git a/docroot/modules/humsci/hs_events/config/install/views.view.hs_events.yml b/docroot/modules/humsci/hs_events/config/install/views.view.hs_events.yml deleted file mode 100644 index 513fb07719..0000000000 --- a/docroot/modules/humsci/hs_events/config/install/views.view.hs_events.yml +++ /dev/null @@ -1,1125 +0,0 @@ -langcode: en -status: true -dependencies: - config: - - core.entity_view_mode.node.hs_horizontal_card - - core.entity_view_mode.node.hs_vertical_card - - field.storage.node.body - - field.storage.node.field_hs_event_date - - field.storage.node.field_hs_event_image - - field.storage.node.field_hs_event_location - - node.type.hs_event - module: - - datetime - - hs_field_helpers - - node - - stanford_media - - text - - user - - views_infinite_scroll - - views_taxonomy_term_name_depth -_core: - default_config_hash: g0uKHFw1z64oliHrLS0wx65Gr3S8zzHiKjwhp-XIkX8 -id: hs_events -label: Events -module: views -description: '' -tag: '' -base_table: node_field_data -base_field: nid -core: 8.x -display: - default: - display_plugin: default - id: default - display_title: Master - position: 0 - display_options: - access: - type: perm - options: - perm: 'access content' - cache: - type: tag - options: { } - query: - type: views_query - options: - disable_sql_rewrite: false - distinct: false - replica: false - query_comment: '' - query_tags: { } - exposed_form: - type: basic - options: - submit_button: Apply - reset_button: false - reset_button_label: Reset - exposed_sorts_label: 'Sort by' - expose_sort_order: true - sort_asc_label: Asc - sort_desc_label: Desc - pager: - type: infinite_scroll - options: - items_per_page: 5 - offset: 0 - id: 0 - total_pages: null - tags: - previous: '‹ Previous' - next: 'Next ›' - expose: - items_per_page: false - items_per_page_label: 'Items per page' - items_per_page_options: '5, 10, 25, 50' - items_per_page_options_all: false - items_per_page_options_all_label: '- All -' - offset: false - offset_label: Offset - views_infinite_scroll: - button_text: 'Load More' - automatically_load_content: false - style: - type: default - row: - type: 'entity:node' - options: - relationship: none - view_mode: hs_horizontal_card - fields: - title: - id: title - table: node_field_data - field: title - entity_type: node - entity_field: title - label: '' - alter: - alter_text: false - make_link: false - absolute: false - trim: false - word_boundary: false - ellipsis: false - strip_tags: false - html: false - hide_empty: false - empty_zero: false - settings: - link_to_entity: true - plugin_id: field - relationship: none - group_type: group - admin_label: '' - exclude: false - element_type: '' - element_class: '' - element_label_type: '' - element_label_class: '' - element_label_colon: true - element_wrapper_type: '' - element_wrapper_class: '' - element_default_classes: true - empty: '' - hide_alter_empty: true - click_sort_column: value - type: string - group_column: value - group_columns: { } - group_rows: true - delta_limit: 0 - delta_offset: 0 - delta_reversed: false - delta_first_last: false - multi_type: separator - separator: ', ' - field_api_classes: false - body: - id: body - table: node__body - field: body - relationship: none - group_type: group - admin_label: '' - label: '' - exclude: false - alter: - alter_text: false - text: '' - make_link: false - path: '' - absolute: false - external: false - replace_spaces: false - path_case: none - trim_whitespace: false - alt: '' - rel: '' - link_class: '' - prefix: '' - suffix: '' - target: '' - nl2br: false - max_length: 300 - word_boundary: true - ellipsis: true - more_link: false - more_link_text: '' - more_link_path: '' - strip_tags: false - trim: true - preserve_tags: '' - html: true - element_type: '' - element_class: '' - element_label_type: '' - element_label_class: '' - element_label_colon: false - element_wrapper_type: '' - element_wrapper_class: '' - element_default_classes: true - empty: '' - hide_empty: false - empty_zero: false - hide_alter_empty: true - click_sort_column: value - type: text_default - settings: { } - group_column: value - group_columns: { } - group_rows: true - delta_limit: 0 - delta_offset: 0 - delta_reversed: false - delta_first_last: false - multi_type: separator - separator: ', ' - field_api_classes: false - plugin_id: field - field_hs_event_image: - id: field_hs_event_image - table: node__field_hs_event_image - field: field_hs_event_image - relationship: none - group_type: group - admin_label: '' - label: '' - exclude: false - alter: - alter_text: false - text: '' - make_link: false - path: '' - absolute: false - external: false - replace_spaces: false - path_case: none - trim_whitespace: false - alt: '' - rel: '' - link_class: '' - prefix: '' - suffix: '' - target: '' - nl2br: false - max_length: 0 - word_boundary: true - ellipsis: true - more_link: false - more_link_text: '' - more_link_path: '' - strip_tags: false - trim: false - preserve_tags: '' - html: false - element_type: '' - element_class: '' - element_label_type: '' - element_label_class: '' - element_label_colon: false - element_wrapper_type: '' - element_wrapper_class: '' - element_default_classes: true - empty: '' - hide_empty: false - empty_zero: false - hide_alter_empty: true - click_sort_column: target_id - type: media_image_formatter - settings: - view_mode: default - image_style: medium - link: 1 - group_column: target_id - group_columns: { } - group_rows: true - delta_limit: 0 - delta_offset: 0 - delta_reversed: false - delta_first_last: false - multi_type: separator - separator: ', ' - field_api_classes: false - plugin_id: field - field_hs_event_date: - id: field_hs_event_date - table: node__field_hs_event_date - field: field_hs_event_date - relationship: none - group_type: group - admin_label: '' - label: '' - exclude: false - alter: - alter_text: false - text: '' - make_link: false - path: '' - absolute: false - external: false - replace_spaces: false - path_case: none - trim_whitespace: false - alt: '' - rel: '' - link_class: '' - prefix: '' - suffix: '' - target: '' - nl2br: false - max_length: 0 - word_boundary: true - ellipsis: true - more_link: false - more_link_text: '' - more_link_path: '' - strip_tags: false - trim: false - preserve_tags: '' - html: false - element_type: '' - element_class: '' - element_label_type: '' - element_label_class: '' - element_label_colon: false - element_wrapper_type: '' - element_wrapper_class: '' - element_default_classes: true - empty: '' - hide_empty: false - empty_zero: false - hide_alter_empty: true - click_sort_column: value - type: datetime_hs - settings: - timezone_override: '' - date_format: 'l, F j, Y' - display: start_date - group_column: value - group_columns: { } - group_rows: true - delta_limit: 0 - delta_offset: 0 - delta_reversed: false - delta_first_last: false - multi_type: separator - separator: ', ' - field_api_classes: false - plugin_id: field - field_hs_event_date_1: - id: field_hs_event_date_1 - table: node__field_hs_event_date - field: field_hs_event_date - relationship: none - group_type: group - admin_label: 'Content: Date - Time' - label: '' - exclude: false - alter: - alter_text: false - text: '' - make_link: false - path: '' - absolute: false - external: false - replace_spaces: false - path_case: none - trim_whitespace: false - alt: '' - rel: '' - link_class: '' - prefix: '' - suffix: '' - target: '' - nl2br: false - max_length: 0 - word_boundary: true - ellipsis: true - more_link: false - more_link_text: '' - more_link_path: '' - strip_tags: false - trim: false - preserve_tags: '' - html: false - element_type: '' - element_class: '' - element_label_type: '' - element_label_class: '' - element_label_colon: false - element_wrapper_type: '' - element_wrapper_class: '' - element_default_classes: true - empty: '' - hide_empty: false - empty_zero: false - hide_alter_empty: true - click_sort_column: value - type: datetime_hs - settings: - timezone_override: '' - date_format: 'g:i A' - display: start_date - group_column: value - group_columns: { } - group_rows: true - delta_limit: 0 - delta_offset: 0 - delta_reversed: false - delta_first_last: false - multi_type: separator - separator: ', ' - field_api_classes: false - plugin_id: field - field_hs_event_location: - id: field_hs_event_location - table: node__field_hs_event_location - field: field_hs_event_location - relationship: none - group_type: group - admin_label: '' - label: '' - exclude: false - alter: - alter_text: false - text: '' - make_link: false - path: '' - absolute: false - external: false - replace_spaces: false - path_case: none - trim_whitespace: false - alt: '' - rel: '' - link_class: '' - prefix: '' - suffix: '' - target: '' - nl2br: false - max_length: 150 - word_boundary: true - ellipsis: true - more_link: false - more_link_text: '' - more_link_path: '' - strip_tags: false - trim: true - preserve_tags: '' - html: false - element_type: '' - element_class: '' - element_label_type: '' - element_label_class: '' - element_label_colon: false - element_wrapper_type: '' - element_wrapper_class: '' - element_default_classes: true - empty: '' - hide_empty: false - empty_zero: false - hide_alter_empty: true - click_sort_column: value - type: basic_string - settings: { } - group_column: value - group_columns: { } - group_rows: true - delta_limit: 0 - delta_offset: 0 - delta_reversed: false - delta_first_last: false - multi_type: separator - separator: ', ' - field_api_classes: false - plugin_id: field - filters: - status: - value: '1' - table: node_field_data - field: status - plugin_id: boolean - entity_type: node - entity_field: status - id: status - expose: - operator: '' - group: 1 - type: - id: type - table: node_field_data - field: type - value: - hs_event: hs_event - entity_type: node - entity_field: type - plugin_id: bundle - field_hs_event_date_value: - id: field_hs_event_date_value - table: node__field_hs_event_date - field: field_hs_event_date_value - relationship: none - group_type: group - admin_label: '' - operator: '>=' - value: - min: '' - max: '' - value: now - type: offset - group: 1 - exposed: false - expose: - operator_id: '' - label: '' - description: '' - use_operator: false - operator: '' - identifier: '' - required: false - remember: false - multiple: false - remember_roles: - authenticated: authenticated - placeholder: '' - min_placeholder: '' - max_placeholder: '' - is_grouped: false - group_info: - label: '' - description: '' - identifier: '' - optional: true - widget: select - multiple: false - remember: false - default_group: All - default_group_multiple: { } - group_items: { } - plugin_id: datetime - sorts: - field_hs_event_date_value: - id: field_hs_event_date_value - table: node__field_hs_event_date - field: field_hs_event_date_value - relationship: none - group_type: group - admin_label: '' - order: ASC - exposed: false - expose: - label: '' - granularity: second - plugin_id: datetime - title: 'Upcoming Events' - header: { } - footer: { } - empty: - area: - id: area - table: views - field: area - relationship: none - group_type: group - admin_label: '' - empty: true - tokenize: false - content: - value: '

No events to view at this time. Please check back again soon.

' - format: basic_html - plugin_id: text - relationships: { } - arguments: { } - display_extenders: { } - use_ajax: true - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_content' - - 'languages:language_interface' - - url.query_args - - 'user.node_grants:view' - - user.permissions - tags: - - 'config:field.storage.node.body' - - 'config:field.storage.node.field_hs_event_date' - - 'config:field.storage.node.field_hs_event_image' - - 'config:field.storage.node.field_hs_event_location' - - extensions - next_featured: - display_plugin: block - id: next_featured - display_title: 'Next Upcoming Featured' - position: 5 - display_options: - display_extenders: { } - display_description: '' - style: - type: default - options: { } - defaults: - style: false - row: false - pager: false - use_more: false - use_more_always: false - use_more_text: false - link_display: false - link_url: false - empty: false - filters: false - filter_groups: false - row: - type: 'entity:node' - options: - relationship: none - view_mode: hs_vertical_card - pager: - type: some - options: - items_per_page: 1 - offset: 0 - use_more: true - use_more_always: false - use_more_text: 'See More Events' - link_display: custom_url - link_url: /events/upcoming-events - empty: - view: - id: view - table: views - field: view - relationship: none - group_type: group - admin_label: '' - empty: true - view_to_insert: 'hs_events:next_upcoming' - inherit_arguments: false - plugin_id: view - filters: - status: - value: '1' - table: node_field_data - field: status - plugin_id: boolean - entity_type: node - entity_field: status - id: status - expose: - operator: '' - group: 1 - type: - id: type - table: node_field_data - field: type - value: - hs_event: hs_event - entity_type: node - entity_field: type - plugin_id: bundle - field_hs_event_date_value: - id: field_hs_event_date_value - table: node__field_hs_event_date - field: field_hs_event_date_value - relationship: none - group_type: group - admin_label: '' - operator: '>=' - value: - min: '' - max: '' - value: now - type: offset - group: 1 - exposed: false - expose: - operator_id: '' - label: '' - description: '' - use_operator: false - operator: '' - identifier: '' - required: false - remember: false - multiple: false - remember_roles: - authenticated: authenticated - placeholder: '' - min_placeholder: '' - max_placeholder: '' - is_grouped: false - group_info: - label: '' - description: '' - identifier: '' - optional: true - widget: select - multiple: false - remember: false - default_group: All - default_group_multiple: { } - group_items: { } - plugin_id: datetime - promote: - id: promote - table: node_field_data - field: promote - relationship: none - group_type: group - admin_label: '' - operator: '=' - value: '1' - group: 1 - exposed: false - expose: - operator_id: '' - label: '' - description: '' - use_operator: false - operator: '' - identifier: '' - required: false - remember: false - multiple: false - remember_roles: - authenticated: authenticated - is_grouped: false - group_info: - label: '' - description: '' - identifier: '' - optional: true - widget: select - multiple: false - remember: false - default_group: All - default_group_multiple: { } - group_items: { } - entity_type: node - entity_field: promote - plugin_id: boolean - filter_groups: - operator: AND - groups: - 1: AND - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_content' - - 'languages:language_interface' - - 'user.node_grants:view' - - user.permissions - tags: - - 'config:field.storage.node.body' - - 'config:field.storage.node.field_hs_event_date' - - 'config:field.storage.node.field_hs_event_image' - - 'config:field.storage.node.field_hs_event_location' - - extensions - next_upcoming: - display_plugin: block - id: next_upcoming - display_title: 'Next Upcoming Event' - position: 5 - display_options: - display_extenders: { } - display_description: '' - style: - type: default - options: { } - defaults: - style: false - row: false - pager: false - use_more: false - use_more_always: false - use_more_text: false - link_display: false - link_url: false - row: - type: 'entity:node' - options: - relationship: none - view_mode: hs_vertical_card - pager: - type: some - options: - items_per_page: 1 - offset: 0 - use_more: true - use_more_always: true - use_more_text: 'See More Events' - link_display: custom_url - link_url: /events/upcoming-events - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_content' - - 'languages:language_interface' - - 'user.node_grants:view' - - user.permissions - tags: - - 'config:field.storage.node.body' - - 'config:field.storage.node.field_hs_event_date' - - 'config:field.storage.node.field_hs_event_image' - - 'config:field.storage.node.field_hs_event_location' - - extensions - past_event: - display_plugin: block - id: past_event - display_title: 'Past Events' - position: 2 - display_options: - display_extenders: { } - display_description: '' - title: 'Past Events' - defaults: - title: false - sorts: false - filters: false - filter_groups: false - sorts: - field_hs_event_date_value: - id: field_hs_event_date_value - table: node__field_hs_event_date - field: field_hs_event_date_value - relationship: none - group_type: group - admin_label: '' - order: DESC - exposed: false - expose: - label: '' - granularity: second - plugin_id: datetime - filters: - status: - value: '1' - table: node_field_data - field: status - plugin_id: boolean - entity_type: node - entity_field: status - id: status - expose: - operator: '' - group: 1 - type: - id: type - table: node_field_data - field: type - value: - hs_event: hs_event - entity_type: node - entity_field: type - plugin_id: bundle - field_hs_event_date_value: - id: field_hs_event_date_value - table: node__field_hs_event_date - field: field_hs_event_date_value - relationship: none - group_type: group - admin_label: '' - operator: '<=' - value: - min: '' - max: '' - value: now - type: offset - group: 1 - exposed: false - expose: - operator_id: '' - label: '' - description: '' - use_operator: false - operator: '' - identifier: '' - required: false - remember: false - multiple: false - remember_roles: - authenticated: authenticated - placeholder: '' - min_placeholder: '' - max_placeholder: '' - is_grouped: false - group_info: - label: '' - description: '' - identifier: '' - optional: true - widget: select - multiple: false - remember: false - default_group: All - default_group_multiple: { } - group_items: { } - plugin_id: datetime - filter_groups: - operator: AND - groups: - 1: AND - block_hide_empty: true - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_content' - - 'languages:language_interface' - - url.query_args - - 'user.node_grants:view' - - user.permissions - tags: - - 'config:field.storage.node.body' - - 'config:field.storage.node.field_hs_event_date' - - 'config:field.storage.node.field_hs_event_image' - - 'config:field.storage.node.field_hs_event_location' - - extensions - past_event_type: - display_plugin: block - id: past_event_type - display_title: 'Past Event Type' - position: 3 - display_options: - display_extenders: { } - arguments: - term_node_taxonomy_name_depth: - id: term_node_taxonomy_name_depth - table: node_field_data - field: term_node_taxonomy_name_depth - relationship: none - group_type: group - admin_label: '' - default_action: 'not found' - exception: - value: all - title_enable: false - title: All - title_enable: false - title: '' - default_argument_type: fixed - default_argument_options: - argument: '' - default_argument_skip_url: false - summary_options: - base_path: '' - count: true - items_per_page: 25 - override: false - summary: - sort_order: asc - number_of_records: 0 - format: default_summary - specify_validation: false - validate: - type: none - fail: 'not found' - validate_options: { } - depth: '0' - vocabularies: - hs_event_type: hs_event_type - break_phrase: true - use_taxonomy_term_path: false - entity_type: node - plugin_id: taxonomy_index_name_depth - defaults: - arguments: false - title: false - filters: false - filter_groups: false - display_description: '' - title: 'Past Events' - filters: - status: - value: '1' - table: node_field_data - field: status - plugin_id: boolean - entity_type: node - entity_field: status - id: status - expose: - operator: '' - group: 1 - type: - id: type - table: node_field_data - field: type - value: - hs_event: hs_event - entity_type: node - entity_field: type - plugin_id: bundle - field_hs_event_date_value: - id: field_hs_event_date_value - table: node__field_hs_event_date - field: field_hs_event_date_value - relationship: none - group_type: group - admin_label: '' - operator: '<=' - value: - min: '' - max: '' - value: now - type: offset - group: 1 - exposed: false - expose: - operator_id: '' - label: '' - description: '' - use_operator: false - operator: '' - identifier: '' - required: false - remember: false - multiple: false - remember_roles: - authenticated: authenticated - placeholder: '' - min_placeholder: '' - max_placeholder: '' - is_grouped: false - group_info: - label: '' - description: '' - identifier: '' - optional: true - widget: select - multiple: false - remember: false - default_group: All - default_group_multiple: { } - group_items: { } - plugin_id: datetime - filter_groups: - operator: AND - groups: - 1: AND - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_content' - - 'languages:language_interface' - - url - - url.query_args - - 'user.node_grants:view' - - user.permissions - tags: - - 'config:field.storage.node.body' - - 'config:field.storage.node.field_hs_event_date' - - 'config:field.storage.node.field_hs_event_image' - - 'config:field.storage.node.field_hs_event_location' - - extensions - upcoming_event: - display_plugin: block - id: upcoming_event - display_title: 'Upcoming Events' - position: 1 - display_options: - display_extenders: { } - display_description: '' - block_hide_empty: true - defaults: - pager: true - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_content' - - 'languages:language_interface' - - url.query_args - - 'user.node_grants:view' - - user.permissions - tags: - - 'config:field.storage.node.body' - - 'config:field.storage.node.field_hs_event_date' - - 'config:field.storage.node.field_hs_event_image' - - 'config:field.storage.node.field_hs_event_location' - - extensions - upcoming_event_type: - display_plugin: block - id: upcoming_event_type - display_title: 'Upcoming Event Type' - position: 3 - display_options: - display_extenders: { } - arguments: - term_node_taxonomy_name_depth: - id: term_node_taxonomy_name_depth - table: node_field_data - field: term_node_taxonomy_name_depth - relationship: none - group_type: group - admin_label: '' - default_action: 'not found' - exception: - value: all - title_enable: false - title: All - title_enable: false - title: '' - default_argument_type: fixed - default_argument_options: - argument: '' - default_argument_skip_url: false - summary_options: - base_path: '' - count: true - items_per_page: 25 - override: false - summary: - sort_order: asc - number_of_records: 0 - format: default_summary - specify_validation: false - validate: - type: none - fail: 'not found' - validate_options: { } - depth: '0' - vocabularies: - hs_event_type: hs_event_type - break_phrase: true - use_taxonomy_term_path: false - entity_type: node - plugin_id: taxonomy_index_name_depth - defaults: - arguments: false - display_description: '' - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_content' - - 'languages:language_interface' - - url - - url.query_args - - 'user.node_grants:view' - - user.permissions - tags: - - 'config:field.storage.node.body' - - 'config:field.storage.node.field_hs_event_date' - - 'config:field.storage.node.field_hs_event_image' - - 'config:field.storage.node.field_hs_event_location' - - extensions From 27865de5a043152a3aaf71760b5084dbb3f8e1c3 Mon Sep 17 00:00:00 2001 From: joegl <20383-joegl@users.noreply.drupalcode.org> Date: Tue, 4 Jun 2024 17:01:05 -0500 Subject: [PATCH 07/15] Restored configuration from config/default. --- ..._field_override.node.hs_course.promote.yml | 24 + ...ty_form_display.node.hs_course.default.yml | 342 +++ ...ty_view_display.node.hs_course.default.yml | 555 ++++ .../field.field.node.hs_course.body.yml | 26 + ...course.field_hs_course_academic_career.yml | 21 + ...s_course.field_hs_course_academic_year.yml | 23 + ...ld.node.hs_course.field_hs_course_code.yml | 19 + ...hs_course.field_hs_course_explore_tags.yml | 29 + ...node.hs_course.field_hs_course_grading.yml | 21 + ...ield.node.hs_course.field_hs_course_id.yml | 25 + ...ld.node.hs_course.field_hs_course_link.yml | 25 + ...hs_course.field_hs_course_requirements.yml | 21 + ...hs_course.field_hs_course_section_comp.yml | 31 + ...hs_course.field_hs_course_section_days.yml | 19 + ...ourse.field_hs_course_section_end_date.yml | 21 + ...ourse.field_hs_course_section_end_time.yml | 19 + ...e.hs_course.field_hs_course_section_id.yml | 25 + ...course.field_hs_course_section_instruc.yml | 28 + ...ourse.field_hs_course_section_location.yml | 19 + ..._course.field_hs_course_section_number.yml | 25 + ...course.field_hs_course_section_quarter.yml | 23 + ...course.field_hs_course_section_st_date.yml | 21 + ...course.field_hs_course_section_st_time.yml | 19 + ...ourse.field_hs_course_section_syllabus.yml | 28 + ...s_course.field_hs_course_section_units.yml | 19 + ...node.hs_course.field_hs_course_subject.yml | 21 + ...ld.node.hs_course.field_hs_course_tags.yml | 31 + ...e.node.field_hs_course_academic_career.yml | 27 + ...age.node.field_hs_course_academic_year.yml | 22 + ...ield.storage.node.field_hs_course_code.yml | 21 + ...rage.node.field_hs_course_explore_tags.yml | 20 + ...d.storage.node.field_hs_course_grading.yml | 23 + .../field.storage.node.field_hs_course_id.yml | 22 + ...ield.storage.node.field_hs_course_link.yml | 21 + ...rage.node.field_hs_course_requirements.yml | 23 + ...rage.node.field_hs_course_section_comp.yml | 22 + ...rage.node.field_hs_course_section_days.yml | 21 + ....node.field_hs_course_section_end_date.yml | 20 + ....node.field_hs_course_section_end_time.yml | 21 + ...torage.node.field_hs_course_section_id.yml | 22 + ...e.node.field_hs_course_section_instruc.yml | 20 + ....node.field_hs_course_section_location.yml | 21 + ...ge.node.field_hs_course_section_number.yml | 22 + ...e.node.field_hs_course_section_quarter.yml | 35 + ...e.node.field_hs_course_section_st_date.yml | 20 + ...e.node.field_hs_course_section_st_time.yml | 21 + ....node.field_hs_course_section_syllabus.yml | 20 + ...age.node.field_hs_course_section_units.yml | 21 + ...d.storage.node.field_hs_course_subject.yml | 23 + ...ield.storage.node.field_hs_course_tags.yml | 22 + .../config/install/node.type.hs_course.yml | 24 + .../install/pathauto.pattern.hs_courses.yml | 22 + ....behavior_settings.node_type_hs_course.yml | 14 + ...axonomy.vocabulary.hs_course_component.yml | 10 + .../taxonomy.vocabulary.hs_course_tags.yml | 10 + .../config/install/views.view.hs_courses.yml | 2321 +++++++++++++++++ .../humsci/hs_events/config/install/.htaccess | 24 + ...e_field_override.node.hs_event.promote.yml | 24 + .../field.field.node.hs_event.body.yml | 26 + ...node.hs_event.field_hs_event_admission.yml | 28 + ....node.hs_event.field_hs_event_audience.yml | 30 + ....node.hs_event.field_hs_event_category.yml | 30 + ....hs_event.field_hs_event_contact_email.yml | 21 + ....hs_event.field_hs_event_contact_phone.yml | 23 + ...ield.node.hs_event.field_hs_event_date.yml | 26 + ...eld.node.hs_event.field_hs_event_image.yml | 30 + ...ield.node.hs_event.field_hs_event_link.yml | 25 + ....node.hs_event.field_hs_event_location.yml | 21 + ....node.hs_event.field_hs_event_map_link.yml | 25 + ...ld.node.hs_event.field_hs_event_series.yml | 31 + ...d.node.hs_event.field_hs_event_speaker.yml | 30 + ...d.node.hs_event.field_hs_event_sponsor.yml | 21 + ...ld.node.hs_event.field_hs_event_status.yml | 31 + ...ield.node.hs_event.field_hs_event_type.yml | 31 + ...eld.node.hs_event.field_hs_event_video.yml | 30 + ....storage.node.field_hs_event_admission.yml | 21 + ...d.storage.node.field_hs_event_audience.yml | 22 + ...d.storage.node.field_hs_event_category.yml | 22 + ...rage.node.field_hs_event_contact_email.yml | 20 + ...rage.node.field_hs_event_contact_phone.yml | 21 + ...field.storage.node.field_hs_event_date.yml | 19 + ...ield.storage.node.field_hs_event_image.yml | 22 + ...field.storage.node.field_hs_event_link.yml | 21 + ...d.storage.node.field_hs_event_location.yml | 21 + ...d.storage.node.field_hs_event_map_link.yml | 21 + ...eld.storage.node.field_hs_event_series.yml | 21 + ...ld.storage.node.field_hs_event_speaker.yml | 22 + ...ld.storage.node.field_hs_event_sponsor.yml | 21 + ...eld.storage.node.field_hs_event_status.yml | 22 + ...field.storage.node.field_hs_event_type.yml | 22 + ...ield.storage.node.field_hs_event_video.yml | 22 + .../config/install/node.type.hs_event.yml | 23 + .../install/pathauto.pattern.hs_events.yml | 24 + .../taxonomy.vocabulary.hs_event_audience.yml | 10 + .../taxonomy.vocabulary.hs_event_category.yml | 10 + .../taxonomy.vocabulary.hs_event_status.yml | 10 + .../taxonomy.vocabulary.hs_event_type.yml | 10 + .../config/install/views.view.hs_events.yml | 1142 ++++++++ ..._override.node.hs_publications.promote.yml | 24 + .../field.field.node.hs_publications.body.yml | 26 + ...blications.field_hs_publication_author.yml | 30 + ...cations.field_hs_publication_documents.yml | 30 + ...ublications.field_hs_publication_image.yml | 30 + ...publications.field_hs_publication_link.yml | 25 + ...cations.field_hs_publication_publisher.yml | 21 + ...publications.field_hs_publication_type.yml | 31 + ...publications.field_hs_publication_year.yml | 26 + ...orage.node.field_hs_publication_author.yml | 22 + ...ge.node.field_hs_publication_documents.yml | 22 + ...torage.node.field_hs_publication_image.yml | 22 + ...storage.node.field_hs_publication_link.yml | 21 + ...ge.node.field_hs_publication_publisher.yml | 23 + ...storage.node.field_hs_publication_type.yml | 22 + ...storage.node.field_hs_publication_year.yml | 22 + .../install/node.type.hs_publications.yml | 24 + ...pathauto.pattern.hs_publications_nodes.yml | 24 + ...axonomy.vocabulary.hs_publication_type.yml | 10 + .../install/views.view.hs_publications.yml | 1676 ++++++++++++ ...m_display.node.hs_publications.default.yml | 165 ++ ...w_display.node.hs_publications.default.yml | 274 ++ ....node.hs_publications.hs_vertical_card.yml | 117 + ...m_display.node.hs_publications.default.yml | 165 ++ ...w_display.node.hs_publications.default.yml | 274 ++ ....node.hs_publications.hs_vertical_card.yml | 117 + 124 files changed, 9710 insertions(+) create mode 100644 docroot/modules/humsci/hs_courses/config/install/core.base_field_override.node.hs_course.promote.yml create mode 100644 docroot/modules/humsci/hs_courses/config/install/core.entity_form_display.node.hs_course.default.yml create mode 100644 docroot/modules/humsci/hs_courses/config/install/core.entity_view_display.node.hs_course.default.yml create mode 100644 docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.body.yml create mode 100644 docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_academic_career.yml create mode 100644 docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_academic_year.yml create mode 100644 docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_code.yml create mode 100644 docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_explore_tags.yml create mode 100644 docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_grading.yml create mode 100644 docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_id.yml create mode 100644 docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_link.yml create mode 100644 docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_requirements.yml create mode 100644 docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_comp.yml create mode 100644 docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_days.yml create mode 100644 docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_end_date.yml create mode 100644 docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_end_time.yml create mode 100644 docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_id.yml create mode 100644 docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_instruc.yml create mode 100644 docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_location.yml create mode 100644 docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_number.yml create mode 100644 docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_quarter.yml create mode 100644 docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_st_date.yml create mode 100644 docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_st_time.yml create mode 100644 docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_syllabus.yml create mode 100644 docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_units.yml create mode 100644 docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_subject.yml create mode 100644 docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_tags.yml create mode 100644 docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_academic_career.yml create mode 100644 docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_academic_year.yml create mode 100644 docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_code.yml create mode 100644 docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_explore_tags.yml create mode 100644 docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_grading.yml create mode 100644 docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_id.yml create mode 100644 docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_link.yml create mode 100644 docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_requirements.yml create mode 100644 docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_comp.yml create mode 100644 docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_days.yml create mode 100644 docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_end_date.yml create mode 100644 docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_end_time.yml create mode 100644 docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_id.yml create mode 100644 docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_instruc.yml create mode 100644 docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_location.yml create mode 100644 docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_number.yml create mode 100644 docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_quarter.yml create mode 100644 docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_st_date.yml create mode 100644 docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_st_time.yml create mode 100644 docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_syllabus.yml create mode 100644 docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_units.yml create mode 100644 docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_subject.yml create mode 100644 docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_tags.yml create mode 100644 docroot/modules/humsci/hs_courses/config/install/node.type.hs_course.yml create mode 100644 docroot/modules/humsci/hs_courses/config/install/pathauto.pattern.hs_courses.yml create mode 100644 docroot/modules/humsci/hs_courses/config/install/rabbit_hole.behavior_settings.node_type_hs_course.yml create mode 100644 docroot/modules/humsci/hs_courses/config/install/taxonomy.vocabulary.hs_course_component.yml create mode 100644 docroot/modules/humsci/hs_courses/config/install/taxonomy.vocabulary.hs_course_tags.yml create mode 100644 docroot/modules/humsci/hs_courses/config/install/views.view.hs_courses.yml create mode 100644 docroot/modules/humsci/hs_events/config/install/.htaccess create mode 100644 docroot/modules/humsci/hs_events/config/install/core.base_field_override.node.hs_event.promote.yml create mode 100644 docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.body.yml create mode 100644 docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_admission.yml create mode 100644 docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_audience.yml create mode 100644 docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_category.yml create mode 100644 docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_contact_email.yml create mode 100644 docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_contact_phone.yml create mode 100644 docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_date.yml create mode 100644 docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_image.yml create mode 100644 docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_link.yml create mode 100644 docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_location.yml create mode 100644 docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_map_link.yml create mode 100644 docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_series.yml create mode 100644 docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_speaker.yml create mode 100644 docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_sponsor.yml create mode 100644 docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_status.yml create mode 100644 docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_type.yml create mode 100644 docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_video.yml create mode 100644 docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_admission.yml create mode 100644 docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_audience.yml create mode 100644 docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_category.yml create mode 100644 docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_contact_email.yml create mode 100644 docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_contact_phone.yml create mode 100644 docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_date.yml create mode 100644 docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_image.yml create mode 100644 docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_link.yml create mode 100644 docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_location.yml create mode 100644 docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_map_link.yml create mode 100644 docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_series.yml create mode 100644 docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_speaker.yml create mode 100644 docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_sponsor.yml create mode 100644 docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_status.yml create mode 100644 docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_type.yml create mode 100644 docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_video.yml create mode 100644 docroot/modules/humsci/hs_events/config/install/node.type.hs_event.yml create mode 100644 docroot/modules/humsci/hs_events/config/install/pathauto.pattern.hs_events.yml create mode 100644 docroot/modules/humsci/hs_events/config/install/taxonomy.vocabulary.hs_event_audience.yml create mode 100644 docroot/modules/humsci/hs_events/config/install/taxonomy.vocabulary.hs_event_category.yml create mode 100644 docroot/modules/humsci/hs_events/config/install/taxonomy.vocabulary.hs_event_status.yml create mode 100644 docroot/modules/humsci/hs_events/config/install/taxonomy.vocabulary.hs_event_type.yml create mode 100644 docroot/modules/humsci/hs_events/config/install/views.view.hs_events.yml create mode 100644 docroot/modules/humsci/hs_publications/config/install/core.base_field_override.node.hs_publications.promote.yml create mode 100644 docroot/modules/humsci/hs_publications/config/install/field.field.node.hs_publications.body.yml create mode 100644 docroot/modules/humsci/hs_publications/config/install/field.field.node.hs_publications.field_hs_publication_author.yml create mode 100644 docroot/modules/humsci/hs_publications/config/install/field.field.node.hs_publications.field_hs_publication_documents.yml create mode 100644 docroot/modules/humsci/hs_publications/config/install/field.field.node.hs_publications.field_hs_publication_image.yml create mode 100644 docroot/modules/humsci/hs_publications/config/install/field.field.node.hs_publications.field_hs_publication_link.yml create mode 100644 docroot/modules/humsci/hs_publications/config/install/field.field.node.hs_publications.field_hs_publication_publisher.yml create mode 100644 docroot/modules/humsci/hs_publications/config/install/field.field.node.hs_publications.field_hs_publication_type.yml create mode 100644 docroot/modules/humsci/hs_publications/config/install/field.field.node.hs_publications.field_hs_publication_year.yml create mode 100644 docroot/modules/humsci/hs_publications/config/install/field.storage.node.field_hs_publication_author.yml create mode 100644 docroot/modules/humsci/hs_publications/config/install/field.storage.node.field_hs_publication_documents.yml create mode 100644 docroot/modules/humsci/hs_publications/config/install/field.storage.node.field_hs_publication_image.yml create mode 100644 docroot/modules/humsci/hs_publications/config/install/field.storage.node.field_hs_publication_link.yml create mode 100644 docroot/modules/humsci/hs_publications/config/install/field.storage.node.field_hs_publication_publisher.yml create mode 100644 docroot/modules/humsci/hs_publications/config/install/field.storage.node.field_hs_publication_type.yml create mode 100644 docroot/modules/humsci/hs_publications/config/install/field.storage.node.field_hs_publication_year.yml create mode 100644 docroot/modules/humsci/hs_publications/config/install/node.type.hs_publications.yml create mode 100644 docroot/modules/humsci/hs_publications/config/install/pathauto.pattern.hs_publications_nodes.yml create mode 100644 docroot/modules/humsci/hs_publications/config/install/taxonomy.vocabulary.hs_publication_type.yml create mode 100644 docroot/modules/humsci/hs_publications/config/install/views.view.hs_publications.yml create mode 100644 docroot/modules/humsci/hs_publications/modules/hs_publications_display/config/install/core.entity_form_display.node.hs_publications.default.yml create mode 100644 docroot/modules/humsci/hs_publications/modules/hs_publications_display/config/install/core.entity_view_display.node.hs_publications.default.yml create mode 100644 docroot/modules/humsci/hs_publications/modules/hs_publications_display/config/install/core.entity_view_display.node.hs_publications.hs_vertical_card.yml create mode 100644 docroot/modules/humsci/hs_publications/modules/hs_publications_display/config/installcore.entity_form_display.node.hs_publications.default.yml create mode 100644 docroot/modules/humsci/hs_publications/modules/hs_publications_display/config/installcore.entity_view_display.node.hs_publications.default.yml create mode 100644 docroot/modules/humsci/hs_publications/modules/hs_publications_display/config/installcore.entity_view_display.node.hs_publications.hs_vertical_card.yml diff --git a/docroot/modules/humsci/hs_courses/config/install/core.base_field_override.node.hs_course.promote.yml b/docroot/modules/humsci/hs_courses/config/install/core.base_field_override.node.hs_course.promote.yml new file mode 100644 index 0000000000..570ccfc175 --- /dev/null +++ b/docroot/modules/humsci/hs_courses/config/install/core.base_field_override.node.hs_course.promote.yml @@ -0,0 +1,24 @@ +uuid: c224a86c-c025-4a5a-8caa-c08b3bd8ba8d +langcode: en +status: true +dependencies: + config: + - node.type.hs_course +_core: + default_config_hash: V7ISAIJsiEtCsbDRdV7N4Sasa_PVEuh69nvnsb5hrJM +id: node.hs_course.promote +field_name: promote +entity_type: node +bundle: hs_course +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/docroot/modules/humsci/hs_courses/config/install/core.entity_form_display.node.hs_course.default.yml b/docroot/modules/humsci/hs_courses/config/install/core.entity_form_display.node.hs_course.default.yml new file mode 100644 index 0000000000..b9d7615cb5 --- /dev/null +++ b/docroot/modules/humsci/hs_courses/config/install/core.entity_form_display.node.hs_course.default.yml @@ -0,0 +1,342 @@ +uuid: 3aba6306-c6a8-417c-afab-8fe6bf827a1e +langcode: en +status: true +dependencies: + config: + - field.field.node.hs_course.body + - field.field.node.hs_course.field_hs_course_academic_career + - field.field.node.hs_course.field_hs_course_academic_year + - field.field.node.hs_course.field_hs_course_code + - field.field.node.hs_course.field_hs_course_code_int + - field.field.node.hs_course.field_hs_course_explore_tags + - field.field.node.hs_course.field_hs_course_grading + - field.field.node.hs_course.field_hs_course_id + - field.field.node.hs_course.field_hs_course_link + - field.field.node.hs_course.field_hs_course_requirements + - field.field.node.hs_course.field_hs_course_section_comp + - field.field.node.hs_course.field_hs_course_section_days + - field.field.node.hs_course.field_hs_course_section_end_date + - field.field.node.hs_course.field_hs_course_section_end_time + - field.field.node.hs_course.field_hs_course_section_id + - field.field.node.hs_course.field_hs_course_section_instruc + - field.field.node.hs_course.field_hs_course_section_location + - field.field.node.hs_course.field_hs_course_section_number + - field.field.node.hs_course.field_hs_course_section_quarter + - field.field.node.hs_course.field_hs_course_section_st_date + - field.field.node.hs_course.field_hs_course_section_st_time + - field.field.node.hs_course.field_hs_course_section_syllabus + - field.field.node.hs_course.field_hs_course_section_units + - field.field.node.hs_course.field_hs_course_subject + - field.field.node.hs_course.field_hs_course_tags + - node.type.hs_course + module: + - datetime + - field_group + - hs_field_helpers + - inline_entity_form + - link + - media_library + - path + - text +third_party_settings: + field_group: + group_section_information: + children: + - field_hs_course_section_id + - field_hs_course_section_number + - field_hs_course_section_instruc + - field_hs_course_section_syllabus + - field_hs_course_section_location + - group_section_dates + label: 'Section Information' + region: content + parent_name: '' + weight: 14 + format_type: fieldset + format_settings: + classes: '' + id: '' + description: '' + required_fields: true + group_section_dates: + children: + - field_hs_course_section_days + - field_hs_course_section_st_date + - field_hs_course_section_st_time + - field_hs_course_section_end_date + - field_hs_course_section_end_time + label: 'Section Dates' + region: content + parent_name: group_section_information + weight: 13 + format_type: fieldset + format_settings: + classes: '' + id: '' + description: '' + required_fields: true +id: node.hs_course.default +targetEntityType: node +bundle: hs_course +mode: default +content: + body: + type: text_textarea_with_summary + weight: 13 + region: content + settings: + rows: 9 + summary_rows: 3 + placeholder: '' + show_summary: false + third_party_settings: { } + created: + type: datetime_timestamp + weight: 18 + region: content + settings: { } + third_party_settings: { } + field_hs_course_academic_career: + type: options_select + weight: 22 + region: content + settings: { } + third_party_settings: { } + field_hs_course_academic_year: + type: datetime_academic_year + weight: 5 + region: content + settings: + min: 'now - 10 years' + max: 'now + 10 years' + third_party_settings: { } + field_hs_course_code: + type: string_textfield + weight: 2 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } + field_hs_course_code_int: + type: number + weight: 3 + region: content + settings: + placeholder: '' + third_party_settings: { } + field_hs_course_explore_tags: + type: entity_reference_autocomplete + weight: 23 + region: content + settings: + match_operator: CONTAINS + match_limit: 10 + size: 60 + placeholder: '' + third_party_settings: { } + field_hs_course_grading: + type: string_textfield + weight: 6 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } + field_hs_course_id: + type: number + weight: 4 + region: content + settings: + placeholder: '' + third_party_settings: { } + field_hs_course_link: + type: link_default + weight: 12 + region: content + settings: + placeholder_url: '' + placeholder_title: '' + third_party_settings: { } + field_hs_course_requirements: + type: string_textfield + weight: 1 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } + field_hs_course_section_comp: + type: entity_reference_autocomplete + weight: 7 + region: content + settings: + match_operator: CONTAINS + match_limit: 10 + size: 60 + placeholder: '' + third_party_settings: { } + field_hs_course_section_days: + type: string_textfield + weight: 15 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } + field_hs_course_section_end_date: + type: datetime_default + weight: 18 + region: content + settings: { } + third_party_settings: { } + field_hs_course_section_end_time: + type: string_textfield + weight: 19 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } + field_hs_course_section_id: + type: number + weight: 8 + region: content + settings: + placeholder: '' + third_party_settings: { } + field_hs_course_section_instruc: + type: inline_entity_form_complex + weight: 10 + region: content + settings: + form_mode: default + override_labels: true + label_singular: Instructor + label_plural: Instructors + allow_new: true + allow_existing: true + match_operator: CONTAINS + allow_duplicate: false + collapsible: false + collapsed: false + third_party_settings: { } + field_hs_course_section_location: + type: string_textfield + weight: 12 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } + field_hs_course_section_number: + type: number + weight: 9 + region: content + settings: + placeholder: '' + third_party_settings: { } + field_hs_course_section_quarter: + type: options_select + weight: 8 + region: content + settings: { } + third_party_settings: { } + field_hs_course_section_st_date: + type: datetime_default + weight: 16 + region: content + settings: { } + third_party_settings: { } + field_hs_course_section_st_time: + type: string_textfield + weight: 17 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } + field_hs_course_section_syllabus: + type: media_library_widget + weight: 11 + region: content + settings: + media_types: { } + third_party_settings: { } + field_hs_course_section_units: + type: string_textfield + weight: 10 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } + field_hs_course_subject: + type: string_textfield + weight: 9 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } + field_hs_course_tags: + type: entity_reference_autocomplete + weight: 11 + region: content + settings: + match_operator: CONTAINS + match_limit: 10 + size: 60 + placeholder: '' + third_party_settings: { } + path: + type: path + weight: 19 + region: content + settings: { } + third_party_settings: { } + promote: + type: boolean_checkbox + weight: 16 + region: content + settings: + display_label: true + third_party_settings: { } + status: + type: boolean_checkbox + weight: 21 + region: content + settings: + display_label: true + third_party_settings: { } + sticky: + type: boolean_checkbox + weight: 17 + 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: 15 + region: content + settings: + match_operator: CONTAINS + match_limit: 10 + size: 60 + placeholder: '' + third_party_settings: { } + url_redirects: + weight: 20 + region: content + settings: { } + third_party_settings: { } +hidden: { } diff --git a/docroot/modules/humsci/hs_courses/config/install/core.entity_view_display.node.hs_course.default.yml b/docroot/modules/humsci/hs_courses/config/install/core.entity_view_display.node.hs_course.default.yml new file mode 100644 index 0000000000..ff871d8e01 --- /dev/null +++ b/docroot/modules/humsci/hs_courses/config/install/core.entity_view_display.node.hs_course.default.yml @@ -0,0 +1,555 @@ +uuid: 68ea02fc-9cff-4e66-b2bd-828a9d58ad27 +langcode: en +status: true +dependencies: + config: + - field.field.node.hs_course.body + - field.field.node.hs_course.field_hs_course_academic_career + - field.field.node.hs_course.field_hs_course_academic_year + - field.field.node.hs_course.field_hs_course_code + - field.field.node.hs_course.field_hs_course_code_int + - field.field.node.hs_course.field_hs_course_explore_tags + - field.field.node.hs_course.field_hs_course_grading + - field.field.node.hs_course.field_hs_course_id + - field.field.node.hs_course.field_hs_course_link + - field.field.node.hs_course.field_hs_course_requirements + - field.field.node.hs_course.field_hs_course_section_comp + - field.field.node.hs_course.field_hs_course_section_days + - field.field.node.hs_course.field_hs_course_section_end_date + - field.field.node.hs_course.field_hs_course_section_end_time + - field.field.node.hs_course.field_hs_course_section_id + - field.field.node.hs_course.field_hs_course_section_instruc + - field.field.node.hs_course.field_hs_course_section_location + - field.field.node.hs_course.field_hs_course_section_number + - field.field.node.hs_course.field_hs_course_section_quarter + - field.field.node.hs_course.field_hs_course_section_st_date + - field.field.node.hs_course.field_hs_course_section_st_time + - field.field.node.hs_course.field_hs_course_section_syllabus + - field.field.node.hs_course.field_hs_course_section_units + - field.field.node.hs_course.field_hs_course_subject + - field.field.node.hs_course.field_hs_course_tags + - node.type.hs_course + - system.menu.main + module: + - hs_blocks + - hs_layouts + - layout_builder + - menu_block + - options + - user +third_party_settings: + layout_builder: + enabled: true + allow_custom: false + sections: + - + layout_id: three_column + layout_settings: + label: '' + context_mapping: { } + section_width: decanter-grid + region_widths: center + components: + 83cd1eee-8726-4940-9d8e-cf73c4af0b8a: + uuid: 83cd1eee-8726-4940-9d8e-cf73c4af0b8a + region: left_sidebar + configuration: + id: 'menu_block:main' + label: 'Main navigation' + label_display: visible + provider: menu_block + context_mapping: { } + follow: false + follow_parent: active + label_type: root + level: 2 + depth: 0 + parent: 'main:' + suggestion: menu_block__main + expand: true + weight: 0 + additional: { } + 12fe5317-34cd-40f0-aa6a-1a7890ff624a: + uuid: 12fe5317-34cd-40f0-aa6a-1a7890ff624a + region: main + configuration: + id: 'field_block:node:hs_course:title' + label: Title + label_display: '0' + provider: layout_builder + context_mapping: + entity: layout_builder.entity + formatter: + type: entity_title_heading + label: hidden + settings: + tag: h1 + third_party_settings: + field_formatter_class: + class: '' + hs_field_helpers: + inline_contents: 0 + weight: 3 + additional: { } + 027ebe6d-d697-48c5-a62c-df46b4e78968: + uuid: 027ebe6d-d697-48c5-a62c-df46b4e78968 + region: main + configuration: + id: 'field_block:node:hs_course:field_hs_course_section_instruc' + label: Instructors + label_display: '' + provider: layout_builder + context_mapping: + entity: layout_builder.entity + view_mode: view_mode + formatter: + type: entity_reference_entity_view + label: inline + settings: + view_mode: default + third_party_settings: + field_formatter_class: + class: hb-highlighted-label + ds: + ds_limit: '' + hs_field_helpers: + inline_contents: 0 + weight: 5 + additional: { } + 2c83390a-76c2-4da6-ab0e-1bfe7f742fbf: + uuid: 2c83390a-76c2-4da6-ab0e-1bfe7f742fbf + region: main + configuration: + id: 'field_block:node:hs_course:field_hs_course_section_number' + label: 'Section Number' + label_display: '' + provider: layout_builder + context_mapping: + entity: layout_builder.entity + view_mode: view_mode + formatter: + type: number_integer + label: inline + settings: + thousand_separator: '' + prefix_suffix: true + third_party_settings: + field_formatter_class: + class: hb-highlighted-label + hs_field_helpers: + inline_contents: 0 + weight: 6 + additional: { } + 3e7b5b4a-be7a-4f2f-bc98-50996e4a2830: + uuid: 3e7b5b4a-be7a-4f2f-bc98-50996e4a2830 + region: main + configuration: + id: 'field_block:node:hs_course:body' + label: Body + label_display: '0' + provider: layout_builder + context_mapping: + entity: layout_builder.entity + formatter: + type: text_default + label: hidden + settings: { } + third_party_settings: + field_formatter_class: + class: '' + hs_field_helpers: + inline_contents: 0 + weight: 7 + additional: { } + 83cf3e63-a119-4e19-8c99-80693cb511cc: + uuid: 83cf3e63-a119-4e19-8c99-80693cb511cc + region: main + configuration: + id: 'field_block:node:hs_course:field_hs_course_link' + label: 'Course Link' + label_display: '0' + provider: layout_builder + context_mapping: + entity: layout_builder.entity + formatter: + type: link + label: above + settings: + trim_length: 80 + url_only: false + url_plain: false + rel: '0' + target: '0' + third_party_settings: + field_formatter_class: + class: '' + hs_field_helpers: + inline_contents: 0 + weight: 8 + additional: { } + 6d970133-88fc-48c6-90b2-cf191d04f463: + uuid: 6d970133-88fc-48c6-90b2-cf191d04f463 + region: main + configuration: + id: 'field_block:node:hs_course:field_hs_course_grading' + label: Grading + label_display: '' + provider: layout_builder + context_mapping: + entity: layout_builder.entity + view_mode: view_mode + formatter: + type: string + label: above + settings: + link_to_entity: false + third_party_settings: + field_formatter_class: + class: '' + hs_field_helpers: + inline_contents: 0 + weight: 9 + additional: { } + b8975e21-5e0b-41d4-8638-097ee92d6007: + uuid: b8975e21-5e0b-41d4-8638-097ee92d6007 + region: main + configuration: + id: 'field_block:node:hs_course:field_hs_course_requirements' + label: Requirements + label_display: '0' + provider: layout_builder + context_mapping: + entity: layout_builder.entity + formatter: + type: string + label: above + settings: + link_to_entity: false + third_party_settings: + field_formatter_class: + class: '' + hs_field_helpers: + inline_contents: 0 + weight: 10 + additional: { } + ce68835c-10e2-44d3-a6ce-7830a9c07cd2: + uuid: ce68835c-10e2-44d3-a6ce-7830a9c07cd2 + region: main + configuration: + id: 'field_block:node:hs_course:field_hs_course_section_syllabus' + label: Syllabus + label_display: '0' + provider: layout_builder + context_mapping: + entity: layout_builder.entity + formatter: + type: entity_reference_entity_view + label: above + settings: + view_mode: default + third_party_settings: + field_formatter_class: + class: '' + hs_field_helpers: + inline_contents: 0 + weight: 11 + additional: { } + 5ca0a647-9edc-4632-9909-9be755fb29eb: + uuid: 5ca0a647-9edc-4632-9909-9be755fb29eb + region: main + configuration: + id: 'field_block:node:hs_course:field_hs_course_section_units' + label: Units + label_display: '0' + provider: layout_builder + context_mapping: + entity: layout_builder.entity + formatter: + type: string + label: above + settings: + link_to_entity: false + third_party_settings: + field_formatter_class: + class: '' + hs_field_helpers: + inline_contents: 0 + weight: 12 + additional: { } + 86117c13-3143-41b7-918e-6c985af42602: + uuid: 86117c13-3143-41b7-918e-6c985af42602 + region: main + configuration: + id: 'field_block:node:hs_course:field_hs_course_academic_career' + label_display: '' + context_mapping: + entity: layout_builder.entity + formatter: + type: list_default + label: above + settings: { } + third_party_settings: { } + weight: 13 + additional: + field_name: field_hs_course_academic_career + 52c17832-c3df-4263-84a9-b912d8c227be: + uuid: 52c17832-c3df-4263-84a9-b912d8c227be + region: main + configuration: + id: 'field_block:node:hs_course:field_hs_course_tags' + label: 'Course Tags' + label_display: '' + provider: layout_builder + context_mapping: + entity: layout_builder.entity + view_mode: view_mode + formatter: + type: entity_reference_label + label: above + settings: + link: false + third_party_settings: + field_formatter_class: + class: hb-pill-list + ds: + ds_limit: '' + hs_field_helpers: + inline_contents: 0 + weight: 14 + additional: { } + 9788a148-5579-4d83-8b24-36afb49ebbae: + uuid: 9788a148-5579-4d83-8b24-36afb49ebbae + region: main + configuration: + id: 'group_block:node' + label: 'Group Block: Subject / Course Code' + label_display: '0' + provider: hs_blocks + context_mapping: + entity: layout_builder.entity + children: + dbc6450d-8455-42f7-aa22-6e25a1a409b7: + id: 'field_block:node:hs_course:field_hs_course_subject' + label: Subject + provider: layout_builder + label_display: '' + formatter: + label: hidden + type: string + settings: + link_to_entity: 0 + third_party_settings: + field_formatter_class: + class: '' + hs_field_helpers: + inline_contents: 0 + context_mapping: + entity: layout_builder.entity + view_mode: view_mode + 3613dd21-51d5-44b4-b4c7-13dc6d0a0862: + id: 'field_block:node:hs_course:field_hs_course_code' + label: 'Course Code' + provider: layout_builder + label_display: '' + formatter: + label: hidden + type: string + settings: + link_to_entity: 0 + third_party_settings: + field_formatter_class: + class: '' + hs_field_helpers: + inline_contents: 0 + context_mapping: + entity: layout_builder.entity + view_mode: view_mode + class: 'hb-inline hb-borderless hb-subtitle' + uuid: 9788a148-5579-4d83-8b24-36afb49ebbae + weight: 4 + additional: { } + 68c0bda7-f42c-4c32-845a-90f47f550e22: + uuid: 68c0bda7-f42c-4c32-845a-90f47f550e22 + region: right_sidebar + configuration: + id: 'group_block:node' + label: 'Date Time Location' + label_display: '0' + provider: hs_blocks + context_mapping: + entity: layout_builder.entity + uuid: 68c0bda7-f42c-4c32-845a-90f47f550e22 + children: + b90d8e6c-2bc7-4699-bbff-f7873594a86a: + id: 'field_block:node:hs_course:field_hs_course_academic_year' + label: 'Academic Year' + provider: layout_builder + label_display: '' + formatter: + label: above + type: datetime_default + settings: + timezone_override: '' + format_type: html_year + third_party_settings: + field_formatter_class: + class: '' + hs_field_helpers: + inline_contents: 0 + context_mapping: + entity: layout_builder.entity + view_mode: view_mode + c8e3efe6-25ee-42a7-8f81-38b7c6fd73c4: + id: 'field_block:node:hs_course:field_hs_course_section_quarter' + label: Quarter + provider: layout_builder + label_display: '' + formatter: + label: above + type: list_default + settings: { } + third_party_settings: + field_formatter_class: + class: '' + hs_field_helpers: + inline_contents: 0 + context_mapping: + entity: layout_builder.entity + view_mode: view_mode + 7ba05457-d0bf-48ad-be51-268155c57ad2: + id: 'field_block:node:hs_course:field_hs_course_section_days' + label: 'Section Days' + provider: layout_builder + label_display: '' + formatter: + label: above + type: string + settings: + link_to_entity: 0 + third_party_settings: + field_formatter_class: + class: '' + hs_field_helpers: + inline_contents: 0 + context_mapping: + entity: layout_builder.entity + view_mode: view_mode + 430af82d-8791-4bad-ab33-3398c82e3dc8: + id: 'field_block:node:hs_course:field_hs_course_section_st_time' + label: 'Start Time' + provider: layout_builder + label_display: '' + formatter: + label: above + type: string + settings: + link_to_entity: 0 + third_party_settings: + field_formatter_class: + class: '' + hs_field_helpers: + inline_contents: 0 + context_mapping: + entity: layout_builder.entity + view_mode: view_mode + dcab85f8-4034-474c-a9aa-68beb9ccfe39: + id: 'field_block:node:hs_course:field_hs_course_section_end_time' + label: 'End Time' + provider: layout_builder + label_display: '' + formatter: + label: above + type: string + settings: + link_to_entity: 0 + third_party_settings: + field_formatter_class: + class: '' + hs_field_helpers: + inline_contents: 0 + context_mapping: + entity: layout_builder.entity + view_mode: view_mode + ec4c27f8-b298-4d21-ba8c-ab87d3449ca8: + id: 'field_block:node:hs_course:field_hs_course_section_location' + label: Location + provider: layout_builder + label_display: '' + formatter: + label: above + type: string + settings: + link_to_entity: 0 + third_party_settings: + field_formatter_class: + class: '' + hs_field_helpers: + inline_contents: 0 + context_mapping: + entity: layout_builder.entity + view_mode: view_mode + class: hs-well + weight: 0 + additional: { } + f8be1181-29ee-4f72-a68e-305060b03b35: + uuid: f8be1181-29ee-4f72-a68e-305060b03b35 + region: main + configuration: + id: hs_layouts_skipnav_main_anchor + label: 'Main content anchor target' + label_display: hidden + provider: hs_layouts + context_mapping: { } + weight: 2 + additional: { } + third_party_settings: { } +id: node.hs_course.default +targetEntityType: node +bundle: hs_course +mode: default +content: + field_hs_course_academic_career: + type: list_default + label: above + settings: { } + third_party_settings: { } + weight: 101 + region: main + field_hs_course_explore_tags: + type: entity_reference_label + label: above + settings: + link: true + third_party_settings: { } + weight: 102 + region: main + links: + settings: { } + third_party_settings: { } + weight: 100 + region: content +hidden: + body: true + field_hs_course_academic_year: true + field_hs_course_code: true + field_hs_course_code_int: true + field_hs_course_grading: true + field_hs_course_id: true + field_hs_course_link: true + field_hs_course_requirements: true + field_hs_course_section_comp: true + field_hs_course_section_days: true + field_hs_course_section_end_date: true + field_hs_course_section_end_time: true + field_hs_course_section_id: true + field_hs_course_section_instruc: true + field_hs_course_section_location: true + field_hs_course_section_number: true + field_hs_course_section_quarter: true + field_hs_course_section_st_date: true + field_hs_course_section_st_time: true + field_hs_course_section_syllabus: true + field_hs_course_section_units: true + field_hs_course_subject: true + field_hs_course_tags: true + search_api_excerpt: true diff --git a/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.body.yml b/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.body.yml new file mode 100644 index 0000000000..a7afefd051 --- /dev/null +++ b/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.body.yml @@ -0,0 +1,26 @@ +uuid: 3d43a89e-2492-4235-8fc7-200b95223906 +langcode: en +status: true +dependencies: + config: + - field.storage.node.body + - node.type.hs_course + module: + - text +_core: + default_config_hash: i0q_fEjQsqvG7VrfLxBrj62iC566L1uWB-4cFyM2sCA +id: node.hs_course.body +field_name: body +entity_type: node +bundle: hs_course +label: Body +description: '' +required: false +translatable: true +default_value: { } +default_value_callback: '' +settings: + display_summary: true + required_summary: false + allowed_formats: { } +field_type: text_with_summary diff --git a/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_academic_career.yml b/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_academic_career.yml new file mode 100644 index 0000000000..7a76e30449 --- /dev/null +++ b/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_academic_career.yml @@ -0,0 +1,21 @@ +uuid: 16915a71-8f83-4275-8ed0-90111801bfa2 +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_hs_course_academic_career + - node.type.hs_course + module: + - options +id: node.hs_course.field_hs_course_academic_career +field_name: field_hs_course_academic_career +entity_type: node +bundle: hs_course +label: 'Academic Career' +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: list_string diff --git a/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_academic_year.yml b/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_academic_year.yml new file mode 100644 index 0000000000..b4d118c56c --- /dev/null +++ b/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_academic_year.yml @@ -0,0 +1,23 @@ +uuid: 084a2e0d-738d-4c91-a075-53833723a560 +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_hs_course_academic_year + - node.type.hs_course + module: + - datetime +_core: + default_config_hash: lRt3-Aohko8l83MT30v4upjfzUj-pEa4eYKq4LYPheA +id: node.hs_course.field_hs_course_academic_year +field_name: field_hs_course_academic_year +entity_type: node +bundle: hs_course +label: 'Academic Year' +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: datetime diff --git a/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_code.yml b/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_code.yml new file mode 100644 index 0000000000..3e3b7316a3 --- /dev/null +++ b/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_code.yml @@ -0,0 +1,19 @@ +uuid: 0b008db6-df0d-4cf7-9e7d-6bc7a3a81461 +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_hs_course_code + - node.type.hs_course +id: node.hs_course.field_hs_course_code +field_name: field_hs_course_code +entity_type: node +bundle: hs_course +label: 'Course Code' +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: string diff --git a/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_explore_tags.yml b/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_explore_tags.yml new file mode 100644 index 0000000000..a49bf90f02 --- /dev/null +++ b/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_explore_tags.yml @@ -0,0 +1,29 @@ +uuid: ae9bcf4e-734d-4415-9ee6-3ee0b02c5dde +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_hs_course_explore_tags + - node.type.hs_course + - taxonomy.vocabulary.hs_course_tags +id: node.hs_course.field_hs_course_explore_tags +field_name: field_hs_course_explore_tags +entity_type: node +bundle: hs_course +label: 'Explore Course Tags' +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: + handler: 'default:taxonomy_term' + handler_settings: + target_bundles: + hs_course_tags: hs_course_tags + sort: + field: name + direction: asc + auto_create: true + auto_create_bundle: '' +field_type: entity_reference diff --git a/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_grading.yml b/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_grading.yml new file mode 100644 index 0000000000..0c6dc6c0ad --- /dev/null +++ b/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_grading.yml @@ -0,0 +1,21 @@ +uuid: c673e5c3-5ae8-40e6-aa2c-231035b3d7cb +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_hs_course_grading + - node.type.hs_course +_core: + default_config_hash: bl70HmJzdSTYVFBDwDSGfKViYb4g0S0BhvlDAWZQDFM +id: node.hs_course.field_hs_course_grading +field_name: field_hs_course_grading +entity_type: node +bundle: hs_course +label: Grading +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: string diff --git a/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_id.yml b/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_id.yml new file mode 100644 index 0000000000..25a4dbd575 --- /dev/null +++ b/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_id.yml @@ -0,0 +1,25 @@ +uuid: 97b6af6d-99a4-407b-a1d4-a54af228d503 +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_hs_course_id + - node.type.hs_course +_core: + default_config_hash: boTYKK39nsF_Vx_AtqgdWC-0IPlgbNK5JfaeMgZ5HuQ +id: node.hs_course.field_hs_course_id +field_name: field_hs_course_id +entity_type: node +bundle: hs_course +label: 'Course ID' +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: + min: null + max: null + prefix: '' + suffix: '' +field_type: integer diff --git a/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_link.yml b/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_link.yml new file mode 100644 index 0000000000..9f417128f8 --- /dev/null +++ b/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_link.yml @@ -0,0 +1,25 @@ +uuid: b6939e1c-5180-4b1b-9308-b43b88454e15 +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_hs_course_link + - node.type.hs_course + module: + - link +_core: + default_config_hash: MvRrPIUTeabIU6brJBH0_CDyn1aETDspDuOO2fJ74Cw +id: node.hs_course.field_hs_course_link +field_name: field_hs_course_link +entity_type: node +bundle: hs_course +label: 'Course Link' +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: + title: 0 + link_type: 16 +field_type: link diff --git a/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_requirements.yml b/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_requirements.yml new file mode 100644 index 0000000000..041d12795f --- /dev/null +++ b/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_requirements.yml @@ -0,0 +1,21 @@ +uuid: 685d1dc4-a6e6-49da-b8fe-dc6f4eca2319 +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_hs_course_requirements + - node.type.hs_course +_core: + default_config_hash: N_rrjD7BpoftlMsHWTvnFRXqtrayI9VlLSPtw0zMcUc +id: node.hs_course.field_hs_course_requirements +field_name: field_hs_course_requirements +entity_type: node +bundle: hs_course +label: Requirements +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: string diff --git a/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_comp.yml b/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_comp.yml new file mode 100644 index 0000000000..e63a77175d --- /dev/null +++ b/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_comp.yml @@ -0,0 +1,31 @@ +uuid: 4bd33839-86ff-4b1a-8b81-dff72d7af9c2 +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_hs_course_section_comp + - node.type.hs_course + - taxonomy.vocabulary.hs_course_component +_core: + default_config_hash: ig-N5-bvXl4ovLsDpYgkmCI6oFmsyS86KT8nxYJ99L0 +id: node.hs_course.field_hs_course_section_comp +field_name: field_hs_course_section_comp +entity_type: node +bundle: hs_course +label: Component +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: + handler: 'default:taxonomy_term' + handler_settings: + target_bundles: + hs_course_component: hs_course_component + sort: + field: name + direction: asc + auto_create: true + auto_create_bundle: '' +field_type: entity_reference diff --git a/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_days.yml b/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_days.yml new file mode 100644 index 0000000000..354565979b --- /dev/null +++ b/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_days.yml @@ -0,0 +1,19 @@ +uuid: 75ec49e5-4291-4f5b-aafa-7d7af50b69ac +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_hs_course_section_days + - node.type.hs_course +id: node.hs_course.field_hs_course_section_days +field_name: field_hs_course_section_days +entity_type: node +bundle: hs_course +label: 'Section Days' +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: string diff --git a/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_end_date.yml b/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_end_date.yml new file mode 100644 index 0000000000..26239df83a --- /dev/null +++ b/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_end_date.yml @@ -0,0 +1,21 @@ +uuid: e69490a1-8ae0-4534-b3af-9e03c4351d60 +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_hs_course_section_end_date + - node.type.hs_course + module: + - datetime +id: node.hs_course.field_hs_course_section_end_date +field_name: field_hs_course_section_end_date +entity_type: node +bundle: hs_course +label: 'End Date' +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: datetime diff --git a/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_end_time.yml b/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_end_time.yml new file mode 100644 index 0000000000..d5df24ed93 --- /dev/null +++ b/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_end_time.yml @@ -0,0 +1,19 @@ +uuid: e5cf7721-5fec-4886-ae94-da118d4a5d1b +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_hs_course_section_end_time + - node.type.hs_course +id: node.hs_course.field_hs_course_section_end_time +field_name: field_hs_course_section_end_time +entity_type: node +bundle: hs_course +label: 'End Time' +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: string diff --git a/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_id.yml b/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_id.yml new file mode 100644 index 0000000000..73e66c942f --- /dev/null +++ b/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_id.yml @@ -0,0 +1,25 @@ +uuid: a1a548ce-dab0-4c0a-8cd9-84a75c0a507b +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_hs_course_section_id + - node.type.hs_course +_core: + default_config_hash: sLP-0r9L-oZiL1j4YT8_4q8hXmB7gN9gJNjqf8JBmJo +id: node.hs_course.field_hs_course_section_id +field_name: field_hs_course_section_id +entity_type: node +bundle: hs_course +label: 'Section ID' +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: + min: null + max: null + prefix: '' + suffix: '' +field_type: integer diff --git a/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_instruc.yml b/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_instruc.yml new file mode 100644 index 0000000000..b617dd75bc --- /dev/null +++ b/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_instruc.yml @@ -0,0 +1,28 @@ +uuid: e4cd19ef-8e54-4a48-b368-5cba334c3acb +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_hs_course_section_instruc + - node.type.hs_course +id: node.hs_course.field_hs_course_section_instruc +field_name: field_hs_course_section_instruc +entity_type: node +bundle: hs_course +label: Instructors +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: + handler: 'default:hs_entity' + handler_settings: + target_bundles: + course_collections__instructor: course_collections__instructor + sort: + field: label + direction: ASC + auto_create: true + auto_create_bundle: '' +field_type: entity_reference diff --git a/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_location.yml b/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_location.yml new file mode 100644 index 0000000000..cde820ee2d --- /dev/null +++ b/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_location.yml @@ -0,0 +1,19 @@ +uuid: bb9a00a0-ab79-424b-bac3-273cf3409f7f +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_hs_course_section_location + - node.type.hs_course +id: node.hs_course.field_hs_course_section_location +field_name: field_hs_course_section_location +entity_type: node +bundle: hs_course +label: Location +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: string diff --git a/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_number.yml b/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_number.yml new file mode 100644 index 0000000000..f2487659b9 --- /dev/null +++ b/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_number.yml @@ -0,0 +1,25 @@ +uuid: 6302ce82-3217-4ad3-b5b1-0a523870373c +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_hs_course_section_number + - node.type.hs_course +_core: + default_config_hash: tzZzxrHYmTluhaWfWUMTP7fTbLLmwSFQUlzjxU9xIMU +id: node.hs_course.field_hs_course_section_number +field_name: field_hs_course_section_number +entity_type: node +bundle: hs_course +label: 'Section Number' +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: + min: null + max: null + prefix: '' + suffix: '' +field_type: integer diff --git a/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_quarter.yml b/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_quarter.yml new file mode 100644 index 0000000000..c4c44cd720 --- /dev/null +++ b/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_quarter.yml @@ -0,0 +1,23 @@ +uuid: 4d037066-491f-4775-9367-16a2a5985770 +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_hs_course_section_quarter + - node.type.hs_course + module: + - options +_core: + default_config_hash: BLjXJbQqfP8SsyaNSo-xcHzm0sWgVt_B--uu_cR1YGc +id: node.hs_course.field_hs_course_section_quarter +field_name: field_hs_course_section_quarter +entity_type: node +bundle: hs_course +label: Quarter +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: list_string diff --git a/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_st_date.yml b/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_st_date.yml new file mode 100644 index 0000000000..d1df5f2b43 --- /dev/null +++ b/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_st_date.yml @@ -0,0 +1,21 @@ +uuid: 2de527cb-10d7-41ef-8932-16014fea5c2c +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_hs_course_section_st_date + - node.type.hs_course + module: + - datetime +id: node.hs_course.field_hs_course_section_st_date +field_name: field_hs_course_section_st_date +entity_type: node +bundle: hs_course +label: 'Start Date' +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: datetime diff --git a/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_st_time.yml b/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_st_time.yml new file mode 100644 index 0000000000..bff4ac2def --- /dev/null +++ b/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_st_time.yml @@ -0,0 +1,19 @@ +uuid: 9a9bb84b-d193-4daf-80f7-53814f746577 +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_hs_course_section_st_time + - node.type.hs_course +id: node.hs_course.field_hs_course_section_st_time +field_name: field_hs_course_section_st_time +entity_type: node +bundle: hs_course +label: 'Start Time' +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: string diff --git a/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_syllabus.yml b/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_syllabus.yml new file mode 100644 index 0000000000..9ede4d7474 --- /dev/null +++ b/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_syllabus.yml @@ -0,0 +1,28 @@ +uuid: c6889122-33e3-4331-b334-175e6f7a8755 +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_hs_course_section_syllabus + - media.type.file + - node.type.hs_course +id: node.hs_course.field_hs_course_section_syllabus +field_name: field_hs_course_section_syllabus +entity_type: node +bundle: hs_course +label: Syllabus +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: + handler: 'default:media' + handler_settings: + target_bundles: + file: file + sort: + field: _none + auto_create: false + auto_create_bundle: '' +field_type: entity_reference diff --git a/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_units.yml b/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_units.yml new file mode 100644 index 0000000000..42dbdb1cec --- /dev/null +++ b/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_section_units.yml @@ -0,0 +1,19 @@ +uuid: a20f80cd-dcaf-4e89-aa08-0ce061a809c2 +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_hs_course_section_units + - node.type.hs_course +id: node.hs_course.field_hs_course_section_units +field_name: field_hs_course_section_units +entity_type: node +bundle: hs_course +label: Units +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: string diff --git a/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_subject.yml b/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_subject.yml new file mode 100644 index 0000000000..0fadb7d738 --- /dev/null +++ b/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_subject.yml @@ -0,0 +1,21 @@ +uuid: 93917368-41e8-466f-b885-1a3e05f2893a +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_hs_course_subject + - node.type.hs_course +_core: + default_config_hash: 7j1BScm1qWCF-87n38RJA5oL1JcMCBRN6tAfINfx-QA +id: node.hs_course.field_hs_course_subject +field_name: field_hs_course_subject +entity_type: node +bundle: hs_course +label: Subject +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: string diff --git a/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_tags.yml b/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_tags.yml new file mode 100644 index 0000000000..77df6335ad --- /dev/null +++ b/docroot/modules/humsci/hs_courses/config/install/field.field.node.hs_course.field_hs_course_tags.yml @@ -0,0 +1,31 @@ +uuid: bfd0ce3b-7846-486d-b3b1-41ae133042c6 +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_hs_course_tags + - node.type.hs_course + - taxonomy.vocabulary.hs_course_tags +_core: + default_config_hash: UMU8CiqNBgyaYZ4hlq9_rAeSyh6eXnP3Jpttn1HbIiY +id: node.hs_course.field_hs_course_tags +field_name: field_hs_course_tags +entity_type: node +bundle: hs_course +label: 'Course Tags' +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: + handler: 'default:taxonomy_term' + handler_settings: + target_bundles: + hs_course_tags: hs_course_tags + sort: + field: name + direction: asc + auto_create: true + auto_create_bundle: '' +field_type: entity_reference diff --git a/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_academic_career.yml b/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_academic_career.yml new file mode 100644 index 0000000000..65c5fad849 --- /dev/null +++ b/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_academic_career.yml @@ -0,0 +1,27 @@ +uuid: 4d771e9f-ef42-4746-b2b3-3bded6e13426 +langcode: en +status: true +dependencies: + module: + - node + - options +id: node.field_hs_course_academic_career +field_name: field_hs_course_academic_career +entity_type: node +type: list_string +settings: + allowed_values: + - + value: UG + label: Undergraduate + - + value: GR + label: Graduate + allowed_values_function: '' +module: options +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_academic_year.yml b/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_academic_year.yml new file mode 100644 index 0000000000..7f3f7a2914 --- /dev/null +++ b/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_academic_year.yml @@ -0,0 +1,22 @@ +uuid: 436700b5-6993-4d60-b502-4affd61fd881 +langcode: en +status: true +dependencies: + module: + - datetime + - node +_core: + default_config_hash: 6Ptg4nj5IfdaS7hkiV3-VaUca-m7ioz0-Uqy07AWank +id: node.field_hs_course_academic_year +field_name: field_hs_course_academic_year +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/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_code.yml b/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_code.yml new file mode 100644 index 0000000000..1b5ebba4ab --- /dev/null +++ b/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_code.yml @@ -0,0 +1,21 @@ +uuid: b7f849e2-e713-44ad-bc17-56f201ba8d24 +langcode: en +status: true +dependencies: + module: + - node +id: node.field_hs_course_code +field_name: field_hs_course_code +entity_type: node +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/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_explore_tags.yml b/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_explore_tags.yml new file mode 100644 index 0000000000..0812028282 --- /dev/null +++ b/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_explore_tags.yml @@ -0,0 +1,20 @@ +uuid: ae1b20b0-d5af-4b1c-be82-2d667769a850 +langcode: en +status: true +dependencies: + module: + - node + - taxonomy +id: node.field_hs_course_explore_tags +field_name: field_hs_course_explore_tags +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/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_grading.yml b/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_grading.yml new file mode 100644 index 0000000000..aab383a4b7 --- /dev/null +++ b/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_grading.yml @@ -0,0 +1,23 @@ +uuid: 739613c8-8b23-4c62-9fe0-e555d9b731c5 +langcode: en +status: true +dependencies: + module: + - node +_core: + default_config_hash: MaNx8al519EBJEFFvrI8_JuZILd7JxwtJC1miLYnccc +id: node.field_hs_course_grading +field_name: field_hs_course_grading +entity_type: node +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/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_id.yml b/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_id.yml new file mode 100644 index 0000000000..0921071b46 --- /dev/null +++ b/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_id.yml @@ -0,0 +1,22 @@ +uuid: c2fa5273-4011-43f6-9b8e-28119531170c +langcode: en +status: true +dependencies: + module: + - node +_core: + default_config_hash: 6NnF-MdEdwpBL5aTwgfv6DpljH1Cde-LkEIkic8_k6Y +id: node.field_hs_course_id +field_name: field_hs_course_id +entity_type: node +type: integer +settings: + unsigned: false + size: normal +module: core +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_link.yml b/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_link.yml new file mode 100644 index 0000000000..990ed805f4 --- /dev/null +++ b/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_link.yml @@ -0,0 +1,21 @@ +uuid: 03cfd407-3b36-4f55-95d3-67ba321f40df +langcode: en +status: true +dependencies: + module: + - link + - node +_core: + default_config_hash: vkZlCAFkkmkJNX2xyW4bDrCIhkw25Qf7FqZo4KPx04M +id: node.field_hs_course_link +field_name: field_hs_course_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/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_requirements.yml b/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_requirements.yml new file mode 100644 index 0000000000..60bf4e7f56 --- /dev/null +++ b/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_requirements.yml @@ -0,0 +1,23 @@ +uuid: a1956377-91fe-4b18-bfea-733d6011c781 +langcode: en +status: true +dependencies: + module: + - node +_core: + default_config_hash: PLuYI4SQyfBdUh_EuMiUCCN0d6BfjbW-MurfhOTf7uE +id: node.field_hs_course_requirements +field_name: field_hs_course_requirements +entity_type: node +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/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_comp.yml b/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_comp.yml new file mode 100644 index 0000000000..e770ed7b26 --- /dev/null +++ b/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_comp.yml @@ -0,0 +1,22 @@ +uuid: b2c4022b-4198-456d-a8a6-029c2d4932aa +langcode: en +status: true +dependencies: + module: + - node + - taxonomy +_core: + default_config_hash: sqlL7HQD_o5B_9ygamg3fH8gNYl5_Vl_JC6j7X6mdLU +id: node.field_hs_course_section_comp +field_name: field_hs_course_section_comp +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/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_days.yml b/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_days.yml new file mode 100644 index 0000000000..df263768bb --- /dev/null +++ b/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_days.yml @@ -0,0 +1,21 @@ +uuid: 4882c3b2-4027-4c41-87f1-bfa9eb3f08be +langcode: en +status: true +dependencies: + module: + - node +id: node.field_hs_course_section_days +field_name: field_hs_course_section_days +entity_type: node +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/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_end_date.yml b/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_end_date.yml new file mode 100644 index 0000000000..4999b87b02 --- /dev/null +++ b/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_end_date.yml @@ -0,0 +1,20 @@ +uuid: 34df1361-70c9-4efd-89a1-a302ef05caa5 +langcode: en +status: true +dependencies: + module: + - datetime + - node +id: node.field_hs_course_section_end_date +field_name: field_hs_course_section_end_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/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_end_time.yml b/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_end_time.yml new file mode 100644 index 0000000000..8a52ba9690 --- /dev/null +++ b/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_end_time.yml @@ -0,0 +1,21 @@ +uuid: bf9eaf51-92fc-4634-a250-4c43867f05a0 +langcode: en +status: true +dependencies: + module: + - node +id: node.field_hs_course_section_end_time +field_name: field_hs_course_section_end_time +entity_type: node +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/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_id.yml b/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_id.yml new file mode 100644 index 0000000000..177dc1f094 --- /dev/null +++ b/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_id.yml @@ -0,0 +1,22 @@ +uuid: 79dc7662-e855-48da-ab8e-765a25011938 +langcode: en +status: true +dependencies: + module: + - node +_core: + default_config_hash: kuYlLwp3EHXCxbuc60g0PdO174MhxqPEWelxbOy9as0 +id: node.field_hs_course_section_id +field_name: field_hs_course_section_id +entity_type: node +type: integer +settings: + unsigned: false + size: normal +module: core +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_instruc.yml b/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_instruc.yml new file mode 100644 index 0000000000..044161f67a --- /dev/null +++ b/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_instruc.yml @@ -0,0 +1,20 @@ +uuid: 41a11d6b-fd97-41ba-ab5d-59eaf82042ff +langcode: en +status: true +dependencies: + module: + - hs_entities + - node +id: node.field_hs_course_section_instruc +field_name: field_hs_course_section_instruc +entity_type: node +type: entity_reference +settings: + target_type: hs_entity +module: core +locked: false +cardinality: -1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_location.yml b/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_location.yml new file mode 100644 index 0000000000..9e58fb2593 --- /dev/null +++ b/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_location.yml @@ -0,0 +1,21 @@ +uuid: 0f1518a8-8d84-49b4-a857-9c926ab7557e +langcode: en +status: true +dependencies: + module: + - node +id: node.field_hs_course_section_location +field_name: field_hs_course_section_location +entity_type: node +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/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_number.yml b/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_number.yml new file mode 100644 index 0000000000..8edd885392 --- /dev/null +++ b/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_number.yml @@ -0,0 +1,22 @@ +uuid: 50e5af6e-adaf-40b0-8c6a-b97cbd36270c +langcode: en +status: true +dependencies: + module: + - node +_core: + default_config_hash: 1aMCEJWjyPpzTKL3IYMFXfAEEs0PNfKec_-BGIFoBnk +id: node.field_hs_course_section_number +field_name: field_hs_course_section_number +entity_type: node +type: integer +settings: + unsigned: false + size: normal +module: core +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_quarter.yml b/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_quarter.yml new file mode 100644 index 0000000000..79e28bd3b4 --- /dev/null +++ b/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_quarter.yml @@ -0,0 +1,35 @@ +uuid: 2e1d445b-7dea-4fbf-a9e9-bdf25105b362 +langcode: en +status: true +dependencies: + module: + - node + - options +_core: + default_config_hash: 9Km-cBe4cDg7mVfgX4s57DxdjWHm9D349QnEW1je-h0 +id: node.field_hs_course_section_quarter +field_name: field_hs_course_section_quarter +entity_type: node +type: list_string +settings: + allowed_values: + - + value: Autumn + label: Autumn + - + value: Winter + label: Winter + - + value: Spring + label: Spring + - + value: Summer + label: Summer + allowed_values_function: '' +module: options +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_st_date.yml b/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_st_date.yml new file mode 100644 index 0000000000..95fa87dc72 --- /dev/null +++ b/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_st_date.yml @@ -0,0 +1,20 @@ +uuid: 932fa376-49b9-43e8-957f-bcbff8282535 +langcode: en +status: true +dependencies: + module: + - datetime + - node +id: node.field_hs_course_section_st_date +field_name: field_hs_course_section_st_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/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_st_time.yml b/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_st_time.yml new file mode 100644 index 0000000000..50962c4f60 --- /dev/null +++ b/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_st_time.yml @@ -0,0 +1,21 @@ +uuid: 2af52b10-6e45-4e89-b333-20db87055abe +langcode: en +status: true +dependencies: + module: + - node +id: node.field_hs_course_section_st_time +field_name: field_hs_course_section_st_time +entity_type: node +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/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_syllabus.yml b/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_syllabus.yml new file mode 100644 index 0000000000..69ba94df2d --- /dev/null +++ b/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_syllabus.yml @@ -0,0 +1,20 @@ +uuid: 5979c5f7-4a15-4531-9d47-b911b37b690f +langcode: en +status: true +dependencies: + module: + - media + - node +id: node.field_hs_course_section_syllabus +field_name: field_hs_course_section_syllabus +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/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_units.yml b/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_units.yml new file mode 100644 index 0000000000..5c6817d84f --- /dev/null +++ b/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_section_units.yml @@ -0,0 +1,21 @@ +uuid: f63785e4-da23-4645-97a1-5d22874128af +langcode: en +status: true +dependencies: + module: + - node +id: node.field_hs_course_section_units +field_name: field_hs_course_section_units +entity_type: node +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/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_subject.yml b/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_subject.yml new file mode 100644 index 0000000000..713c8bdcf7 --- /dev/null +++ b/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_subject.yml @@ -0,0 +1,23 @@ +uuid: fc2528b9-d878-4c64-a761-14150a70e5ac +langcode: en +status: true +dependencies: + module: + - node +_core: + default_config_hash: ArBjMQk0BM0iAcgQx7cFORnsqdauU5wdjYZbgF9gzIk +id: node.field_hs_course_subject +field_name: field_hs_course_subject +entity_type: node +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/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_tags.yml b/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_tags.yml new file mode 100644 index 0000000000..df743f7cc7 --- /dev/null +++ b/docroot/modules/humsci/hs_courses/config/install/field.storage.node.field_hs_course_tags.yml @@ -0,0 +1,22 @@ +uuid: 677425c2-fd79-42eb-b47b-22ab8a3e0fce +langcode: en +status: true +dependencies: + module: + - node + - taxonomy +_core: + default_config_hash: QFplfa7tMhaQlkn_ysukFGhcId_Abg0zXhOXngAqUgU +id: node.field_hs_course_tags +field_name: field_hs_course_tags +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/docroot/modules/humsci/hs_courses/config/install/node.type.hs_course.yml b/docroot/modules/humsci/hs_courses/config/install/node.type.hs_course.yml new file mode 100644 index 0000000000..9b8979e8a8 --- /dev/null +++ b/docroot/modules/humsci/hs_courses/config/install/node.type.hs_course.yml @@ -0,0 +1,24 @@ +uuid: d1dc4194-1ad6-4e32-a46a-286859312545 +langcode: en +status: true +dependencies: + module: + - menu_ui + - node_revision_delete +third_party_settings: + menu_ui: + available_menus: { } + parent: '' + node_revision_delete: + minimum_revisions_to_keep: 5 + minimum_age_to_delete: 0 + when_to_delete: 0 +_core: + default_config_hash: T65l74n_n5mKjcyV7KEuDEozegldUb-zN6qyK7XsTMQ +name: Course +type: hs_course +description: 'A course includes information such as title, year, quarter, day(s) and time(s), etc.' +help: '' +new_revision: true +preview_mode: 0 +display_submitted: false diff --git a/docroot/modules/humsci/hs_courses/config/install/pathauto.pattern.hs_courses.yml b/docroot/modules/humsci/hs_courses/config/install/pathauto.pattern.hs_courses.yml new file mode 100644 index 0000000000..9d061b625e --- /dev/null +++ b/docroot/modules/humsci/hs_courses/config/install/pathauto.pattern.hs_courses.yml @@ -0,0 +1,22 @@ +uuid: 926cc84d-ae48-4ae7-81ab-7dad0eccbccc +langcode: en +status: true +dependencies: + module: + - node +id: hs_courses +label: Courses +type: 'canonical_entities:node' +pattern: '/courses/[node:title]/[node:field_hs_course_section_number]' +selection_criteria: + fcd0ccb7-a344-4563-9117-603f2a67e523: + id: 'entity_bundle:node' + negate: false + uuid: fcd0ccb7-a344-4563-9117-603f2a67e523 + context_mapping: + node: node + bundles: + hs_course: hs_course +selection_logic: and +weight: 0 +relationships: { } diff --git a/docroot/modules/humsci/hs_courses/config/install/rabbit_hole.behavior_settings.node_type_hs_course.yml b/docroot/modules/humsci/hs_courses/config/install/rabbit_hole.behavior_settings.node_type_hs_course.yml new file mode 100644 index 0000000000..9af9c30e59 --- /dev/null +++ b/docroot/modules/humsci/hs_courses/config/install/rabbit_hole.behavior_settings.node_type_hs_course.yml @@ -0,0 +1,14 @@ +uuid: 80a6fb19-2785-497d-81df-a3968ad35509 +langcode: en +status: true +dependencies: + config: + - node.type.hs_course +id: node_type_hs_course +entity_type_id: node_type +entity_id: hs_course +action: page_redirect +allow_override: 0 +redirect: '[node:field_hs_course_link:uri]' +redirect_code: 301 +redirect_fallback_action: access_denied diff --git a/docroot/modules/humsci/hs_courses/config/install/taxonomy.vocabulary.hs_course_component.yml b/docroot/modules/humsci/hs_courses/config/install/taxonomy.vocabulary.hs_course_component.yml new file mode 100644 index 0000000000..cc2df8ec4e --- /dev/null +++ b/docroot/modules/humsci/hs_courses/config/install/taxonomy.vocabulary.hs_course_component.yml @@ -0,0 +1,10 @@ +uuid: b93b530a-f418-42e1-bce7-e76a2ff1a24f +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: WDaz4dgCph-oh3miMn4f7-tRfYsqmpGV3uwTXuFBA4Q +name: 'Course Component' +vid: hs_course_component +description: '' +weight: 0 diff --git a/docroot/modules/humsci/hs_courses/config/install/taxonomy.vocabulary.hs_course_tags.yml b/docroot/modules/humsci/hs_courses/config/install/taxonomy.vocabulary.hs_course_tags.yml new file mode 100644 index 0000000000..835d39b450 --- /dev/null +++ b/docroot/modules/humsci/hs_courses/config/install/taxonomy.vocabulary.hs_course_tags.yml @@ -0,0 +1,10 @@ +uuid: 1ea341be-6624-4686-8693-03fa15a9a126 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: TnnADLYTlUsejOQTmcKK4KbeDgTRo_GIg7xhRef8qvE +name: 'Course Tags' +vid: hs_course_tags +description: 'Tags from ExploreCourses' +weight: 0 diff --git a/docroot/modules/humsci/hs_courses/config/install/views.view.hs_courses.yml b/docroot/modules/humsci/hs_courses/config/install/views.view.hs_courses.yml new file mode 100644 index 0000000000..887be695ab --- /dev/null +++ b/docroot/modules/humsci/hs_courses/config/install/views.view.hs_courses.yml @@ -0,0 +1,2321 @@ +uuid: 97c24b5e-9c57-4ad5-bef9-56d730e9d426 +langcode: en +status: false +dependencies: + config: + - field.storage.node.field_hs_course_academic_year + - field.storage.node.field_hs_course_code + - field.storage.node.field_hs_course_section_days + - field.storage.node.field_hs_course_section_end_time + - field.storage.node.field_hs_course_section_instruc + - field.storage.node.field_hs_course_section_quarter + - field.storage.node.field_hs_course_section_st_time + - field.storage.node.field_hs_course_subject + - node.type.hs_course + module: + - datetime + - eck + - hs_field_helpers + - hs_views_helper + - node + - options + - ui_patterns_views + - user +id: hs_courses +label: Courses +module: views +description: '' +tag: '' +base_table: node_field_data +base_field: nid +display: + default: + id: default + display_title: Master + display_plugin: default + position: 0 + display_options: + title: List + fields: + field_hs_course_subject: + id: field_hs_course_subject + table: node__field_hs_course_subject + field: field_hs_course_subject + relationship: none + group_type: group + admin_label: '' + plugin_id: field + label: '' + exclude: true + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: string + settings: + link_to_entity: false + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + field_hs_course_code: + id: field_hs_course_code + table: node__field_hs_course_code + field: field_hs_course_code + relationship: none + group_type: group + admin_label: '' + plugin_id: field + label: '' + exclude: false + alter: + alter_text: true + text: '{{ field_hs_course_subject }} {{ field_hs_course_code }}' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '{{ field_hs_course_subject }}' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: string + settings: + link_to_entity: false + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + title: + id: title + table: node_field_data + field: title + relationship: none + group_type: group + admin_label: '' + entity_type: node + entity_field: title + plugin_id: field + label: '' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: false + ellipsis: false + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: string + settings: + link_to_entity: true + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + field_hs_course_section_instruc: + id: field_hs_course_section_instruc + table: node__field_hs_course_section_instruc + field: field_hs_course_section_instruc + relationship: none + group_type: group + admin_label: '' + plugin_id: field + label: '' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: true + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: true + trim: false + preserve_tags: '
' + html: false + element_type: '' + element_class: no-wrap + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: target_id + type: entity_reference_entity_view + settings: + view_mode: default + group_column: target_id + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: '
' + field_api_classes: false + field_hs_course_academic_year: + id: field_hs_course_academic_year + table: node__field_hs_course_academic_year + field: field_hs_course_academic_year + relationship: none + group_type: group + admin_label: '' + plugin_id: field + label: '' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: no-wrap + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: datetime_academic_year + settings: + timezone_override: '' + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + field_hs_course_section_quarter: + id: field_hs_course_section_quarter + table: node__field_hs_course_section_quarter + field: field_hs_course_section_quarter + relationship: none + group_type: group + admin_label: '' + plugin_id: field + label: '' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: list_default + settings: { } + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + field_hs_course_section_days: + id: field_hs_course_section_days + table: node__field_hs_course_section_days + field: field_hs_course_section_days + relationship: none + group_type: group + admin_label: '' + plugin_id: field + label: '' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: string + settings: + link_to_entity: false + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + field_hs_course_section_st_time: + id: field_hs_course_section_st_time + table: node__field_hs_course_section_st_time + field: field_hs_course_section_st_time + relationship: none + group_type: group + admin_label: '' + plugin_id: field + label: '' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: no-wrap + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: string + settings: + link_to_entity: false + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + field_hs_course_section_end_time: + id: field_hs_course_section_end_time + table: node__field_hs_course_section_end_time + field: field_hs_course_section_end_time + relationship: none + group_type: group + admin_label: '' + plugin_id: field + label: '' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: no-wrap + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: string + settings: + link_to_entity: false + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + pager: + type: none + options: + offset: 0 + exposed_form: + type: basic + options: + submit_button: Apply + reset_button: false + reset_button_label: Reset + exposed_sorts_label: 'Sort by' + expose_sort_order: true + sort_asc_label: Asc + sort_desc_label: Desc + access: + type: perm + options: + perm: 'access content' + cache: + type: tag + options: { } + empty: + area: + id: area + table: views + field: area + relationship: none + group_type: group + admin_label: '' + plugin_id: text + empty: true + content: + value: '

No courses offered in the current quarter.

' + format: basic_html + tokenize: false + sorts: + field_hs_course_code_value: + id: field_hs_course_code_value + table: node__field_hs_course_code + field: field_hs_course_code_value + relationship: none + group_type: group + admin_label: '' + plugin_id: standard + order: ASC + expose: + label: '' + field_identifier: field_hs_course_code_value + exposed: false + field_hs_course_subject_value: + id: field_hs_course_subject_value + table: node__field_hs_course_subject + field: field_hs_course_subject_value + relationship: none + group_type: group + admin_label: '' + plugin_id: standard + order: ASC + expose: + label: '' + field_identifier: field_hs_course_subject_value + exposed: false + field_hs_course_section_st_date_value: + id: field_hs_course_section_st_date_value + table: node__field_hs_course_section_st_date + field: field_hs_course_section_st_date_value + relationship: none + group_type: group + admin_label: '' + plugin_id: datetime + order: ASC + expose: + label: '' + field_identifier: field_hs_course_section_st_date_value + exposed: false + granularity: second + field_hs_course_section_number_value: + id: field_hs_course_section_number_value + table: node__field_hs_course_section_number + field: field_hs_course_section_number_value + relationship: none + group_type: group + admin_label: '' + plugin_id: standard + order: ASC + expose: + label: '' + field_identifier: field_hs_course_section_number_value + exposed: false + title: + id: title + table: node_field_data + field: title + relationship: none + group_type: group + admin_label: '' + entity_type: node + entity_field: title + plugin_id: standard + order: ASC + expose: + label: '' + field_identifier: title + exposed: false + arguments: { } + filters: + status: + id: status + table: node_field_data + field: status + entity_type: node + entity_field: status + plugin_id: boolean + value: '1' + group: 1 + expose: + operator: '' + operator_limit_selection: false + operator_list: { } + type: + id: type + table: node_field_data + field: type + entity_type: node + entity_field: type + plugin_id: bundle + value: + hs_course: hs_course + group: 1 + expose: + operator_limit_selection: false + operator_list: { } + title: + id: title + table: node_field_data + field: title + relationship: none + group_type: group + admin_label: '' + entity_type: node + entity_field: title + plugin_id: string + operator: word + value: '' + group: 1 + exposed: true + expose: + operator_id: title_op + label: 'Search by Title' + description: '' + use_operator: false + operator: title_op + operator_limit_selection: false + operator_list: { } + identifier: title + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + contributor: '0' + site_manager: '0' + seven_admin_theme_user: '0' + placeholder: '' + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + field_hs_course_section_quarter_value: + id: field_hs_course_section_quarter_value + table: node__field_hs_course_section_quarter + field: field_hs_course_section_quarter_value + relationship: none + group_type: group + admin_label: '' + plugin_id: list_field + operator: or + value: { } + group: 1 + exposed: true + expose: + operator_id: field_hs_course_section_quarter_value_op + label: Quarter + description: '' + use_operator: false + operator: field_hs_course_section_quarter_value_op + operator_limit_selection: false + operator_list: { } + identifier: quarter + required: false + remember: false + multiple: true + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + contributor: '0' + site_manager: '0' + seven_admin_theme_user: '0' + reduce: false + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + reduce_duplicates: false + field_hs_course_requirements_value: + id: field_hs_course_requirements_value + table: node__field_hs_course_requirements + field: field_hs_course_requirements_value + relationship: none + group_type: group + admin_label: '' + plugin_id: string + operator: word + value: '' + group: 1 + exposed: true + expose: + operator_id: field_hs_course_requirements_value_op + label: 'Concentration or Requirements' + description: '' + use_operator: false + operator: field_hs_course_requirements_value_op + operator_limit_selection: false + operator_list: { } + identifier: reqs + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + contributor: '0' + site_manager: '0' + seven_admin_theme_user: '0' + placeholder: '' + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + field_hs_course_academic_career_value: + id: field_hs_course_academic_career_value + table: node__field_hs_course_academic_career + field: field_hs_course_academic_career_value + relationship: none + group_type: group + admin_label: '' + plugin_id: list_field + operator: or + value: { } + group: 1 + exposed: true + expose: + operator_id: field_hs_course_academic_career_value_op + label: Undergrad/Grad + description: '' + use_operator: false + operator: field_hs_course_academic_career_value_op + operator_limit_selection: false + operator_list: { } + identifier: academic_career + required: false + remember: false + multiple: true + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + contributor: '0' + site_manager: '0' + seven_admin_theme_user: '0' + reduce: false + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + reduce_duplicates: false + title_1: + id: title_1 + table: hs_entity + field: label + relationship: field_hs_course_section_instruc + group_type: group + admin_label: '' + entity_type: hs_entity + entity_field: label + plugin_id: string + operator: word + value: '' + group: 1 + exposed: true + expose: + operator_id: title_1_op + label: Instructor + description: '' + use_operator: false + operator: title_1_op + operator_limit_selection: false + operator_list: { } + identifier: instructor + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + contributor: '0' + site_manager: '0' + seven_admin_theme_user: '0' + placeholder: '' + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + delta_1: + id: delta_1 + table: node__field_hs_course_section_instruc + field: delta + relationship: none + group_type: group + admin_label: '' + plugin_id: numeric + operator: empty + value: + min: '' + max: '' + value: '' + group: 2 + exposed: false + expose: + operator_id: '' + label: '' + description: '' + use_operator: false + operator: '' + operator_limit_selection: false + operator_list: { } + identifier: '' + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + min_placeholder: '' + max_placeholder: '' + placeholder: '' + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + delta: + id: delta + table: node__field_hs_course_section_instruc + field: delta + relationship: none + group_type: group + admin_label: '' + plugin_id: numeric + operator: '=' + value: + min: '' + max: '' + value: '0' + group: 2 + exposed: false + expose: + operator_id: '' + label: '' + description: '' + use_operator: false + operator: '' + operator_limit_selection: false + operator_list: { } + identifier: '' + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + min_placeholder: '' + max_placeholder: '' + placeholder: '' + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + filter_groups: + operator: AND + groups: + 1: AND + 2: OR + style: + type: default + options: + grouping: { } + row_class: '' + default_row_class: true + row: + type: ui_patterns + options: + inline: { } + separator: '' + hide_empty: false + default_field_elements: true + query: + type: views_query + options: + query_comment: '' + disable_sql_rewrite: false + distinct: false + replica: false + query_tags: { } + relationships: + field_hs_course_section_instruc: + id: field_hs_course_section_instruc + table: node__field_hs_course_section_instruc + field: field_hs_course_section_instruc + relationship: none + group_type: group + admin_label: 'field_hs_course_section_instruc: Course Collections' + plugin_id: standard + required: false + use_ajax: true + group_by: false + header: + area: + id: area + table: views + field: area + relationship: none + group_type: group + admin_label: '' + plugin_id: text + empty: false + content: + value: "
\r\n Title\r\n
\r\n
\r\n Instructor\r\n
\r\n
\r\n Quarter\r\n
\r\n
\r\n Day, Time, Location\r\n
" + format: basic_html + tokenize: false + footer: { } + display_extenders: { } + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url + - 'user.node_grants:view' + - user.permissions + tags: + - 'config:field.storage.node.field_hs_course_academic_year' + - 'config:field.storage.node.field_hs_course_code' + - 'config:field.storage.node.field_hs_course_section_days' + - 'config:field.storage.node.field_hs_course_section_end_time' + - 'config:field.storage.node.field_hs_course_section_instruc' + - 'config:field.storage.node.field_hs_course_section_quarter' + - 'config:field.storage.node.field_hs_course_section_st_time' + - 'config:field.storage.node.field_hs_course_subject' + list: + id: list + display_title: 'All List' + display_plugin: block + position: 1 + display_options: + style: + type: pattern + options: + pattern: table_pattern + pattern_mapping: + rows: + destination: items + weight: '0' + title: + destination: '' + weight: '0' + 'header:area': + destination: header + weight: '0' + row: + type: ui_patterns + options: + default_field_elements: 1 + inline: + field_hs_course_subject: 0 + field_hs_course_code: 0 + title: 0 + field_hs_course_section_instruc: 0 + field_hs_course_academic_year: 0 + field_hs_course_section_quarter: 0 + field_hs_course_section_days: 0 + field_hs_course_section_st_time: 0 + field_hs_course_section_end_time: 0 + separator: '' + hide_empty: 0 + pattern: table_row + pattern_mapping: + 'views_row:field_hs_course_code': + destination: column_1 + weight: 0 + plugin: views_row + source: field_hs_course_code + 'views_row:field_hs_course_section_st_time': + destination: column_4 + weight: 1 + plugin: views_row + source: field_hs_course_section_st_time + 'views_row:title': + destination: column_1 + weight: 2 + plugin: views_row + source: title + 'views_row:field_hs_course_section_instruc': + destination: column_2 + weight: 3 + plugin: views_row + source: field_hs_course_section_instruc + 'views_row:field_hs_course_academic_year': + destination: column_3 + weight: 4 + plugin: views_row + source: field_hs_course_academic_year + 'views_row:field_hs_course_section_quarter': + destination: column_3 + weight: 5 + plugin: views_row + source: field_hs_course_section_quarter + 'views_row:field_hs_course_section_days': + destination: column_4 + weight: 6 + plugin: views_row + source: field_hs_course_section_days + 'views_row:field_hs_course_section_end_time': + destination: column_4 + weight: 7 + plugin: views_row + source: field_hs_course_section_end_time + defaults: + style: false + row: false + display_description: '' + exposed_block: true + display_extenders: { } + block_category: 'Courses (Views)' + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url + - 'user.node_grants:view' + - user.permissions + tags: + - 'config:field.storage.node.field_hs_course_academic_year' + - 'config:field.storage.node.field_hs_course_code' + - 'config:field.storage.node.field_hs_course_section_days' + - 'config:field.storage.node.field_hs_course_section_end_time' + - 'config:field.storage.node.field_hs_course_section_instruc' + - 'config:field.storage.node.field_hs_course_section_quarter' + - 'config:field.storage.node.field_hs_course_section_st_time' + - 'config:field.storage.node.field_hs_course_subject' + not_offered_list: + id: not_offered_list + display_title: 'Not Currently Offered' + display_plugin: block + position: 2 + display_options: + filters: + status: + id: status + table: node_field_data + field: status + entity_type: node + entity_field: status + plugin_id: boolean + value: '1' + group: 1 + expose: + operator: '' + operator_limit_selection: false + operator_list: { } + type: + id: type + table: node_field_data + field: type + entity_type: node + entity_field: type + plugin_id: bundle + value: + hs_course: hs_course + group: 1 + expose: + operator_limit_selection: false + operator_list: { } + field_hs_course_section_id_value: + id: field_hs_course_section_id_value + table: node__field_hs_course_section_id + field: field_hs_course_section_id_value + relationship: none + group_type: group + admin_label: '' + plugin_id: numeric + operator: empty + value: + min: '' + max: '' + value: '' + group: 1 + exposed: false + expose: + operator_id: '' + label: '' + description: '' + use_operator: false + operator: '' + operator_limit_selection: false + operator_list: { } + identifier: '' + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + min_placeholder: '' + max_placeholder: '' + placeholder: '' + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + title: + id: title + table: node_field_data + field: title + relationship: none + group_type: group + admin_label: '' + entity_type: node + entity_field: title + plugin_id: string + operator: word + value: '' + group: 1 + exposed: true + expose: + operator_id: title_op + label: 'Search by Title' + description: '' + use_operator: false + operator: title_op + operator_limit_selection: false + operator_list: { } + identifier: title + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + contributor: '0' + site_manager: '0' + seven_admin_theme_user: '0' + placeholder: '' + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + field_hs_course_section_quarter_value: + id: field_hs_course_section_quarter_value + table: node__field_hs_course_section_quarter + field: field_hs_course_section_quarter_value + relationship: none + group_type: group + admin_label: '' + plugin_id: list_field + operator: or + value: { } + group: 1 + exposed: true + expose: + operator_id: field_hs_course_section_quarter_value_op + label: Quarter + description: '' + use_operator: false + operator: field_hs_course_section_quarter_value_op + operator_limit_selection: false + operator_list: { } + identifier: quarter + required: false + remember: false + multiple: true + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + contributor: '0' + site_manager: '0' + seven_admin_theme_user: '0' + reduce: false + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + reduce_duplicates: false + field_hs_course_requirements_value: + id: field_hs_course_requirements_value + table: node__field_hs_course_requirements + field: field_hs_course_requirements_value + relationship: none + group_type: group + admin_label: '' + plugin_id: string + operator: word + value: '' + group: 1 + exposed: true + expose: + operator_id: field_hs_course_requirements_value_op + label: 'Concentration or Requirements' + description: '' + use_operator: false + operator: field_hs_course_requirements_value_op + operator_limit_selection: false + operator_list: { } + identifier: reqs + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + contributor: '0' + site_manager: '0' + seven_admin_theme_user: '0' + placeholder: '' + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + field_hs_course_academic_career_value: + id: field_hs_course_academic_career_value + table: node__field_hs_course_academic_career + field: field_hs_course_academic_career_value + relationship: none + group_type: group + admin_label: '' + plugin_id: list_field + operator: or + value: { } + group: 1 + exposed: true + expose: + operator_id: field_hs_course_academic_career_value_op + label: Undergrad/Grad + description: '' + use_operator: false + operator: field_hs_course_academic_career_value_op + operator_limit_selection: false + operator_list: { } + identifier: academic_career + required: false + remember: false + multiple: true + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + contributor: '0' + site_manager: '0' + seven_admin_theme_user: '0' + reduce: false + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + reduce_duplicates: false + title_1: + id: title_1 + table: hs_entity + field: label + relationship: field_hs_course_section_instruc + group_type: group + admin_label: '' + entity_type: hs_entity + entity_field: label + plugin_id: string + operator: word + value: '' + group: 1 + exposed: true + expose: + operator_id: title_1_op + label: Instructor + description: '' + use_operator: false + operator: title_1_op + operator_limit_selection: false + operator_list: { } + identifier: instructor + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + contributor: '0' + site_manager: '0' + seven_admin_theme_user: '0' + placeholder: '' + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + delta_1: + id: delta_1 + table: node__field_hs_course_section_instruc + field: delta + relationship: none + group_type: group + admin_label: '' + plugin_id: numeric + operator: empty + value: + min: '' + max: '' + value: '' + group: 2 + exposed: false + expose: + operator_id: '' + label: '' + description: '' + use_operator: false + operator: '' + operator_limit_selection: false + operator_list: { } + identifier: '' + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + min_placeholder: '' + max_placeholder: '' + placeholder: '' + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + delta: + id: delta + table: node__field_hs_course_section_instruc + field: delta + relationship: none + group_type: group + admin_label: '' + plugin_id: numeric + operator: '=' + value: + min: '' + max: '' + value: '0' + group: 2 + exposed: false + expose: + operator_id: '' + label: '' + description: '' + use_operator: false + operator: '' + operator_limit_selection: false + operator_list: { } + identifier: '' + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + min_placeholder: '' + max_placeholder: '' + placeholder: '' + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + filter_groups: + operator: AND + groups: + 1: AND + 2: OR + style: + type: pattern + options: + pattern: table_pattern + pattern_mapping: + rows: + destination: items + weight: '0' + title: + destination: '' + weight: '0' + 'header:area': + destination: header + weight: '0' + row: + type: ui_patterns + options: + default_field_elements: 1 + inline: + field_hs_course_subject: 0 + field_hs_course_code: 0 + title: 0 + field_hs_course_section_instruc: 0 + field_hs_course_academic_year: 0 + field_hs_course_section_quarter: 0 + field_hs_course_section_days: 0 + field_hs_course_section_st_time: 0 + field_hs_course_section_end_time: 0 + separator: '' + hide_empty: 0 + pattern: table_row + pattern_mapping: + 'views_row:field_hs_course_subject': + destination: column_1 + weight: 0 + plugin: views_row + source: field_hs_course_subject + 'views_row:field_hs_course_code': + destination: column_1 + weight: 1 + plugin: views_row + source: field_hs_course_code + 'views_row:title': + destination: column_1 + weight: 2 + plugin: views_row + source: title + 'views_row:field_hs_course_section_instruc': + destination: column_2 + weight: 3 + plugin: views_row + source: field_hs_course_section_instruc + 'views_row:field_hs_course_academic_year': + destination: column_3 + weight: 4 + plugin: views_row + source: field_hs_course_academic_year + 'views_row:field_hs_course_section_quarter': + destination: column_3 + weight: 5 + plugin: views_row + source: field_hs_course_section_quarter + 'views_row:field_hs_course_section_days': + destination: column_4 + weight: 6 + plugin: views_row + source: field_hs_course_section_days + 'views_row:field_hs_course_section_st_time': + destination: column_4 + weight: 7 + plugin: views_row + source: field_hs_course_section_st_time + 'views_row:field_hs_course_section_end_time': + destination: column_4 + weight: 8 + plugin: views_row + source: field_hs_course_section_end_time + defaults: + style: false + row: false + filters: false + filter_groups: false + display_description: '' + display_extenders: { } + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url + - 'user.node_grants:view' + - user.permissions + tags: + - 'config:field.storage.node.field_hs_course_academic_year' + - 'config:field.storage.node.field_hs_course_code' + - 'config:field.storage.node.field_hs_course_section_days' + - 'config:field.storage.node.field_hs_course_section_end_time' + - 'config:field.storage.node.field_hs_course_section_instruc' + - 'config:field.storage.node.field_hs_course_section_quarter' + - 'config:field.storage.node.field_hs_course_section_st_time' + - 'config:field.storage.node.field_hs_course_subject' + offered_list: + id: offered_list + display_title: 'Currently Offered' + display_plugin: block + position: 2 + display_options: + filters: + status: + id: status + table: node_field_data + field: status + entity_type: node + entity_field: status + plugin_id: boolean + value: '1' + group: 1 + expose: + operator: '' + operator_limit_selection: false + operator_list: { } + type: + id: type + table: node_field_data + field: type + entity_type: node + entity_field: type + plugin_id: bundle + value: + hs_course: hs_course + group: 1 + expose: + operator_limit_selection: false + operator_list: { } + field_hs_course_section_id_value: + id: field_hs_course_section_id_value + table: node__field_hs_course_section_id + field: field_hs_course_section_id_value + relationship: none + group_type: group + admin_label: '' + plugin_id: numeric + operator: '>=' + value: + min: '' + max: '' + value: '1' + group: 1 + exposed: false + expose: + operator_id: '' + label: '' + description: '' + use_operator: false + operator: '' + operator_limit_selection: false + operator_list: { } + identifier: '' + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + min_placeholder: '' + max_placeholder: '' + placeholder: '' + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + title: + id: title + table: node_field_data + field: title + relationship: none + group_type: group + admin_label: '' + entity_type: node + entity_field: title + plugin_id: string + operator: word + value: '' + group: 1 + exposed: true + expose: + operator_id: title_op + label: 'Search by Title' + description: '' + use_operator: false + operator: title_op + operator_limit_selection: false + operator_list: { } + identifier: title + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + contributor: '0' + site_manager: '0' + seven_admin_theme_user: '0' + placeholder: '' + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + field_hs_course_section_quarter_value: + id: field_hs_course_section_quarter_value + table: node__field_hs_course_section_quarter + field: field_hs_course_section_quarter_value + relationship: none + group_type: group + admin_label: '' + plugin_id: list_field + operator: or + value: { } + group: 1 + exposed: true + expose: + operator_id: field_hs_course_section_quarter_value_op + label: Quarter + description: '' + use_operator: false + operator: field_hs_course_section_quarter_value_op + operator_limit_selection: false + operator_list: { } + identifier: quarter + required: false + remember: false + multiple: true + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + contributor: '0' + site_manager: '0' + seven_admin_theme_user: '0' + reduce: false + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + reduce_duplicates: false + field_hs_course_requirements_value: + id: field_hs_course_requirements_value + table: node__field_hs_course_requirements + field: field_hs_course_requirements_value + relationship: none + group_type: group + admin_label: '' + plugin_id: string + operator: word + value: '' + group: 1 + exposed: true + expose: + operator_id: field_hs_course_requirements_value_op + label: 'Concentration or Requirements' + description: '' + use_operator: false + operator: field_hs_course_requirements_value_op + operator_limit_selection: false + operator_list: { } + identifier: reqs + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + contributor: '0' + site_manager: '0' + seven_admin_theme_user: '0' + placeholder: '' + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + field_hs_course_academic_career_value: + id: field_hs_course_academic_career_value + table: node__field_hs_course_academic_career + field: field_hs_course_academic_career_value + relationship: none + group_type: group + admin_label: '' + plugin_id: list_field + operator: or + value: { } + group: 1 + exposed: true + expose: + operator_id: field_hs_course_academic_career_value_op + label: Undergrad/Grad + description: '' + use_operator: false + operator: field_hs_course_academic_career_value_op + operator_limit_selection: false + operator_list: { } + identifier: academic_career + required: false + remember: false + multiple: true + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + contributor: '0' + site_manager: '0' + seven_admin_theme_user: '0' + reduce: false + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + reduce_duplicates: false + title_1: + id: title_1 + table: hs_entity + field: label + relationship: field_hs_course_section_instruc + group_type: group + admin_label: '' + entity_type: hs_entity + entity_field: label + plugin_id: string + operator: word + value: '' + group: 1 + exposed: true + expose: + operator_id: title_1_op + label: Instructor + description: '' + use_operator: false + operator: title_1_op + operator_limit_selection: false + operator_list: { } + identifier: instructor + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + contributor: '0' + site_manager: '0' + seven_admin_theme_user: '0' + placeholder: '' + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + delta_1: + id: delta_1 + table: node__field_hs_course_section_instruc + field: delta + relationship: none + group_type: group + admin_label: '' + plugin_id: numeric + operator: empty + value: + min: '' + max: '' + value: '' + group: 2 + exposed: false + expose: + operator_id: '' + label: '' + description: '' + use_operator: false + operator: '' + operator_limit_selection: false + operator_list: { } + identifier: '' + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + min_placeholder: '' + max_placeholder: '' + placeholder: '' + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + delta: + id: delta + table: node__field_hs_course_section_instruc + field: delta + relationship: none + group_type: group + admin_label: '' + plugin_id: numeric + operator: '=' + value: + min: '' + max: '' + value: '0' + group: 2 + exposed: false + expose: + operator_id: '' + label: '' + description: '' + use_operator: false + operator: '' + operator_limit_selection: false + operator_list: { } + identifier: '' + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + min_placeholder: '' + max_placeholder: '' + placeholder: '' + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + field_hs_course_section_end_date_value: + id: field_hs_course_section_end_date_value + table: node__field_hs_course_section_end_date + field: field_hs_course_section_end_date_value + relationship: none + group_type: group + admin_label: '' + plugin_id: datetime + operator: '>=' + value: + min: '' + max: '' + value: now + type: offset + group: 1 + exposed: false + expose: + operator_id: '' + label: '' + description: '' + use_operator: false + operator: '' + operator_limit_selection: false + operator_list: { } + identifier: '' + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + min_placeholder: '' + max_placeholder: '' + placeholder: '' + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + field_hs_course_section_st_date_value: + id: field_hs_course_section_st_date_value + table: node__field_hs_course_section_st_date + field: field_hs_course_section_st_date_value + relationship: none + group_type: group + admin_label: '' + plugin_id: datetime + operator: '<=' + value: + min: '' + max: '' + value: 'now +45days' + type: offset + group: 1 + exposed: false + expose: + operator_id: '' + label: '' + description: '' + use_operator: false + operator: '' + operator_limit_selection: false + operator_list: { } + identifier: '' + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + min_placeholder: '' + max_placeholder: '' + placeholder: '' + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + exception: + exception: 1 + start_month: '7' + start_day: '21' + end_month: '9' + end_day: '2' + value: 'now +70days' + filter_groups: + operator: AND + groups: + 1: AND + 2: OR + style: + type: pattern + options: + pattern: table_pattern + pattern_mapping: + rows: + destination: items + weight: '0' + title: + destination: '' + weight: '0' + 'header:area': + destination: header + weight: '0' + 'header:result': + destination: '' + weight: '0' + row: + type: ui_patterns + options: + default_field_elements: 1 + inline: + field_hs_course_subject: 0 + field_hs_course_code: 0 + title: 0 + field_hs_course_section_instruc: 0 + field_hs_course_academic_year: 0 + field_hs_course_section_quarter: 0 + field_hs_course_section_days: 0 + field_hs_course_section_st_time: 0 + field_hs_course_section_end_time: 0 + separator: '' + hide_empty: 0 + pattern: table_row + pattern_mapping: + 'views_row:field_hs_course_subject': + destination: column_1 + weight: 0 + plugin: views_row + source: field_hs_course_subject + 'views_row:field_hs_course_code': + destination: column_1 + weight: 1 + plugin: views_row + source: field_hs_course_code + 'views_row:title': + destination: column_1 + weight: 2 + plugin: views_row + source: title + 'views_row:field_hs_course_section_instruc': + destination: column_2 + weight: 3 + plugin: views_row + source: field_hs_course_section_instruc + 'views_row:field_hs_course_academic_year': + destination: column_3 + weight: 4 + plugin: views_row + source: field_hs_course_academic_year + 'views_row:field_hs_course_section_quarter': + destination: column_3 + weight: 5 + plugin: views_row + source: field_hs_course_section_quarter + 'views_row:field_hs_course_section_days': + destination: column_4 + weight: 6 + plugin: views_row + source: field_hs_course_section_days + 'views_row:field_hs_course_section_st_time': + destination: column_4 + weight: 7 + plugin: views_row + source: field_hs_course_section_st_time + 'views_row:field_hs_course_section_end_time': + destination: column_4 + weight: 8 + plugin: views_row + source: field_hs_course_section_end_time + defaults: + style: false + row: false + filters: false + filter_groups: false + display_description: '' + exposed_block: true + display_extenders: { } + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url + - 'user.node_grants:view' + - user.permissions + tags: + - 'config:field.storage.node.field_hs_course_academic_year' + - 'config:field.storage.node.field_hs_course_code' + - 'config:field.storage.node.field_hs_course_section_days' + - 'config:field.storage.node.field_hs_course_section_end_time' + - 'config:field.storage.node.field_hs_course_section_instruc' + - 'config:field.storage.node.field_hs_course_section_quarter' + - 'config:field.storage.node.field_hs_course_section_st_time' + - 'config:field.storage.node.field_hs_course_subject' diff --git a/docroot/modules/humsci/hs_events/config/install/.htaccess b/docroot/modules/humsci/hs_events/config/install/.htaccess new file mode 100644 index 0000000000..0e4a69afd2 --- /dev/null +++ b/docroot/modules/humsci/hs_events/config/install/.htaccess @@ -0,0 +1,24 @@ +# 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 + \ No newline at end of file diff --git a/docroot/modules/humsci/hs_events/config/install/core.base_field_override.node.hs_event.promote.yml b/docroot/modules/humsci/hs_events/config/install/core.base_field_override.node.hs_event.promote.yml new file mode 100644 index 0000000000..0908921f73 --- /dev/null +++ b/docroot/modules/humsci/hs_events/config/install/core.base_field_override.node.hs_event.promote.yml @@ -0,0 +1,24 @@ +uuid: a2826a56-7eca-48c3-bd81-ec338fb5bd38 +langcode: en +status: true +dependencies: + config: + - node.type.hs_event +_core: + default_config_hash: APgbjC1ePX6t-fZWXg6zSzSetWhZdRDb5y_V9msqvpg +id: node.hs_event.promote +field_name: promote +entity_type: node +bundle: hs_event +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/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.body.yml b/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.body.yml new file mode 100644 index 0000000000..57eccc1e79 --- /dev/null +++ b/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.body.yml @@ -0,0 +1,26 @@ +uuid: e10529a0-4442-4e32-9796-13cf87370a2b +langcode: en +status: true +dependencies: + config: + - field.storage.node.body + - node.type.hs_event + module: + - text +_core: + default_config_hash: weGG4AS2tlJ7sy8ae5nhESz3o376BoGOJOkYkjhvzPw +id: node.hs_event.body +field_name: body +entity_type: node +bundle: hs_event +label: Body +description: '' +required: false +translatable: true +default_value: { } +default_value_callback: '' +settings: + display_summary: true + required_summary: false + allowed_formats: { } +field_type: text_with_summary diff --git a/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_admission.yml b/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_admission.yml new file mode 100644 index 0000000000..a35a996265 --- /dev/null +++ b/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_admission.yml @@ -0,0 +1,28 @@ +uuid: 42843b41-653f-43b6-b27c-e9b0a6ffaf01 +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_hs_event_admission + - filter.format.minimal_html + - filter.format.plain_text + - node.type.hs_event + module: + - text +_core: + default_config_hash: OsXGBAd_oCkXVZVqBY7uLDTO9DEu4MzNCyrgdAW8dE8 +id: node.hs_event.field_hs_event_admission +field_name: field_hs_event_admission +entity_type: node +bundle: hs_event +label: 'Admission Information' +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: + allowed_formats: + - minimal_html + - plain_text +field_type: text_long diff --git a/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_audience.yml b/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_audience.yml new file mode 100644 index 0000000000..703c38ef64 --- /dev/null +++ b/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_audience.yml @@ -0,0 +1,30 @@ +uuid: 522b4abd-e746-4831-9cdf-4e1e2f3faf1b +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_hs_event_audience + - node.type.hs_event + - taxonomy.vocabulary.hs_event_audience +_core: + default_config_hash: 08NzAzU9GFcwC5KCTXbgs7RQYW9auenxYjV_UnyzFbA +id: node.hs_event.field_hs_event_audience +field_name: field_hs_event_audience +entity_type: node +bundle: hs_event +label: Audience +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: + handler: 'default:taxonomy_term' + handler_settings: + target_bundles: + hs_event_audience: hs_event_audience + sort: + field: _none + auto_create: true + auto_create_bundle: '' +field_type: entity_reference diff --git a/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_category.yml b/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_category.yml new file mode 100644 index 0000000000..5b22a3cfbb --- /dev/null +++ b/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_category.yml @@ -0,0 +1,30 @@ +uuid: 04ff3137-6c4c-4168-acaf-c92d1a90474b +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_hs_event_category + - node.type.hs_event + - taxonomy.vocabulary.hs_event_category +_core: + default_config_hash: uJIHKuetZ-gelUhrgjtrXSm-admYJ1E281nvZhD2jVA +id: node.hs_event.field_hs_event_category +field_name: field_hs_event_category +entity_type: node +bundle: hs_event +label: Category +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: + handler: 'default:taxonomy_term' + handler_settings: + target_bundles: + hs_event_category: hs_event_category + sort: + field: _none + auto_create: true + auto_create_bundle: '' +field_type: entity_reference diff --git a/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_contact_email.yml b/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_contact_email.yml new file mode 100644 index 0000000000..905b345a5e --- /dev/null +++ b/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_contact_email.yml @@ -0,0 +1,21 @@ +uuid: 5aa50761-35a3-4ac5-932b-37502b7e89f9 +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_hs_event_contact_email + - node.type.hs_event +_core: + default_config_hash: U-4uU9u441gP69vofeokosPIFN0lMlq9i-zXN9hKa1w +id: node.hs_event.field_hs_event_contact_email +field_name: field_hs_event_contact_email +entity_type: node +bundle: hs_event +label: 'Contact Email' +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: email diff --git a/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_contact_phone.yml b/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_contact_phone.yml new file mode 100644 index 0000000000..1ddb7a29d3 --- /dev/null +++ b/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_contact_phone.yml @@ -0,0 +1,23 @@ +uuid: e15c0c7f-6f68-4e8e-b421-bdc5c42a6f93 +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_hs_event_contact_phone + - node.type.hs_event + module: + - telephone +_core: + default_config_hash: VzBiBAEnRSqoyK9IhYZ6Up_zUIiwo-Eo8JZRqMCaXTw +id: node.hs_event.field_hs_event_contact_phone +field_name: field_hs_event_contact_phone +entity_type: node +bundle: hs_event +label: 'Contact Phone Number' +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: telephone diff --git a/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_date.yml b/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_date.yml new file mode 100644 index 0000000000..e0952f50e2 --- /dev/null +++ b/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_date.yml @@ -0,0 +1,26 @@ +uuid: 9e106871-97fc-4960-ac4f-f24a78ca7da6 +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_hs_event_date + - node.type.hs_event + module: + - smart_date +id: node.hs_event.field_hs_event_date +field_name: field_hs_event_date +entity_type: node +bundle: hs_event +label: 'Date Range' +description: '' +required: false +translatable: false +default_value: + - + default_duration: 0 + default_duration_increments: "30\r\n60|1 hour\r\n90\r\n120|2 hours\r\ncustom" + default_date_type: '' + default_date: '' +default_value_callback: '' +settings: { } +field_type: smartdate diff --git a/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_image.yml b/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_image.yml new file mode 100644 index 0000000000..5fb0511f1f --- /dev/null +++ b/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_image.yml @@ -0,0 +1,30 @@ +uuid: f5c1be2b-d03c-44bd-bfe3-02803e4c52a3 +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_hs_event_image + - media.type.image + - node.type.hs_event +_core: + default_config_hash: Xi3G0oPgFXUFsAT-slXLLBjwHv1IRJfzkHMBvGI7yMk +id: node.hs_event.field_hs_event_image +field_name: field_hs_event_image +entity_type: node +bundle: hs_event +label: Image +description: '' +required: false +translatable: true +default_value: { } +default_value_callback: '' +settings: + handler: 'default:media' + handler_settings: + target_bundles: + image: image + sort: + field: _none + auto_create: false + auto_create_bundle: '' +field_type: entity_reference diff --git a/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_link.yml b/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_link.yml new file mode 100644 index 0000000000..3c5c434848 --- /dev/null +++ b/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_link.yml @@ -0,0 +1,25 @@ +uuid: 8d57c28a-0199-4449-8704-b5e570ef6225 +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_hs_event_link + - node.type.hs_event + module: + - link +_core: + default_config_hash: reUNFaZWSR8oQ3kv3gl1ha9kpuJf1r4bpk4-ZB4Hp1U +id: node.hs_event.field_hs_event_link +field_name: field_hs_event_link +entity_type: node +bundle: hs_event +label: 'Event Link' +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: + title: 1 + link_type: 17 +field_type: link diff --git a/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_location.yml b/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_location.yml new file mode 100644 index 0000000000..0723ed71ab --- /dev/null +++ b/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_location.yml @@ -0,0 +1,21 @@ +uuid: 2684181e-5f56-46cf-ae73-6a7fa6be6a11 +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_hs_event_location + - node.type.hs_event +_core: + default_config_hash: nUA3VNhvTsp8uf-wpGuYN2wJY30jgwEACYl7hozoftM +id: node.hs_event.field_hs_event_location +field_name: field_hs_event_location +entity_type: node +bundle: hs_event +label: Location +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: string_long diff --git a/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_map_link.yml b/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_map_link.yml new file mode 100644 index 0000000000..57ddfcbad5 --- /dev/null +++ b/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_map_link.yml @@ -0,0 +1,25 @@ +uuid: 1a2763a8-8dd8-45c9-9620-02c34ac563d1 +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_hs_event_map_link + - node.type.hs_event + module: + - link +_core: + default_config_hash: KAr_yv3qd1o5hbHsE0ckfvyggezeRJSJq9fq2EUN5jk +id: node.hs_event.field_hs_event_map_link +field_name: field_hs_event_map_link +entity_type: node +bundle: hs_event +label: 'Map Link' +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: + title: 1 + link_type: 17 +field_type: link diff --git a/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_series.yml b/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_series.yml new file mode 100644 index 0000000000..d5e810efd2 --- /dev/null +++ b/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_series.yml @@ -0,0 +1,31 @@ +uuid: 90825bcd-4bbb-43e7-b9e9-9f2fb365f49b +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_hs_event_series + - node.type.hs_event + - node.type.hs_event_series +_core: + default_config_hash: Fv1kwJLz1pnmVOMwzwHbv8UsbF6SuWCXD7Cz6wUXnlw +id: node.hs_event.field_hs_event_series +field_name: field_hs_event_series +entity_type: node +bundle: hs_event +label: 'Event Series' +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: + handler: 'default:node' + handler_settings: + target_bundles: + hs_event_series: hs_event_series + sort: + field: title + direction: ASC + auto_create: false + auto_create_bundle: '' +field_type: entity_reference diff --git a/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_speaker.yml b/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_speaker.yml new file mode 100644 index 0000000000..b8cffd8bf2 --- /dev/null +++ b/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_speaker.yml @@ -0,0 +1,30 @@ +uuid: f895cb4a-1b05-40e6-a711-b0f7da0c9e40 +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_hs_event_speaker + - node.type.hs_event +_core: + default_config_hash: 4xGrQJ4s8WhZhKnySZZI6nnswVgZmhEI21ab1EBGk58 +id: node.hs_event.field_hs_event_speaker +field_name: field_hs_event_speaker +entity_type: node +bundle: hs_event +label: Speaker +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: + handler: 'default:hs_entity' + handler_settings: + target_bundles: + event_collections__speaker: event_collections__speaker + sort: + field: label + direction: ASC + auto_create: true + auto_create_bundle: '' +field_type: entity_reference diff --git a/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_sponsor.yml b/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_sponsor.yml new file mode 100644 index 0000000000..f77e284f54 --- /dev/null +++ b/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_sponsor.yml @@ -0,0 +1,21 @@ +uuid: 22e309e7-f915-4d47-8fcf-94fe11340158 +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_hs_event_sponsor + - node.type.hs_event +_core: + default_config_hash: eltVPn4YYn97hN8GaisB1VTdLQIf3YME9LfxVVdZKn0 +id: node.hs_event.field_hs_event_sponsor +field_name: field_hs_event_sponsor +entity_type: node +bundle: hs_event +label: 'Event Sponsor' +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: string_long diff --git a/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_status.yml b/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_status.yml new file mode 100644 index 0000000000..e3328c005f --- /dev/null +++ b/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_status.yml @@ -0,0 +1,31 @@ +uuid: ba7a89eb-7dd4-4bc2-b31c-fb9e9dd7506c +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_hs_event_status + - node.type.hs_event + - taxonomy.vocabulary.hs_event_status +_core: + default_config_hash: qUWFx4bzUfzl714O4z3Xxd5jZv48299_eZEmKV7B4J4 +id: node.hs_event.field_hs_event_status +field_name: field_hs_event_status +entity_type: node +bundle: hs_event +label: Status +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: + handler: 'default:taxonomy_term' + handler_settings: + target_bundles: + hs_event_status: hs_event_status + sort: + field: name + direction: asc + auto_create: false + auto_create_bundle: '' +field_type: entity_reference diff --git a/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_type.yml b/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_type.yml new file mode 100644 index 0000000000..7f09ddff25 --- /dev/null +++ b/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_type.yml @@ -0,0 +1,31 @@ +uuid: 01e5d8e6-df9f-4cf8-868c-feafc399b6ea +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_hs_event_type + - node.type.hs_event + - taxonomy.vocabulary.hs_event_type +_core: + default_config_hash: iCxZa5PU2zyRarWhp_fPz3OY-x1UPYHA4tMNsvG-Kik +id: node.hs_event.field_hs_event_type +field_name: field_hs_event_type +entity_type: node +bundle: hs_event +label: 'Event Type' +description: 'Select which type of event this is.' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: + handler: 'default:taxonomy_term' + handler_settings: + target_bundles: + hs_event_type: hs_event_type + sort: + field: name + direction: asc + auto_create: true + auto_create_bundle: '' +field_type: entity_reference diff --git a/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_video.yml b/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_video.yml new file mode 100644 index 0000000000..af9c6e5c04 --- /dev/null +++ b/docroot/modules/humsci/hs_events/config/install/field.field.node.hs_event.field_hs_event_video.yml @@ -0,0 +1,30 @@ +uuid: a0901a18-0e6f-43dd-aeff-8b12499ae37b +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_hs_event_video + - media.type.video + - node.type.hs_event +_core: + default_config_hash: h0-JqHqPKmmEH1F8rfAtXbattiTnV62CBMZLq1ZNEcA +id: node.hs_event.field_hs_event_video +field_name: field_hs_event_video +entity_type: node +bundle: hs_event +label: 'Event Video' +description: '' +required: false +translatable: true +default_value: { } +default_value_callback: '' +settings: + handler: 'default:media' + handler_settings: + target_bundles: + video: video + sort: + field: _none + auto_create: false + auto_create_bundle: '' +field_type: entity_reference diff --git a/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_admission.yml b/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_admission.yml new file mode 100644 index 0000000000..ac2519b015 --- /dev/null +++ b/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_admission.yml @@ -0,0 +1,21 @@ +uuid: 01109459-1861-4184-8b7b-f1a4ca943c8e +langcode: en +status: true +dependencies: + module: + - node + - text +_core: + default_config_hash: GvUf9pWf6DdxwkyOocTCrfeP6sZpP6bLtoY5lSNjK5E +id: node.field_hs_event_admission +field_name: field_hs_event_admission +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/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_audience.yml b/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_audience.yml new file mode 100644 index 0000000000..d409503cd0 --- /dev/null +++ b/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_audience.yml @@ -0,0 +1,22 @@ +uuid: 3f39bca6-f9ad-4b0a-82d6-6cb046dfe9d1 +langcode: en +status: true +dependencies: + module: + - node + - taxonomy +_core: + default_config_hash: mXjw2bUdcQoMWdPxdGUMiroW9UGAG22Cyw9ICX-7e9E +id: node.field_hs_event_audience +field_name: field_hs_event_audience +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/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_category.yml b/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_category.yml new file mode 100644 index 0000000000..4f5edd6ac4 --- /dev/null +++ b/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_category.yml @@ -0,0 +1,22 @@ +uuid: 2ca3ff6c-2999-47bb-8a90-19e08b3578af +langcode: en +status: true +dependencies: + module: + - node + - taxonomy +_core: + default_config_hash: 2SbsJEGfbq-aDUM8sx8JbbupJAlqIhhoqqwSEdLcD48 +id: node.field_hs_event_category +field_name: field_hs_event_category +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/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_contact_email.yml b/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_contact_email.yml new file mode 100644 index 0000000000..060a6bd994 --- /dev/null +++ b/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_contact_email.yml @@ -0,0 +1,20 @@ +uuid: ed462387-ff50-429e-8c83-07e3d7a4fa44 +langcode: en +status: true +dependencies: + module: + - node +_core: + default_config_hash: H4S4LVhkrp9OFOAtWJjtvDwd_PZQmbFoPmLMSuJUc1Q +id: node.field_hs_event_contact_email +field_name: field_hs_event_contact_email +entity_type: node +type: email +settings: { } +module: core +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_contact_phone.yml b/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_contact_phone.yml new file mode 100644 index 0000000000..6c4d4b4512 --- /dev/null +++ b/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_contact_phone.yml @@ -0,0 +1,21 @@ +uuid: c5802e9c-f121-4256-857c-359c5fa2f1c4 +langcode: en +status: true +dependencies: + module: + - node + - telephone +_core: + default_config_hash: '-5qwpdcpsr896G87dFV1uxkHbjwC4puoz1T4gBBoTdM' +id: node.field_hs_event_contact_phone +field_name: field_hs_event_contact_phone +entity_type: node +type: telephone +settings: { } +module: telephone +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_date.yml b/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_date.yml new file mode 100644 index 0000000000..ed6885462f --- /dev/null +++ b/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_date.yml @@ -0,0 +1,19 @@ +uuid: e7c58e93-8004-4486-983e-f6c0522f4fde +langcode: en +status: true +dependencies: + module: + - node + - smart_date +id: node.field_hs_event_date +field_name: field_hs_event_date +entity_type: node +type: smartdate +settings: { } +module: smart_date +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_image.yml b/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_image.yml new file mode 100644 index 0000000000..af9e4cd10a --- /dev/null +++ b/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_image.yml @@ -0,0 +1,22 @@ +uuid: 3a338949-c462-43c0-82e1-95486f131117 +langcode: en +status: true +dependencies: + module: + - media + - node +_core: + default_config_hash: 4X6o0SQ3The0TzB8EpldNID_xJH5ou4ID_43ueNYP7s +id: node.field_hs_event_image +field_name: field_hs_event_image +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/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_link.yml b/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_link.yml new file mode 100644 index 0000000000..2525c8fea9 --- /dev/null +++ b/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_link.yml @@ -0,0 +1,21 @@ +uuid: 9150782f-9380-4ac6-9f84-bd65a60eeb81 +langcode: en +status: true +dependencies: + module: + - link + - node +_core: + default_config_hash: 8EiTBkWcCniuJmxtKHWk3JJJataFJCNpJCWtKa1z7b8 +id: node.field_hs_event_link +field_name: field_hs_event_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/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_location.yml b/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_location.yml new file mode 100644 index 0000000000..3c5c697449 --- /dev/null +++ b/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_location.yml @@ -0,0 +1,21 @@ +uuid: e80bd5e1-7e45-4cf4-ad2b-4e7af3df9c66 +langcode: en +status: true +dependencies: + module: + - node +_core: + default_config_hash: iB3KuCe9UluW4er3vQNNM5D6AX2m2tTB5Km2OjVvwDw +id: node.field_hs_event_location +field_name: field_hs_event_location +entity_type: node +type: string_long +settings: + case_sensitive: false +module: core +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_map_link.yml b/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_map_link.yml new file mode 100644 index 0000000000..c46423c615 --- /dev/null +++ b/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_map_link.yml @@ -0,0 +1,21 @@ +uuid: c04b7fea-35ee-4d03-bde9-4449f033bc03 +langcode: en +status: true +dependencies: + module: + - link + - node +_core: + default_config_hash: rV_SCOfPR7C1yfSaWSAb__-lTRmor1MXKBOQzde5LkA +id: node.field_hs_event_map_link +field_name: field_hs_event_map_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/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_series.yml b/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_series.yml new file mode 100644 index 0000000000..6bfa2d2f2a --- /dev/null +++ b/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_series.yml @@ -0,0 +1,21 @@ +uuid: 9510b8c6-aa1f-4204-95e9-90223e5b5455 +langcode: en +status: true +dependencies: + module: + - node +_core: + default_config_hash: RfdV_xyOISKmTTQCsMAjnxCWEgp4l16ZjR_OJR4UfYo +id: node.field_hs_event_series +field_name: field_hs_event_series +entity_type: node +type: entity_reference +settings: + target_type: node +module: core +locked: false +cardinality: -1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_speaker.yml b/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_speaker.yml new file mode 100644 index 0000000000..83e995a78f --- /dev/null +++ b/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_speaker.yml @@ -0,0 +1,22 @@ +uuid: e92c75f6-bcc3-4d92-8205-7e13cbd215ce +langcode: en +status: true +dependencies: + module: + - hs_entities + - node +_core: + default_config_hash: 8Uhp2twGSrzMJMCte4pOAKL9wkyixWMK727IQKVDCII +id: node.field_hs_event_speaker +field_name: field_hs_event_speaker +entity_type: node +type: entity_reference +settings: + target_type: hs_entity +module: core +locked: false +cardinality: -1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_sponsor.yml b/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_sponsor.yml new file mode 100644 index 0000000000..73548cc6a5 --- /dev/null +++ b/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_sponsor.yml @@ -0,0 +1,21 @@ +uuid: 0efb3d54-9fab-407a-a072-9b779eae9e64 +langcode: en +status: true +dependencies: + module: + - node +_core: + default_config_hash: 6rULY3c8kXDC7uiyP-VMigNBLFDCONe2mKfAYDs2Ou4 +id: node.field_hs_event_sponsor +field_name: field_hs_event_sponsor +entity_type: node +type: string_long +settings: + case_sensitive: false +module: core +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_status.yml b/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_status.yml new file mode 100644 index 0000000000..38b764612f --- /dev/null +++ b/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_status.yml @@ -0,0 +1,22 @@ +uuid: f6be1b90-89a0-4d61-aeb2-20c277f80f47 +langcode: en +status: true +dependencies: + module: + - node + - taxonomy +_core: + default_config_hash: 8rf_JMytNG24QRXBSD2UgWZAyHxCPFc4VLN9Mcl47BU +id: node.field_hs_event_status +field_name: field_hs_event_status +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/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_type.yml b/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_type.yml new file mode 100644 index 0000000000..cfe468ec84 --- /dev/null +++ b/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_type.yml @@ -0,0 +1,22 @@ +uuid: 5a97b361-d8f3-4bd7-ae85-6f45ff0dacfa +langcode: en +status: true +dependencies: + module: + - node + - taxonomy +_core: + default_config_hash: Uvebwd5grGrDvWBJftww8nJlAcwlHoD1hEs1w66jW8k +id: node.field_hs_event_type +field_name: field_hs_event_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/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_video.yml b/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_video.yml new file mode 100644 index 0000000000..311e01d3fb --- /dev/null +++ b/docroot/modules/humsci/hs_events/config/install/field.storage.node.field_hs_event_video.yml @@ -0,0 +1,22 @@ +uuid: a2f947c2-bbc4-4d2b-8451-bc7690560efb +langcode: en +status: true +dependencies: + module: + - media + - node +_core: + default_config_hash: UJdqPAM-CNvhAwpATrJ1SKFg9rpThd7ztYJnuFgr_bY +id: node.field_hs_event_video +field_name: field_hs_event_video +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/docroot/modules/humsci/hs_events/config/install/node.type.hs_event.yml b/docroot/modules/humsci/hs_events/config/install/node.type.hs_event.yml new file mode 100644 index 0000000000..271b9861d6 --- /dev/null +++ b/docroot/modules/humsci/hs_events/config/install/node.type.hs_event.yml @@ -0,0 +1,23 @@ +uuid: cfe7a7d0-1c1f-475a-9ef8-7d8244e366bb +langcode: en +status: true +dependencies: + module: + - node_revision_delete +third_party_settings: + menu_ui: + available_menus: { } + parent: '' + node_revision_delete: + minimum_revisions_to_keep: 5 + minimum_age_to_delete: 0 + when_to_delete: 0 +_core: + default_config_hash: _RqEpKFtMIL9phINGaFF5UMPY919G_-TEZEbMFHaBII +name: Event +type: hs_event +description: 'An event pulled in from events-legacy.stanford.edu or local event.' +help: '' +new_revision: true +preview_mode: 0 +display_submitted: false diff --git a/docroot/modules/humsci/hs_events/config/install/pathauto.pattern.hs_events.yml b/docroot/modules/humsci/hs_events/config/install/pathauto.pattern.hs_events.yml new file mode 100644 index 0000000000..36c6acce2c --- /dev/null +++ b/docroot/modules/humsci/hs_events/config/install/pathauto.pattern.hs_events.yml @@ -0,0 +1,24 @@ +uuid: c2cf433a-d16b-462e-98dd-5e80cf20e0a7 +langcode: en +status: true +dependencies: + module: + - node +_core: + default_config_hash: '-dPJrNitUDxRJ58vkbfFBNSXyBMEWH6LFDqHUYk8rcg' +id: hs_events +label: 'Events Content' +type: 'canonical_entities:node' +pattern: 'events/[node:title]' +selection_criteria: + 2fdaa554-3a98-4a9e-9518-60752d37935a: + id: 'entity_bundle:node' + negate: false + uuid: 2fdaa554-3a98-4a9e-9518-60752d37935a + context_mapping: + node: node + bundles: + hs_event: hs_event +selection_logic: and +weight: -5 +relationships: { } diff --git a/docroot/modules/humsci/hs_events/config/install/taxonomy.vocabulary.hs_event_audience.yml b/docroot/modules/humsci/hs_events/config/install/taxonomy.vocabulary.hs_event_audience.yml new file mode 100644 index 0000000000..1db1dc10aa --- /dev/null +++ b/docroot/modules/humsci/hs_events/config/install/taxonomy.vocabulary.hs_event_audience.yml @@ -0,0 +1,10 @@ +uuid: cbb2ede8-958c-463d-b613-1172df570947 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: CxqCkQSx5gVBQrwxdjpcfi07Y7w_eEDcuZqufJJLanw +name: 'Event Audience' +vid: hs_event_audience +description: '' +weight: 0 diff --git a/docroot/modules/humsci/hs_events/config/install/taxonomy.vocabulary.hs_event_category.yml b/docroot/modules/humsci/hs_events/config/install/taxonomy.vocabulary.hs_event_category.yml new file mode 100644 index 0000000000..7b43607195 --- /dev/null +++ b/docroot/modules/humsci/hs_events/config/install/taxonomy.vocabulary.hs_event_category.yml @@ -0,0 +1,10 @@ +uuid: e562f5d8-bb25-41c1-b5ba-f699cb7dc607 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: J7WT1F4emhKazTQe_1LgVS2N4Nl8N57T0kD13FYz2BA +name: 'Event Category' +vid: hs_event_category +description: '' +weight: 0 diff --git a/docroot/modules/humsci/hs_events/config/install/taxonomy.vocabulary.hs_event_status.yml b/docroot/modules/humsci/hs_events/config/install/taxonomy.vocabulary.hs_event_status.yml new file mode 100644 index 0000000000..823f5b5e65 --- /dev/null +++ b/docroot/modules/humsci/hs_events/config/install/taxonomy.vocabulary.hs_event_status.yml @@ -0,0 +1,10 @@ +uuid: f6c03f6b-da32-4bc7-9ebf-03451b699e83 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: 5svXZ9e6cD6et5Cl7PT38Xb6KsdR7KejS0qZacmo3X8 +name: 'Event Status' +vid: hs_event_status +description: '' +weight: 0 diff --git a/docroot/modules/humsci/hs_events/config/install/taxonomy.vocabulary.hs_event_type.yml b/docroot/modules/humsci/hs_events/config/install/taxonomy.vocabulary.hs_event_type.yml new file mode 100644 index 0000000000..31a1a47de8 --- /dev/null +++ b/docroot/modules/humsci/hs_events/config/install/taxonomy.vocabulary.hs_event_type.yml @@ -0,0 +1,10 @@ +uuid: 149f70f2-8777-4e78-821c-e7e42df885bc +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: cod6oHFlDboim8apSYPgCklUxJfyTAbObPr0uAw6coY +name: 'Event Type' +vid: hs_event_type +description: '' +weight: 0 diff --git a/docroot/modules/humsci/hs_events/config/install/views.view.hs_events.yml b/docroot/modules/humsci/hs_events/config/install/views.view.hs_events.yml new file mode 100644 index 0000000000..828dfccca2 --- /dev/null +++ b/docroot/modules/humsci/hs_events/config/install/views.view.hs_events.yml @@ -0,0 +1,1142 @@ +uuid: e8a625c7-6d7c-4260-94d3-40ae21f5586e +langcode: en +status: false +dependencies: + config: + - core.entity_view_mode.node.hs_horizontal_card + - core.entity_view_mode.node.hs_vertical_card + - field.storage.node.body + - field.storage.node.field_hs_event_image + - field.storage.node.field_hs_event_location + - node.type.hs_event + module: + - node + - smart_date + - stanford_media + - text + - user + - views_infinite_scroll + - views_taxonomy_term_name_depth +_core: + default_config_hash: g0uKHFw1z64oliHrLS0wx65Gr3S8zzHiKjwhp-XIkX8 +id: hs_events +label: Events +module: views +description: '' +tag: '' +base_table: node_field_data +base_field: nid +display: + default: + id: default + display_title: Master + display_plugin: default + position: 0 + display_options: + title: 'Upcoming Events' + fields: + title: + id: title + table: node_field_data + field: title + relationship: none + group_type: group + admin_label: '' + entity_type: node + entity_field: title + plugin_id: field + label: '' + exclude: false + alter: + alter_text: false + make_link: false + absolute: false + word_boundary: false + ellipsis: false + strip_tags: false + trim: false + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: string + settings: + link_to_entity: true + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + body: + id: body + table: node__body + field: body + relationship: none + group_type: group + admin_label: '' + plugin_id: field + label: '' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 300 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: true + preserve_tags: '' + html: true + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: text_default + settings: { } + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + field_hs_event_image: + id: field_hs_event_image + table: node__field_hs_event_image + field: field_hs_event_image + relationship: none + group_type: group + admin_label: '' + plugin_id: field + label: '' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: target_id + type: media_image_formatter + settings: + view_mode: default + link: true + image_style: medium + group_column: target_id + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + field_hs_event_date: + id: field_hs_event_date + table: node__field_hs_event_date + field: field_hs_event_date_value + relationship: none + group_type: group + admin_label: '' + plugin_id: date + label: '' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + date_format: custom + custom_date_format: 'l, F j, Y' + click_sort_column: value + type: datetime_hs + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + field_hs_event_date_1: + id: field_hs_event_date_1 + table: node__field_hs_event_date + field: field_hs_event_date_value + relationship: none + group_type: group + admin_label: 'Content: Date - Time' + plugin_id: date + label: '' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + date_format: custom + custom_date_format: 'g:i A' + click_sort_column: value + type: datetime_hs + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + field_hs_event_location: + id: field_hs_event_location + table: node__field_hs_event_location + field: field_hs_event_location + relationship: none + group_type: group + admin_label: '' + plugin_id: field + label: '' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 150 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: true + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: basic_string + settings: { } + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + pager: + type: infinite_scroll + options: + offset: 0 + items_per_page: 5 + total_pages: null + id: 0 + tags: + next: 'Next ›' + previous: '‹ Previous' + expose: + items_per_page: false + items_per_page_label: 'Items per page' + items_per_page_options: '5, 10, 25, 50' + items_per_page_options_all: false + items_per_page_options_all_label: '- All -' + offset: false + offset_label: Offset + views_infinite_scroll: + button_text: 'Load More' + automatically_load_content: false + exposed_form: + type: basic + options: + submit_button: Apply + reset_button: false + reset_button_label: Reset + exposed_sorts_label: 'Sort by' + expose_sort_order: true + sort_asc_label: Asc + sort_desc_label: Desc + access: + type: perm + options: + perm: 'access content' + cache: + type: tag + options: { } + empty: + area: + id: area + table: views + field: area + relationship: none + group_type: group + admin_label: '' + plugin_id: text + empty: true + content: + value: '

No events to view at this time. Please check back again soon.

' + format: basic_html + tokenize: false + sorts: + field_hs_event_date_value: + id: field_hs_event_date_value + table: node__field_hs_event_date + field: field_hs_event_date_value + relationship: none + group_type: group + admin_label: '' + plugin_id: datetime + order: ASC + expose: + label: '' + field_identifier: field_hs_event_date_value + exposed: false + granularity: second + arguments: { } + filters: + status: + id: status + table: node_field_data + field: status + entity_type: node + entity_field: status + plugin_id: boolean + value: '1' + group: 1 + expose: + operator: '' + operator_limit_selection: false + operator_list: { } + type: + id: type + table: node_field_data + field: type + entity_type: node + entity_field: type + plugin_id: bundle + value: + hs_event: hs_event + expose: + operator_limit_selection: false + operator_list: { } + field_hs_event_date_value: + id: field_hs_event_date_value + table: node__field_hs_event_date + field: field_hs_event_date_value + relationship: none + group_type: group + admin_label: '' + plugin_id: datetime + operator: '>=' + value: + min: '' + max: '' + value: now + type: offset + group: 1 + exposed: false + expose: + operator_id: '' + label: '' + description: '' + use_operator: false + operator: '' + operator_limit_selection: false + operator_list: { } + identifier: '' + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + min_placeholder: '' + max_placeholder: '' + placeholder: '' + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + style: + type: default + row: + type: 'entity:node' + options: + relationship: none + view_mode: hs_horizontal_card + query: + type: views_query + options: + query_comment: '' + disable_sql_rewrite: false + distinct: false + replica: false + query_tags: { } + relationships: { } + use_ajax: true + header: { } + footer: { } + display_extenders: { } + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url.query_args + - 'user.node_grants:view' + - user.permissions + tags: + - 'config:field.storage.node.body' + - 'config:field.storage.node.field_hs_event_date' + - 'config:field.storage.node.field_hs_event_image' + - 'config:field.storage.node.field_hs_event_location' + next_featured: + id: next_featured + display_title: 'Next Upcoming Featured' + display_plugin: block + position: 5 + display_options: + pager: + type: some + options: + offset: 0 + items_per_page: 1 + empty: + view: + id: view + table: views + field: view + relationship: none + group_type: group + admin_label: '' + plugin_id: view + empty: true + view_to_insert: 'hs_events:next_upcoming' + inherit_arguments: false + filters: + status: + id: status + table: node_field_data + field: status + entity_type: node + entity_field: status + plugin_id: boolean + value: '1' + group: 1 + expose: + operator: '' + operator_limit_selection: false + operator_list: { } + type: + id: type + table: node_field_data + field: type + entity_type: node + entity_field: type + plugin_id: bundle + value: + hs_event: hs_event + expose: + operator_limit_selection: false + operator_list: { } + field_hs_event_date_value: + id: field_hs_event_date_value + table: node__field_hs_event_date + field: field_hs_event_date_value + relationship: none + group_type: group + admin_label: '' + plugin_id: datetime + operator: '>=' + value: + min: '' + max: '' + value: now + type: offset + group: 1 + exposed: false + expose: + operator_id: '' + label: '' + description: '' + use_operator: false + operator: '' + operator_limit_selection: false + operator_list: { } + identifier: '' + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + min_placeholder: '' + max_placeholder: '' + placeholder: '' + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + promote: + id: promote + table: node_field_data + field: promote + relationship: none + group_type: group + admin_label: '' + entity_type: node + entity_field: promote + plugin_id: boolean + operator: '=' + value: '1' + group: 1 + exposed: false + expose: + operator_id: '' + label: '' + description: '' + use_operator: false + operator: '' + operator_limit_selection: false + operator_list: { } + identifier: '' + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + filter_groups: + operator: AND + groups: + 1: AND + style: + type: default + options: { } + row: + type: 'entity:node' + options: + relationship: none + view_mode: hs_vertical_card + defaults: + empty: false + pager: false + use_more: false + use_more_always: false + use_more_text: false + link_display: false + link_url: false + style: false + row: false + filters: false + filter_groups: false + display_description: '' + use_more: true + use_more_always: false + use_more_text: 'See More Events' + link_display: custom_url + link_url: /events/upcoming-events + display_extenders: { } + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - 'user.node_grants:view' + - user.permissions + tags: + - 'config:field.storage.node.body' + - 'config:field.storage.node.field_hs_event_date' + - 'config:field.storage.node.field_hs_event_image' + - 'config:field.storage.node.field_hs_event_location' + next_upcoming: + id: next_upcoming + display_title: 'Next Upcoming Event' + display_plugin: block + position: 5 + display_options: + pager: + type: some + options: + offset: 0 + items_per_page: 1 + style: + type: default + options: { } + row: + type: 'entity:node' + options: + relationship: none + view_mode: hs_vertical_card + defaults: + pager: false + use_more: false + use_more_always: false + use_more_text: false + link_display: false + link_url: false + style: false + row: false + display_description: '' + use_more: true + use_more_always: true + use_more_text: 'See More Events' + link_display: custom_url + link_url: /events/upcoming-events + display_extenders: { } + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - 'user.node_grants:view' + - user.permissions + tags: + - 'config:field.storage.node.body' + - 'config:field.storage.node.field_hs_event_date' + - 'config:field.storage.node.field_hs_event_image' + - 'config:field.storage.node.field_hs_event_location' + past_event: + id: past_event + display_title: 'Past Events' + display_plugin: block + position: 2 + display_options: + title: 'Past Events' + sorts: + field_hs_event_date_value: + id: field_hs_event_date_value + table: node__field_hs_event_date + field: field_hs_event_date_value + relationship: none + group_type: group + admin_label: '' + plugin_id: datetime + order: DESC + expose: + label: '' + field_identifier: field_hs_event_date_value + exposed: false + granularity: second + filters: + status: + id: status + table: node_field_data + field: status + entity_type: node + entity_field: status + plugin_id: boolean + value: '1' + group: 1 + expose: + operator: '' + operator_limit_selection: false + operator_list: { } + type: + id: type + table: node_field_data + field: type + entity_type: node + entity_field: type + plugin_id: bundle + value: + hs_event: hs_event + expose: + operator_limit_selection: false + operator_list: { } + field_hs_event_date_value: + id: field_hs_event_date_value + table: node__field_hs_event_date + field: field_hs_event_date_value + relationship: none + group_type: group + admin_label: '' + plugin_id: datetime + operator: '<=' + value: + min: '' + max: '' + value: now + type: offset + group: 1 + exposed: false + expose: + operator_id: '' + label: '' + description: '' + use_operator: false + operator: '' + operator_limit_selection: false + operator_list: { } + identifier: '' + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + min_placeholder: '' + max_placeholder: '' + placeholder: '' + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + filter_groups: + operator: AND + groups: + 1: AND + defaults: + title: false + sorts: false + filters: false + filter_groups: false + display_description: '' + display_extenders: { } + block_hide_empty: true + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url.query_args + - 'user.node_grants:view' + - user.permissions + tags: + - 'config:field.storage.node.body' + - 'config:field.storage.node.field_hs_event_date' + - 'config:field.storage.node.field_hs_event_image' + - 'config:field.storage.node.field_hs_event_location' + past_event_type: + id: past_event_type + display_title: 'Past Event Type' + display_plugin: block + position: 3 + display_options: + title: 'Past Events' + arguments: + term_node_taxonomy_name_depth: + id: term_node_taxonomy_name_depth + table: node_field_data + field: term_node_taxonomy_name_depth + relationship: none + group_type: group + admin_label: '' + entity_type: node + plugin_id: taxonomy_index_name_depth + default_action: 'not found' + exception: + value: all + title_enable: false + title: All + title_enable: false + title: '' + default_argument_type: fixed + default_argument_options: + argument: '' + summary_options: + base_path: '' + count: true + override: false + items_per_page: 25 + summary: + sort_order: asc + number_of_records: 0 + format: default_summary + specify_validation: false + validate: + type: none + fail: 'not found' + validate_options: { } + break_phrase: true + depth: '0' + use_taxonomy_term_path: false + vocabularies: + hs_event_type: hs_event_type + filters: + status: + id: status + table: node_field_data + field: status + entity_type: node + entity_field: status + plugin_id: boolean + value: '1' + group: 1 + expose: + operator: '' + operator_limit_selection: false + operator_list: { } + type: + id: type + table: node_field_data + field: type + entity_type: node + entity_field: type + plugin_id: bundle + value: + hs_event: hs_event + expose: + operator_limit_selection: false + operator_list: { } + field_hs_event_date_value: + id: field_hs_event_date_value + table: node__field_hs_event_date + field: field_hs_event_date_value + relationship: none + group_type: group + admin_label: '' + plugin_id: datetime + operator: '<=' + value: + min: '' + max: '' + value: now + type: offset + group: 1 + exposed: false + expose: + operator_id: '' + label: '' + description: '' + use_operator: false + operator: '' + operator_limit_selection: false + operator_list: { } + identifier: '' + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + min_placeholder: '' + max_placeholder: '' + placeholder: '' + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + filter_groups: + operator: AND + groups: + 1: AND + defaults: + title: false + arguments: false + filters: false + filter_groups: false + display_description: '' + display_extenders: { } + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url + - url.query_args + - 'user.node_grants:view' + - user.permissions + tags: + - 'config:field.storage.node.body' + - 'config:field.storage.node.field_hs_event_date' + - 'config:field.storage.node.field_hs_event_image' + - 'config:field.storage.node.field_hs_event_location' + upcoming_event: + id: upcoming_event + display_title: 'Upcoming Events' + display_plugin: block + position: 1 + display_options: + defaults: + pager: true + display_description: '' + display_extenders: { } + block_hide_empty: true + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url.query_args + - 'user.node_grants:view' + - user.permissions + tags: + - 'config:field.storage.node.body' + - 'config:field.storage.node.field_hs_event_date' + - 'config:field.storage.node.field_hs_event_image' + - 'config:field.storage.node.field_hs_event_location' + upcoming_event_type: + id: upcoming_event_type + display_title: 'Upcoming Event Type' + display_plugin: block + position: 3 + display_options: + arguments: + term_node_taxonomy_name_depth: + id: term_node_taxonomy_name_depth + table: node_field_data + field: term_node_taxonomy_name_depth + relationship: none + group_type: group + admin_label: '' + entity_type: node + plugin_id: taxonomy_index_name_depth + default_action: 'not found' + exception: + value: all + title_enable: false + title: All + title_enable: false + title: '' + default_argument_type: fixed + default_argument_options: + argument: '' + summary_options: + base_path: '' + count: true + override: false + items_per_page: 25 + summary: + sort_order: asc + number_of_records: 0 + format: default_summary + specify_validation: false + validate: + type: none + fail: 'not found' + validate_options: { } + break_phrase: true + depth: '0' + use_taxonomy_term_path: false + vocabularies: + hs_event_type: hs_event_type + defaults: + arguments: false + display_description: '' + display_extenders: { } + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url + - url.query_args + - 'user.node_grants:view' + - user.permissions + tags: + - 'config:field.storage.node.body' + - 'config:field.storage.node.field_hs_event_date' + - 'config:field.storage.node.field_hs_event_image' + - 'config:field.storage.node.field_hs_event_location' diff --git a/docroot/modules/humsci/hs_publications/config/install/core.base_field_override.node.hs_publications.promote.yml b/docroot/modules/humsci/hs_publications/config/install/core.base_field_override.node.hs_publications.promote.yml new file mode 100644 index 0000000000..a19482f565 --- /dev/null +++ b/docroot/modules/humsci/hs_publications/config/install/core.base_field_override.node.hs_publications.promote.yml @@ -0,0 +1,24 @@ +uuid: 74feffd0-55fc-47fc-9114-2257d186f9d6 +langcode: en +status: true +dependencies: + config: + - node.type.hs_publications +_core: + default_config_hash: 5ZDzbZbvjBo5FxZ3aR8AINCBGe1KepUNuQrig0BiN-E +id: node.hs_publications.promote +field_name: promote +entity_type: node +bundle: hs_publications +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/docroot/modules/humsci/hs_publications/config/install/field.field.node.hs_publications.body.yml b/docroot/modules/humsci/hs_publications/config/install/field.field.node.hs_publications.body.yml new file mode 100644 index 0000000000..2acf9a0e65 --- /dev/null +++ b/docroot/modules/humsci/hs_publications/config/install/field.field.node.hs_publications.body.yml @@ -0,0 +1,26 @@ +uuid: a7f44cb3-71e0-431b-9ccb-70f1f99a9f0c +langcode: en +status: true +dependencies: + config: + - field.storage.node.body + - node.type.hs_publications + module: + - text +_core: + default_config_hash: sdonG0iwCFPjlhT0KM26FBfOmQcjma9tgJ2ZkZZYOog +id: node.hs_publications.body +field_name: body +entity_type: node +bundle: hs_publications +label: Body +description: '' +required: false +translatable: true +default_value: { } +default_value_callback: '' +settings: + display_summary: true + required_summary: false + allowed_formats: { } +field_type: text_with_summary diff --git a/docroot/modules/humsci/hs_publications/config/install/field.field.node.hs_publications.field_hs_publication_author.yml b/docroot/modules/humsci/hs_publications/config/install/field.field.node.hs_publications.field_hs_publication_author.yml new file mode 100644 index 0000000000..da510d8dbe --- /dev/null +++ b/docroot/modules/humsci/hs_publications/config/install/field.field.node.hs_publications.field_hs_publication_author.yml @@ -0,0 +1,30 @@ +uuid: 5cea35ba-84fc-48ec-adcc-642be912abb6 +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_hs_publication_author + - node.type.hs_publications +_core: + default_config_hash: V1lfXLPGn1Vnv-rV8S1sUAPdFVind2VZKIH5vDLxlqM +id: node.hs_publications.field_hs_publication_author +field_name: field_hs_publication_author +entity_type: node +bundle: hs_publications +label: Author +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: + handler: 'default:hs_entity' + handler_settings: + target_bundles: + publications_collections__public: publications_collections__public + sort: + field: label + direction: ASC + auto_create: true + auto_create_bundle: '' +field_type: entity_reference diff --git a/docroot/modules/humsci/hs_publications/config/install/field.field.node.hs_publications.field_hs_publication_documents.yml b/docroot/modules/humsci/hs_publications/config/install/field.field.node.hs_publications.field_hs_publication_documents.yml new file mode 100644 index 0000000000..476c979fea --- /dev/null +++ b/docroot/modules/humsci/hs_publications/config/install/field.field.node.hs_publications.field_hs_publication_documents.yml @@ -0,0 +1,30 @@ +uuid: 3716a8fa-3e17-4028-ad86-226599993303 +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_hs_publication_documents + - media.type.file + - node.type.hs_publications +_core: + default_config_hash: pXfSXGDRn1wmxqGtLB0j5Q6vGB-0TMIOmDyD_jrn9-M +id: node.hs_publications.field_hs_publication_documents +field_name: field_hs_publication_documents +entity_type: node +bundle: hs_publications +label: 'Publication Documents' +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: + handler: 'default:media' + handler_settings: + target_bundles: + file: file + sort: + field: _none + auto_create: false + auto_create_bundle: '' +field_type: entity_reference diff --git a/docroot/modules/humsci/hs_publications/config/install/field.field.node.hs_publications.field_hs_publication_image.yml b/docroot/modules/humsci/hs_publications/config/install/field.field.node.hs_publications.field_hs_publication_image.yml new file mode 100644 index 0000000000..92cf14a298 --- /dev/null +++ b/docroot/modules/humsci/hs_publications/config/install/field.field.node.hs_publications.field_hs_publication_image.yml @@ -0,0 +1,30 @@ +uuid: d3dff4ae-9c04-4346-aafb-6cadee27cb2c +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_hs_publication_image + - media.type.image + - node.type.hs_publications +_core: + default_config_hash: 9cNlBcoLL4sl-jh-hYVm3XU1cYPaVczgsq7Cnul3cH0 +id: node.hs_publications.field_hs_publication_image +field_name: field_hs_publication_image +entity_type: node +bundle: hs_publications +label: 'Publication Image' +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: + handler: 'default:media' + handler_settings: + target_bundles: + image: image + sort: + field: _none + auto_create: false + auto_create_bundle: '' +field_type: entity_reference diff --git a/docroot/modules/humsci/hs_publications/config/install/field.field.node.hs_publications.field_hs_publication_link.yml b/docroot/modules/humsci/hs_publications/config/install/field.field.node.hs_publications.field_hs_publication_link.yml new file mode 100644 index 0000000000..601a48d39a --- /dev/null +++ b/docroot/modules/humsci/hs_publications/config/install/field.field.node.hs_publications.field_hs_publication_link.yml @@ -0,0 +1,25 @@ +uuid: 3f149f98-3a60-4e68-a720-afb81285e5a0 +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_hs_publication_link + - node.type.hs_publications + module: + - link +_core: + default_config_hash: 0dimy4TYSXGpSRVo7sx0dFz0k9_CGdVj89EcfUdqxBY +id: node.hs_publications.field_hs_publication_link +field_name: field_hs_publication_link +entity_type: node +bundle: hs_publications +label: 'Publication Link' +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: + title: 2 + link_type: 17 +field_type: link diff --git a/docroot/modules/humsci/hs_publications/config/install/field.field.node.hs_publications.field_hs_publication_publisher.yml b/docroot/modules/humsci/hs_publications/config/install/field.field.node.hs_publications.field_hs_publication_publisher.yml new file mode 100644 index 0000000000..569de0fc5b --- /dev/null +++ b/docroot/modules/humsci/hs_publications/config/install/field.field.node.hs_publications.field_hs_publication_publisher.yml @@ -0,0 +1,21 @@ +uuid: b7b42ebf-4f88-4bb7-b42a-194ee121985a +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_hs_publication_publisher + - node.type.hs_publications +_core: + default_config_hash: NJZW4pU9xrX__eVrjHVqAKkFzgrMp3nDcEJoLwxLpAs +id: node.hs_publications.field_hs_publication_publisher +field_name: field_hs_publication_publisher +entity_type: node +bundle: hs_publications +label: Publisher +description: 'Enter the name of the publisher.' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: string diff --git a/docroot/modules/humsci/hs_publications/config/install/field.field.node.hs_publications.field_hs_publication_type.yml b/docroot/modules/humsci/hs_publications/config/install/field.field.node.hs_publications.field_hs_publication_type.yml new file mode 100644 index 0000000000..15b0178b91 --- /dev/null +++ b/docroot/modules/humsci/hs_publications/config/install/field.field.node.hs_publications.field_hs_publication_type.yml @@ -0,0 +1,31 @@ +uuid: 97b57a81-7374-4ee6-9372-9dbb456aa678 +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_hs_publication_type + - node.type.hs_publications + - taxonomy.vocabulary.hs_publication_type +_core: + default_config_hash: V0PSy6ip9v23wn5_HmLSiLdRalDP7Oh8vVEvYt7KFyY +id: node.hs_publications.field_hs_publication_type +field_name: field_hs_publication_type +entity_type: node +bundle: hs_publications +label: 'Publication Type' +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: + handler: 'default:taxonomy_term' + handler_settings: + target_bundles: + hs_publication_type: hs_publication_type + sort: + field: name + direction: asc + auto_create: false + auto_create_bundle: '' +field_type: entity_reference diff --git a/docroot/modules/humsci/hs_publications/config/install/field.field.node.hs_publications.field_hs_publication_year.yml b/docroot/modules/humsci/hs_publications/config/install/field.field.node.hs_publications.field_hs_publication_year.yml new file mode 100644 index 0000000000..b9a50ccbc0 --- /dev/null +++ b/docroot/modules/humsci/hs_publications/config/install/field.field.node.hs_publications.field_hs_publication_year.yml @@ -0,0 +1,26 @@ +uuid: e9e302fd-f623-40bf-b030-533daabbe67a +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_hs_publication_year + - node.type.hs_publications + module: + - datetime +_core: + default_config_hash: 9BSA282lULfRzbBucohwUs1Lya7GwmrF9ibKFYg-S7k +id: node.hs_publications.field_hs_publication_year +field_name: field_hs_publication_year +entity_type: node +bundle: hs_publications +label: 'Publication Year' +description: 'Choose the year of publication.' +required: false +translatable: false +default_value: + - + default_date_type: now + default_date: now +default_value_callback: '' +settings: { } +field_type: datetime diff --git a/docroot/modules/humsci/hs_publications/config/install/field.storage.node.field_hs_publication_author.yml b/docroot/modules/humsci/hs_publications/config/install/field.storage.node.field_hs_publication_author.yml new file mode 100644 index 0000000000..06a4853116 --- /dev/null +++ b/docroot/modules/humsci/hs_publications/config/install/field.storage.node.field_hs_publication_author.yml @@ -0,0 +1,22 @@ +uuid: 769928fd-5ff1-4227-892d-79107e37f3c4 +langcode: en +status: true +dependencies: + module: + - hs_entities + - node +_core: + default_config_hash: OdRW7Cr-RRkHgoTbfW3J-mCydNkKd7yEO8crouK9kg4 +id: node.field_hs_publication_author +field_name: field_hs_publication_author +entity_type: node +type: entity_reference +settings: + target_type: hs_entity +module: core +locked: false +cardinality: -1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/docroot/modules/humsci/hs_publications/config/install/field.storage.node.field_hs_publication_documents.yml b/docroot/modules/humsci/hs_publications/config/install/field.storage.node.field_hs_publication_documents.yml new file mode 100644 index 0000000000..c610979c63 --- /dev/null +++ b/docroot/modules/humsci/hs_publications/config/install/field.storage.node.field_hs_publication_documents.yml @@ -0,0 +1,22 @@ +uuid: e49d47aa-135c-44fb-8a16-382687bf404a +langcode: en +status: true +dependencies: + module: + - media + - node +_core: + default_config_hash: Dsl3z7DQQ2qiCI_jaqlrsjma4DSDwFjpJ855zZlC6Vs +id: node.field_hs_publication_documents +field_name: field_hs_publication_documents +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/docroot/modules/humsci/hs_publications/config/install/field.storage.node.field_hs_publication_image.yml b/docroot/modules/humsci/hs_publications/config/install/field.storage.node.field_hs_publication_image.yml new file mode 100644 index 0000000000..686e2bf028 --- /dev/null +++ b/docroot/modules/humsci/hs_publications/config/install/field.storage.node.field_hs_publication_image.yml @@ -0,0 +1,22 @@ +uuid: ade9d936-42d2-43cb-a1a0-eb9a7f269305 +langcode: en +status: true +dependencies: + module: + - media + - node +_core: + default_config_hash: bXDdoNJOaN-nBxJBL9Uca0RzBv94v0wYTc-E9S7bZPs +id: node.field_hs_publication_image +field_name: field_hs_publication_image +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/docroot/modules/humsci/hs_publications/config/install/field.storage.node.field_hs_publication_link.yml b/docroot/modules/humsci/hs_publications/config/install/field.storage.node.field_hs_publication_link.yml new file mode 100644 index 0000000000..1171fbdb6c --- /dev/null +++ b/docroot/modules/humsci/hs_publications/config/install/field.storage.node.field_hs_publication_link.yml @@ -0,0 +1,21 @@ +uuid: 0e4966d0-3ca9-40bd-b67e-62f566ea6210 +langcode: en +status: true +dependencies: + module: + - link + - node +_core: + default_config_hash: jkvHokBE324M07YP4KCXnWojyBeltsKhsLNlQs0dZWI +id: node.field_hs_publication_link +field_name: field_hs_publication_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/docroot/modules/humsci/hs_publications/config/install/field.storage.node.field_hs_publication_publisher.yml b/docroot/modules/humsci/hs_publications/config/install/field.storage.node.field_hs_publication_publisher.yml new file mode 100644 index 0000000000..ca4d6e8c4c --- /dev/null +++ b/docroot/modules/humsci/hs_publications/config/install/field.storage.node.field_hs_publication_publisher.yml @@ -0,0 +1,23 @@ +uuid: 4effb1ae-06ca-4058-a8d5-d7e00b9d8f8b +langcode: en +status: true +dependencies: + module: + - node +_core: + default_config_hash: zv7zWUXHTsPZ87GgEZD8PeU0_hpWYiIfE7_VtEGhkD4 +id: node.field_hs_publication_publisher +field_name: field_hs_publication_publisher +entity_type: node +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/docroot/modules/humsci/hs_publications/config/install/field.storage.node.field_hs_publication_type.yml b/docroot/modules/humsci/hs_publications/config/install/field.storage.node.field_hs_publication_type.yml new file mode 100644 index 0000000000..b6dcc826a5 --- /dev/null +++ b/docroot/modules/humsci/hs_publications/config/install/field.storage.node.field_hs_publication_type.yml @@ -0,0 +1,22 @@ +uuid: 2cbc282e-f25f-419e-9eb1-f0469302c326 +langcode: en +status: true +dependencies: + module: + - node + - taxonomy +_core: + default_config_hash: rO_bwPn0pCLdxsXHfW_V1Kg6BZkPbLgDOCeNaGpvw_M +id: node.field_hs_publication_type +field_name: field_hs_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/docroot/modules/humsci/hs_publications/config/install/field.storage.node.field_hs_publication_year.yml b/docroot/modules/humsci/hs_publications/config/install/field.storage.node.field_hs_publication_year.yml new file mode 100644 index 0000000000..0702d05f04 --- /dev/null +++ b/docroot/modules/humsci/hs_publications/config/install/field.storage.node.field_hs_publication_year.yml @@ -0,0 +1,22 @@ +uuid: 407988b9-10ee-4faa-9716-27682696b8f9 +langcode: en +status: true +dependencies: + module: + - datetime + - node +_core: + default_config_hash: ZOGwqz-tq8oneWjz4tYIkKtXpqOQCrbZPzA5AiMPD8c +id: node.field_hs_publication_year +field_name: field_hs_publication_year +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/docroot/modules/humsci/hs_publications/config/install/node.type.hs_publications.yml b/docroot/modules/humsci/hs_publications/config/install/node.type.hs_publications.yml new file mode 100644 index 0000000000..539ee5ba03 --- /dev/null +++ b/docroot/modules/humsci/hs_publications/config/install/node.type.hs_publications.yml @@ -0,0 +1,24 @@ +uuid: f7fc3319-62aa-4c40-bc06-3d216e45dea6 +langcode: en +status: true +dependencies: + module: + - menu_ui + - node_revision_delete +third_party_settings: + menu_ui: + available_menus: { } + parent: '' + node_revision_delete: + minimum_revisions_to_keep: 5 + minimum_age_to_delete: 0 + when_to_delete: 0 +_core: + default_config_hash: h46c8vZdmGINDFVvXovkkw9OeqkaZ-h3aWcsutZkQbI +name: Publications +type: hs_publications +description: 'A publication can be a book, an article, a poem, etc.' +help: '' +new_revision: true +preview_mode: 0 +display_submitted: false diff --git a/docroot/modules/humsci/hs_publications/config/install/pathauto.pattern.hs_publications_nodes.yml b/docroot/modules/humsci/hs_publications/config/install/pathauto.pattern.hs_publications_nodes.yml new file mode 100644 index 0000000000..663a8fef15 --- /dev/null +++ b/docroot/modules/humsci/hs_publications/config/install/pathauto.pattern.hs_publications_nodes.yml @@ -0,0 +1,24 @@ +uuid: b1fc1f26-12ab-47e1-a80b-0df0b89f2c92 +langcode: en +status: true +dependencies: + module: + - node +_core: + default_config_hash: uRhJ74Hz_WuGSub3pgprFocLrEJ90j_DQsyR7xrYVTQ +id: hs_publications_nodes +label: 'Publications Nodes' +type: 'canonical_entities:node' +pattern: '/publications/[node:title]' +selection_criteria: + ae421f2f-7264-4d10-bf8d-52db6c0dc003: + id: 'entity_bundle:node' + negate: false + uuid: ae421f2f-7264-4d10-bf8d-52db6c0dc003 + context_mapping: + node: node + bundles: + hs_publications: hs_publications +selection_logic: and +weight: -5 +relationships: { } diff --git a/docroot/modules/humsci/hs_publications/config/install/taxonomy.vocabulary.hs_publication_type.yml b/docroot/modules/humsci/hs_publications/config/install/taxonomy.vocabulary.hs_publication_type.yml new file mode 100644 index 0000000000..a4f9a63202 --- /dev/null +++ b/docroot/modules/humsci/hs_publications/config/install/taxonomy.vocabulary.hs_publication_type.yml @@ -0,0 +1,10 @@ +uuid: 82c8ee9d-49eb-41b8-8685-92a2c88ca12b +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: UVt_n5FY1edXij5AAEwkdFzDsb2FmxdHYPYmcI4tAxE +name: 'Publication Type' +vid: hs_publication_type +description: '' +weight: 0 diff --git a/docroot/modules/humsci/hs_publications/config/install/views.view.hs_publications.yml b/docroot/modules/humsci/hs_publications/config/install/views.view.hs_publications.yml new file mode 100644 index 0000000000..c124e9d05e --- /dev/null +++ b/docroot/modules/humsci/hs_publications/config/install/views.view.hs_publications.yml @@ -0,0 +1,1676 @@ +uuid: a56c13c0-c034-4680-93e4-47ccdcb484b4 +langcode: en +status: false +dependencies: + config: + - core.entity_view_mode.node.hs_vertical_card + - field.storage.node.field_hs_publication_author + - field.storage.node.field_hs_publication_image + - field.storage.node.field_hs_publication_type + - field.storage.node.field_hs_publication_year + - node.type.hs_publications + - taxonomy.vocabulary.hs_publication_type + module: + - datetime + - eck + - hs_views_helper + - node + - stanford_media + - taxonomy + - ui_patterns_views + - user + - views_infinite_scroll +id: hs_publications +label: Publications +module: views +description: '' +tag: '' +base_table: node_field_data +base_field: nid +display: + default: + id: default + display_title: Master + display_plugin: default + position: 0 + display_options: + title: Publications + fields: + field_hs_publication_image: + id: field_hs_publication_image + table: node__field_hs_publication_image + field: field_hs_publication_image + relationship: none + group_type: group + admin_label: '' + plugin_id: field + label: '' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: target_id + type: media_image_formatter + settings: + view_mode: default + link: true + image_style: responsive_small + group_column: target_id + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + field_hs_publication_type: + id: field_hs_publication_type + table: node__field_hs_publication_type + field: field_hs_publication_type + relationship: none + group_type: group + admin_label: '' + plugin_id: field + label: '' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: 'accent-dash masonry-item--type' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: target_id + type: entity_reference_label + settings: + link: false + group_column: target_id + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + title: + id: title + table: node_field_data + field: title + relationship: none + group_type: group + admin_label: '' + entity_type: node + entity_field: title + plugin_id: field + label: '' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: false + ellipsis: false + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: h3 + element_class: 'no-dash masonry-item--title' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: string + settings: + link_to_entity: true + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + field_hs_publication_year: + id: field_hs_publication_year + table: node__field_hs_publication_year + field: field_hs_publication_year + relationship: none + group_type: group + admin_label: '' + plugin_id: field + label: '' + exclude: true + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: datetime_custom + settings: + timezone_override: '' + date_format: 'Y' + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + field_hs_publication_author: + id: field_hs_publication_author + table: node__field_hs_publication_author + field: field_hs_publication_author + relationship: none + group_type: group + admin_label: '' + plugin_id: field + label: '' + exclude: false + alter: + alter_text: true + text: '{% if field_hs_publication_author|render|striptags|trim %}{{ field_hs_publication_author|render|striptags|trim }}, {% endif %}{{ field_hs_publication_year|trim }}' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: true + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: masonry-item--author-year + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '{{ field_hs_publication_year }}' + hide_empty: false + empty_zero: true + hide_alter_empty: true + click_sort_column: target_id + type: entity_reference_entity_view + settings: + view_mode: default + group_column: target_id + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + pager: + type: infinite_scroll + options: + offset: 0 + items_per_page: 9 + total_pages: null + id: 0 + tags: + next: 'Next ›' + previous: '‹ Previous' + expose: + items_per_page: false + items_per_page_label: 'Items per page' + items_per_page_options: '5, 10, 25, 50' + items_per_page_options_all: false + items_per_page_options_all_label: '- All -' + offset: false + offset_label: Offset + views_infinite_scroll: + button_text: 'Show More' + automatically_load_content: false + exposed_form: + type: basic + options: + submit_button: Apply + reset_button: false + reset_button_label: Reset + exposed_sorts_label: 'Sort by' + expose_sort_order: true + sort_asc_label: Asc + sort_desc_label: Desc + access: + type: perm + options: + perm: 'access content' + cache: + type: tag + options: { } + empty: + area: + id: area + table: views + field: area + relationship: none + group_type: group + admin_label: '' + plugin_id: text + empty: true + content: + value: '

No publications are available at this time. Please check back again soon.

' + format: basic_html + tokenize: false + sorts: + field_hs_publication_year_value: + id: field_hs_publication_year_value + table: node__field_hs_publication_year + field: field_hs_publication_year_value + relationship: none + group_type: group + admin_label: '' + plugin_id: datetime + order: DESC + expose: + label: '' + field_identifier: field_hs_publication_year_value + exposed: false + granularity: year + created: + id: created + table: node_field_data + field: created + relationship: none + group_type: group + admin_label: '' + entity_type: node + entity_field: created + plugin_id: date + order: DESC + expose: + label: '' + field_identifier: created + exposed: false + granularity: second + arguments: { } + filters: + status: + id: status + table: node_field_data + field: status + entity_type: node + entity_field: status + plugin_id: boolean + value: '1' + group: 1 + expose: + operator: '' + operator_limit_selection: false + operator_list: { } + type: + id: type + table: node_field_data + field: type + entity_type: node + entity_field: type + plugin_id: bundle + value: + hs_publications: hs_publications + group: 1 + expose: + operator_limit_selection: false + operator_list: { } + title: + id: title + table: node_field_data + field: title + relationship: none + group_type: group + admin_label: '' + entity_type: node + entity_field: title + plugin_id: string + operator: word + value: '' + group: 1 + exposed: true + expose: + operator_id: title_op + label: 'Search by Name' + description: '' + use_operator: false + operator: title_op + operator_limit_selection: false + operator_list: { } + identifier: name + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + placeholder: '' + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + title_1: + id: title_1 + table: hs_entity + field: label + relationship: field_hs_publication_author + group_type: group + admin_label: '' + entity_type: hs_entity + entity_field: label + plugin_id: string + operator: word + value: '' + group: 1 + exposed: true + expose: + operator_id: title_1_op + label: 'Search by Author' + description: '' + use_operator: false + operator: title_1_op + operator_limit_selection: false + operator_list: { } + identifier: pub_author + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + placeholder: '' + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + field_hs_publication_type_target_id: + id: field_hs_publication_type_target_id + table: node__field_hs_publication_type + field: field_hs_publication_type_target_id + relationship: none + group_type: group + admin_label: '' + plugin_id: taxonomy_index_tid + operator: or + value: { } + group: 1 + exposed: true + expose: + operator_id: field_hs_publication_type_target_id_op + label: 'Filter by Type' + description: '' + use_operator: false + operator: field_hs_publication_type_target_id_op + operator_limit_selection: false + operator_list: { } + identifier: type + required: false + remember: false + multiple: true + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + reduce: false + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + reduce_duplicates: false + vid: hs_publication_type + type: select + hierarchy: false + limit: true + error_message: true + filter_groups: + operator: AND + groups: + 1: AND + style: + type: pattern + options: + pattern: masonry + pattern_mapping: + rows: + destination: items + weight: '0' + title: + destination: '' + weight: '0' + row: + type: ui_patterns + options: + default_field_elements: 1 + inline: + field_hs_publication_image: 0 + field_hs_publication_type: 0 + title: 0 + field_hs_publication_author: 0 + field_hs_publication_year: 0 + nid: 0 + separator: '' + hide_empty: 1 + pattern: masonry_item + pattern_mapping: + 'views_row:field_hs_publication_image': + destination: image + weight: 0 + plugin: views_row + source: field_hs_publication_image + 'views_row:nid': + destination: body + weight: 1 + plugin: views_row + source: nid + 'views_row:field_hs_publication_type': + destination: body + weight: 2 + plugin: views_row + source: field_hs_publication_type + 'views_row:title': + destination: body + weight: 3 + plugin: views_row + source: title + 'views_row:field_hs_publication_author': + destination: body + weight: 4 + plugin: views_row + source: field_hs_publication_author + 'views_row:field_hs_publication_year': + destination: body + weight: 5 + plugin: views_row + source: field_hs_publication_year + query: + type: views_query + options: + query_comment: '' + disable_sql_rewrite: false + distinct: false + replica: false + query_tags: { } + relationships: + field_hs_publication_author: + id: field_hs_publication_author + table: node__field_hs_publication_author + field: field_hs_publication_author + relationship: none + group_type: group + admin_label: 'field_hs_publication_author: Publications Collections' + plugin_id: standard + required: false + use_ajax: true + group_by: false + header: { } + footer: { } + display_extenders: { } + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url + - url.query_args + - 'user.node_grants:view' + - user.permissions + tags: + - 'config:field.storage.node.field_hs_publication_author' + - 'config:field.storage.node.field_hs_publication_image' + - 'config:field.storage.node.field_hs_publication_type' + - 'config:field.storage.node.field_hs_publication_year' + author_list: + id: author_list + display_title: "Author's List" + display_plugin: block + position: 3 + display_options: + title: 'Featured Publications' + fields: + field_hs_publication_image: + id: field_hs_publication_image + table: node__field_hs_publication_image + field: field_hs_publication_image + relationship: none + group_type: group + admin_label: '' + plugin_id: field + label: '' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: target_id + type: media_image_formatter + settings: + view_mode: default + link: true + image_style: hs_vertical_rectangle_360x430 + group_column: target_id + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + field_hs_publication_type: + id: field_hs_publication_type + table: node__field_hs_publication_type + field: field_hs_publication_type + relationship: none + group_type: group + admin_label: '' + plugin_id: field + label: '' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: masonry-item--type + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: target_id + type: entity_reference_label + settings: + link: false + group_column: target_id + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + title: + id: title + table: node_field_data + field: title + relationship: none + group_type: group + admin_label: '' + entity_type: node + entity_field: title + plugin_id: field + label: '' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: false + ellipsis: false + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: h3 + element_class: 'no-dash masonry-item--title' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: string + settings: + link_to_entity: true + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + field_hs_publication_year: + id: field_hs_publication_year + table: node__field_hs_publication_year + field: field_hs_publication_year + relationship: none + group_type: group + admin_label: '' + plugin_id: field + label: '' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: datetime_custom + settings: + timezone_override: '' + date_format: 'Y' + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + pager: + type: some + options: + offset: 0 + items_per_page: 3 + empty: { } + arguments: + field_hs_publication_author_target_id: + id: field_hs_publication_author_target_id + table: hs_entity__field_hs_publication_author + field: field_hs_publication_author_target_id + relationship: field_hs_publication_author + group_type: group + admin_label: '' + plugin_id: numeric + default_action: default + exception: + value: all + title_enable: false + title: All + title_enable: false + title: '' + default_argument_type: node + default_argument_options: { } + summary_options: + base_path: '' + count: true + override: false + items_per_page: 25 + summary: + sort_order: asc + number_of_records: 0 + format: default_summary + specify_validation: false + validate: + type: none + fail: 'not found' + validate_options: { } + break_phrase: false + not: false + filters: + status: + id: status + table: node_field_data + field: status + entity_type: node + entity_field: status + plugin_id: boolean + value: '1' + group: 1 + expose: + operator: '' + operator_limit_selection: false + operator_list: { } + type: + id: type + table: node_field_data + field: type + entity_type: node + entity_field: type + plugin_id: bundle + value: + hs_publications: hs_publications + group: 1 + expose: + operator_limit_selection: false + operator_list: { } + filter_groups: + operator: AND + groups: + 1: AND + style: + type: pattern + options: + pattern: masonry + pattern_mapping: + rows: + destination: items + weight: '0' + title: + destination: '' + weight: '0' + row: + type: ui_patterns + options: + default_field_elements: 1 + inline: + field_hs_publication_image: 0 + field_hs_publication_type: 0 + title: 0 + field_hs_publication_author: 0 + field_hs_publication_year: 0 + nid: 0 + separator: '' + hide_empty: 1 + pattern: masonry_item + pattern_mapping: + 'views_row:field_hs_publication_image': + destination: image + weight: 0 + plugin: views_row + source: field_hs_publication_image + 'views_row:nid': + destination: body + weight: 1 + plugin: views_row + source: nid + 'views_row:field_hs_publication_type': + destination: body + weight: 2 + plugin: views_row + source: field_hs_publication_type + 'views_row:title': + destination: body + weight: 3 + plugin: views_row + source: title + 'views_row:field_hs_publication_author': + destination: body + weight: 4 + plugin: views_row + source: field_hs_publication_author + 'views_row:field_hs_publication_year': + destination: body + weight: 5 + plugin: views_row + source: field_hs_publication_year + defaults: + empty: false + title: false + pager: false + group_by: false + style: false + row: false + fields: false + arguments: false + filters: false + filter_groups: false + group_by: false + display_description: '' + display_extenders: { } + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url + - 'user.node_grants:view' + - user.permissions + tags: + - 'config:field.storage.node.field_hs_publication_image' + - 'config:field.storage.node.field_hs_publication_type' + - 'config:field.storage.node.field_hs_publication_year' + masonry_list: + id: masonry_list + display_title: 'Masonry List' + display_plugin: block + position: 1 + display_options: + fields: + field_hs_publication_image: + id: field_hs_publication_image + table: node__field_hs_publication_image + field: field_hs_publication_image + relationship: none + group_type: group + admin_label: '' + plugin_id: field + label: '' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '0' + element_class: '' + element_label_type: '0' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '0' + element_wrapper_class: '' + element_default_classes: false + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: target_id + type: media_image_formatter + settings: + view_mode: default + link: true + image_style: responsive_small + group_column: target_id + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + field_hs_publication_type: + id: field_hs_publication_type + table: node__field_hs_publication_type + field: field_hs_publication_type + relationship: none + group_type: group + admin_label: '' + plugin_id: field + label: '' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: div + element_class: 'accent-dash masonry-item--type' + element_label_type: '0' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '0' + element_wrapper_class: '' + element_default_classes: false + empty: '' + hide_empty: true + empty_zero: false + hide_alter_empty: true + click_sort_column: target_id + type: entity_reference_label + settings: + link: false + group_column: target_id + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + title: + id: title + table: node_field_data + field: title + relationship: none + group_type: group + admin_label: '' + entity_type: node + entity_field: title + plugin_id: field + label: '' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: false + ellipsis: false + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: h3 + element_class: 'no-dash masonry-item--title' + element_label_type: '0' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '0' + element_wrapper_class: '' + element_default_classes: false + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: string + settings: + link_to_entity: true + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + field_hs_publication_year: + id: field_hs_publication_year + table: node__field_hs_publication_year + field: field_hs_publication_year + relationship: none + group_type: group + admin_label: '' + plugin_id: field + label: '' + exclude: true + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '0' + element_class: '' + element_label_type: '0' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '0' + element_wrapper_class: '' + element_default_classes: false + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: datetime_custom + settings: + timezone_override: '' + date_format: 'Y' + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + field_hs_publication_author: + id: field_hs_publication_author + table: node__field_hs_publication_author + field: field_hs_publication_author + relationship: none + group_type: group + admin_label: '' + plugin_id: field + label: '' + exclude: false + alter: + alter_text: true + text: '{% if field_hs_publication_author|render|striptags|trim %}{{ field_hs_publication_author|render|striptags|trim }}, {% endif %}{{ field_hs_publication_year|trim }}' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: true + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: masonry-item--author-year + element_label_type: '0' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '0' + element_wrapper_class: '' + element_default_classes: false + empty: '{{ field_hs_publication_year }}' + hide_empty: false + empty_zero: true + hide_alter_empty: true + click_sort_column: target_id + type: entity_reference_entity_view + settings: + view_mode: default + group_column: target_id + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + query: + type: views_query + options: + query_comment: '' + disable_sql_rewrite: false + distinct: true + replica: false + query_tags: null + defaults: + query: false + fields: false + display_description: '' + exposed_block: true + display_extenders: { } + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url + - url.query_args + - 'user.node_grants:view' + - user.permissions + tags: + - 'config:field.storage.node.field_hs_publication_author' + - 'config:field.storage.node.field_hs_publication_image' + - 'config:field.storage.node.field_hs_publication_type' + - 'config:field.storage.node.field_hs_publication_year' + single_featured: + id: single_featured + display_title: 'Single Featured' + display_plugin: block + position: 2 + display_options: + fields: + title: + id: title + table: node_field_data + field: title + relationship: none + group_type: group + admin_label: '' + entity_type: node + entity_field: title + plugin_id: field + label: '' + exclude: false + alter: + alter_text: false + make_link: false + absolute: false + word_boundary: false + ellipsis: false + strip_tags: false + trim: false + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: string + settings: + link_to_entity: true + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + pager: + type: some + options: + offset: 0 + items_per_page: 1 + sorts: + field_hs_publication_year_value: + id: field_hs_publication_year_value + table: node__field_hs_publication_year + field: field_hs_publication_year_value + relationship: none + group_type: group + admin_label: '' + plugin_id: datetime + order: DESC + expose: + label: '' + field_identifier: field_hs_publication_year_value + exposed: false + granularity: year + created: + id: created + table: node_field_data + field: created + relationship: none + group_type: group + admin_label: '' + entity_type: node + entity_field: created + plugin_id: date + order: DESC + expose: + label: '' + field_identifier: created + exposed: false + granularity: second + filters: + status: + id: status + table: node_field_data + field: status + entity_type: node + entity_field: status + plugin_id: boolean + value: '1' + group: 1 + expose: + operator: '' + operator_limit_selection: false + operator_list: { } + type: + id: type + table: node_field_data + field: type + entity_type: node + entity_field: type + plugin_id: bundle + value: + hs_publications: hs_publications + group: 1 + expose: + operator_limit_selection: false + operator_list: { } + promote: + id: promote + table: node_field_data + field: promote + relationship: none + group_type: group + admin_label: '' + entity_type: node + entity_field: promote + plugin_id: boolean + operator: '=' + value: '1' + group: 1 + exposed: false + expose: + operator_id: '' + label: '' + description: '' + use_operator: false + operator: '' + operator_limit_selection: false + operator_list: { } + identifier: '' + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + filter_groups: + operator: AND + groups: + 1: AND + style: + type: default + options: + grouping: { } + row_class: '' + default_row_class: true + row: + type: 'entity:node' + options: + relationship: none + view_mode: hs_vertical_card + defaults: + pager: false + use_more: false + use_more_always: false + use_more_text: false + link_display: false + link_url: false + group_by: false + style: false + row: false + relationships: false + fields: false + sorts: false + filters: false + filter_groups: false + relationships: { } + group_by: false + display_description: '' + use_more: true + use_more_always: true + use_more_text: 'See More Publications' + link_display: custom_url + link_url: /research/publications + display_extenders: { } + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - 'user.node_grants:view' + - user.permissions + tags: { } diff --git a/docroot/modules/humsci/hs_publications/modules/hs_publications_display/config/install/core.entity_form_display.node.hs_publications.default.yml b/docroot/modules/humsci/hs_publications/modules/hs_publications_display/config/install/core.entity_form_display.node.hs_publications.default.yml new file mode 100644 index 0000000000..4322d07bd3 --- /dev/null +++ b/docroot/modules/humsci/hs_publications/modules/hs_publications_display/config/install/core.entity_form_display.node.hs_publications.default.yml @@ -0,0 +1,165 @@ +uuid: 71d081fe-6ced-4bd4-85fa-c64fa2db19a4 +langcode: en +status: true +dependencies: + config: + - field.field.node.hs_publications.body + - field.field.node.hs_publications.field_hs_publication_author + - field.field.node.hs_publications.field_hs_publication_citation + - field.field.node.hs_publications.field_hs_publication_documents + - field.field.node.hs_publications.field_hs_publication_image + - field.field.node.hs_publications.field_hs_publication_link + - field.field.node.hs_publications.field_hs_publication_publisher + - field.field.node.hs_publications.field_hs_publication_type + - field.field.node.hs_publications.field_hs_publication_year + - node.type.hs_publications + module: + - hs_field_helpers + - inline_entity_form + - link + - media_library + - path + - text +_core: + default_config_hash: YhHMDht0zK7u6dzUkYGt05lJdgV84TQV7AKbR4AdXss +id: node.hs_publications.default +targetEntityType: node +bundle: hs_publications +mode: default +content: + body: + type: text_textarea_with_summary + weight: 3 + region: content + settings: + rows: 9 + summary_rows: 3 + placeholder: '' + show_summary: false + third_party_settings: { } + created: + type: datetime_timestamp + weight: 5 + region: content + settings: { } + third_party_settings: { } + field_hs_publication_author: + type: inline_entity_form_complex + weight: 12 + region: content + settings: + form_mode: default + override_labels: true + label_singular: Author + label_plural: Authors + allow_new: true + allow_existing: false + match_operator: CONTAINS + allow_duplicate: false + collapsible: false + collapsed: false + revision: false + third_party_settings: { } + field_hs_publication_citation: + type: string_textarea + weight: 1 + region: content + settings: + rows: 5 + placeholder: '' + third_party_settings: { } + field_hs_publication_documents: + type: media_library_widget + weight: 16 + region: content + settings: + media_types: { } + third_party_settings: { } + field_hs_publication_image: + type: media_library_widget + weight: 2 + region: content + settings: + media_types: { } + third_party_settings: { } + field_hs_publication_link: + type: link_default + weight: 13 + region: content + settings: + placeholder_url: '' + placeholder_title: '' + third_party_settings: { } + field_hs_publication_publisher: + type: string_textfield + weight: 15 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } + field_hs_publication_type: + type: options_select + weight: 14 + region: content + settings: { } + third_party_settings: { } + field_hs_publication_year: + type: datetime_year_only + weight: 11 + region: content + settings: + min: '1970' + max: 'now + 10 years' + third_party_settings: { } + path: + type: path + weight: 8 + region: content + settings: { } + third_party_settings: { } + promote: + type: boolean_checkbox + weight: 6 + region: content + settings: + display_label: true + third_party_settings: { } + status: + type: boolean_checkbox + weight: 10 + region: content + settings: + display_label: true + third_party_settings: { } + sticky: + type: boolean_checkbox + weight: 7 + 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: 4 + region: content + settings: + match_operator: CONTAINS + match_limit: 10 + size: 60 + placeholder: '' + third_party_settings: { } + url_redirects: + weight: 9 + region: content + settings: { } + third_party_settings: { } +hidden: { } diff --git a/docroot/modules/humsci/hs_publications/modules/hs_publications_display/config/install/core.entity_view_display.node.hs_publications.default.yml b/docroot/modules/humsci/hs_publications/modules/hs_publications_display/config/install/core.entity_view_display.node.hs_publications.default.yml new file mode 100644 index 0000000000..5e03eb5734 --- /dev/null +++ b/docroot/modules/humsci/hs_publications/modules/hs_publications_display/config/install/core.entity_view_display.node.hs_publications.default.yml @@ -0,0 +1,274 @@ +uuid: d188fbb6-67cc-483a-a42e-dfd145cb6e45 +langcode: en +status: true +dependencies: + config: + - field.field.node.hs_publications.body + - field.field.node.hs_publications.field_hs_publication_author + - field.field.node.hs_publications.field_hs_publication_citation + - field.field.node.hs_publications.field_hs_publication_documents + - field.field.node.hs_publications.field_hs_publication_image + - field.field.node.hs_publications.field_hs_publication_link + - field.field.node.hs_publications.field_hs_publication_publisher + - field.field.node.hs_publications.field_hs_publication_type + - field.field.node.hs_publications.field_hs_publication_year + - node.type.hs_publications + - system.menu.main + module: + - hs_layouts + - layout_builder + - menu_block + - user +third_party_settings: + layout_builder: + enabled: true + allow_custom: false + sections: + - + layout_id: three_column_w_image + layout_settings: + label: '' + context_mapping: { } + section_width: decanter-grid + region_widths: '' + image_float: align-left + components: + 9f2ea3b6-1b3f-4bba-b196-1c0fc24df01e: + uuid: 9f2ea3b6-1b3f-4bba-b196-1c0fc24df01e + region: left_sidebar + configuration: + id: 'menu_block:main' + label: 'Main navigation' + label_display: visible + provider: menu_block + context_mapping: { } + follow: false + follow_parent: active + label_link: true + label_type: root + level: 2 + depth: 0 + expand_all_items: true + parent: 'main:' + suggestion: menu_block__main + weight: 0 + additional: { } + 5c724759-2354-4d97-a7b5-bf4c17e5420c: + uuid: 5c724759-2354-4d97-a7b5-bf4c17e5420c + region: main_above + configuration: + id: 'field_block:node:hs_publications:field_hs_publication_documents' + label: 'Publication Documents' + label_display: '' + provider: layout_builder + context_mapping: + entity: layout_builder.entity + view_mode: view_mode + formatter: + type: entity_reference_entity_view + label: above + settings: + view_mode: default + third_party_settings: + field_formatter_class: + class: hb-highlighted-label + ds: + ds_limit: '' + hs_field_helpers: + inline_contents: 0 + weight: 8 + additional: { } + 175f27f1-1a75-4457-90af-8722fa5816b5: + uuid: 175f27f1-1a75-4457-90af-8722fa5816b5 + region: main_above + configuration: + id: 'field_block:node:hs_publications:field_hs_publication_link' + label: 'Read the publication' + label_display: '' + provider: layout_builder + context_mapping: + entity: layout_builder.entity + view_mode: view_mode + formatter: + type: link + label: above + settings: + trim_length: 80 + url_only: false + url_plain: false + rel: '0' + target: '0' + third_party_settings: + field_formatter_class: + class: hb-highlighted-label + hs_field_helpers: + inline_contents: 0 + weight: 9 + additional: { } + e85d35ab-2351-4cd0-af5c-67c394e15446: + uuid: e85d35ab-2351-4cd0-af5c-67c394e15446 + region: top + configuration: + id: 'field_block:node:hs_publications:field_hs_publication_author' + label: Author(s) + label_display: '' + provider: layout_builder + context_mapping: + entity: layout_builder.entity + view_mode: view_mode + formatter: + type: entity_reference_entity_view + label: above + settings: + view_mode: default + third_party_settings: + field_formatter_class: + class: hb-highlighted-label + ds: + ds_limit: '' + hs_field_helpers: + inline_contents: 0 + weight: 2 + additional: { } + f7f89312-0d70-4007-a70a-bf6bd4c3561d: + uuid: f7f89312-0d70-4007-a70a-bf6bd4c3561d + region: top + configuration: + id: 'field_block:node:hs_publications:field_hs_publication_publisher' + label: Publisher + label_display: '' + provider: layout_builder + context_mapping: + entity: layout_builder.entity + view_mode: view_mode + formatter: + type: string + label: above + settings: + link_to_entity: false + third_party_settings: + field_formatter_class: + class: hb-highlighted-label + hs_field_helpers: + inline_contents: 0 + weight: 3 + additional: { } + 7be5daa9-a55a-4a01-ad60-54dc099c14ba: + uuid: 7be5daa9-a55a-4a01-ad60-54dc099c14ba + region: top + configuration: + id: 'field_block:node:hs_publications:field_hs_publication_year' + label: 'Publication Year' + label_display: '' + provider: layout_builder + context_mapping: + entity: layout_builder.entity + view_mode: view_mode + formatter: + type: datetime_custom + label: hidden + settings: + timezone_override: '' + date_format: 'Y' + third_party_settings: + field_formatter_class: + class: hb-subtitle + hs_field_helpers: + inline_contents: 0 + weight: 1 + additional: { } + 044e738a-222f-42da-b06b-1825238cbcea: + uuid: 044e738a-222f-42da-b06b-1825238cbcea + region: title + configuration: + id: 'field_block:node:hs_publications:title' + label: Title + label_display: '0' + provider: layout_builder + context_mapping: + entity: layout_builder.entity + formatter: + type: entity_title_heading + label: hidden + settings: + tag: h1 + third_party_settings: { } + weight: 1 + additional: { } + 2ee63ce7-4930-468f-a038-d26d7227b0e9: + uuid: 2ee63ce7-4930-468f-a038-d26d7227b0e9 + region: main_above + configuration: + id: 'field_block:node:hs_publications:field_hs_publication_image' + label: 'Publication Image' + label_display: '' + provider: layout_builder + context_mapping: + entity: layout_builder.entity + view_mode: view_mode + formatter: + type: media_image_formatter + label: hidden + settings: + view_mode: caption_credit + link: false + image_style: hs_medium_scaled_360px + third_party_settings: + field_formatter_class: + class: hb-main-body-detail-image + hs_field_helpers: + inline_contents: 0 + weight: 7 + additional: { } + 9e34500f-1fcd-4b1e-b3eb-b3f5a2bc2182: + uuid: 9e34500f-1fcd-4b1e-b3eb-b3f5a2bc2182 + region: main_above + configuration: + id: 'field_block:node:hs_publications:body' + label: Body + label_display: '0' + provider: layout_builder + context_mapping: + entity: layout_builder.entity + formatter: + type: text_default + label: hidden + settings: { } + third_party_settings: { } + weight: 10 + additional: { } + 41d2de4a-c8a2-4dfe-b07e-b6de39c8f2a2: + uuid: 41d2de4a-c8a2-4dfe-b07e-b6de39c8f2a2 + region: title + configuration: + id: hs_layouts_skipnav_main_anchor + label: 'Main content anchor target' + label_display: hidden + provider: hs_layouts + context_mapping: { } + weight: 0 + additional: { } + third_party_settings: { } +_core: + default_config_hash: ehwq1DmA62lLdGErJNMTRhmHOSau7saUQWGHqnpn72k +id: node.hs_publications.default +targetEntityType: node +bundle: hs_publications +mode: default +content: + links: + settings: { } + third_party_settings: { } + weight: 100 + region: content +hidden: + body: true + field_hs_publication_author: true + field_hs_publication_citation: true + field_hs_publication_documents: true + field_hs_publication_image: true + field_hs_publication_link: true + field_hs_publication_publisher: true + field_hs_publication_type: true + field_hs_publication_year: true + search_api_excerpt: true diff --git a/docroot/modules/humsci/hs_publications/modules/hs_publications_display/config/install/core.entity_view_display.node.hs_publications.hs_vertical_card.yml b/docroot/modules/humsci/hs_publications/modules/hs_publications_display/config/install/core.entity_view_display.node.hs_publications.hs_vertical_card.yml new file mode 100644 index 0000000000..2834c32eb1 --- /dev/null +++ b/docroot/modules/humsci/hs_publications/modules/hs_publications_display/config/install/core.entity_view_display.node.hs_publications.hs_vertical_card.yml @@ -0,0 +1,117 @@ +uuid: 1b1e3c62-6830-4692-8ae1-e41ef8315560 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.node.hs_vertical_card + - field.field.node.hs_publications.body + - field.field.node.hs_publications.field_hs_publication_author + - field.field.node.hs_publications.field_hs_publication_citation + - field.field.node.hs_publications.field_hs_publication_documents + - field.field.node.hs_publications.field_hs_publication_image + - field.field.node.hs_publications.field_hs_publication_link + - field.field.node.hs_publications.field_hs_publication_publisher + - field.field.node.hs_publications.field_hs_publication_type + - field.field.node.hs_publications.field_hs_publication_year + - node.type.hs_publications + module: + - datetime + - ds + - field_formatter_class + - hs_field_helpers + - stanford_media + - user +third_party_settings: + ds: + layout: + id: pattern_vertical_card + library: null + disable_css: false + entity_classes: all_classes + settings: + pattern: + field_templates: default + regions: + image: + - field_hs_publication_image + description: + - field_hs_publication_type + - node_title + author: + - field_hs_publication_author + year: + - field_hs_publication_year + fields: + node_title: + plugin_id: node_title + weight: 2 + label: hidden + formatter: default + settings: + link: true + wrapper: h2 + class: '' +id: node.hs_publications.hs_vertical_card +targetEntityType: node +bundle: hs_publications +mode: hs_vertical_card +content: + field_hs_publication_author: + type: entity_reference_label + label: hidden + settings: + link: false + third_party_settings: + field_formatter_class: + class: vertical-card__author-year--author + ds: + ds_limit: '' + hs_field_helpers: + inline_contents: 0 + weight: 3 + region: author + field_hs_publication_image: + type: media_responsive_image_formatter + label: hidden + settings: + view_mode: default + link: true + image_style: portrait_rectangle + third_party_settings: + field_formatter_class: + class: '' + hs_field_helpers: + inline_contents: 0 + weight: 0 + region: image + field_hs_publication_type: + type: entity_reference_label + label: hidden + settings: + link: false + third_party_settings: + field_formatter_class: + class: accent-dash + weight: 1 + region: description + field_hs_publication_year: + type: datetime_custom + label: hidden + settings: + timezone_override: '' + date_format: 'Y' + third_party_settings: + field_formatter_class: + class: vertical-card__author-year--year + hs_field_helpers: + inline_contents: 0 + weight: 4 + region: year +hidden: + body: true + field_hs_publication_citation: true + field_hs_publication_documents: true + field_hs_publication_link: true + field_hs_publication_publisher: true + links: true + search_api_excerpt: true diff --git a/docroot/modules/humsci/hs_publications/modules/hs_publications_display/config/installcore.entity_form_display.node.hs_publications.default.yml b/docroot/modules/humsci/hs_publications/modules/hs_publications_display/config/installcore.entity_form_display.node.hs_publications.default.yml new file mode 100644 index 0000000000..4322d07bd3 --- /dev/null +++ b/docroot/modules/humsci/hs_publications/modules/hs_publications_display/config/installcore.entity_form_display.node.hs_publications.default.yml @@ -0,0 +1,165 @@ +uuid: 71d081fe-6ced-4bd4-85fa-c64fa2db19a4 +langcode: en +status: true +dependencies: + config: + - field.field.node.hs_publications.body + - field.field.node.hs_publications.field_hs_publication_author + - field.field.node.hs_publications.field_hs_publication_citation + - field.field.node.hs_publications.field_hs_publication_documents + - field.field.node.hs_publications.field_hs_publication_image + - field.field.node.hs_publications.field_hs_publication_link + - field.field.node.hs_publications.field_hs_publication_publisher + - field.field.node.hs_publications.field_hs_publication_type + - field.field.node.hs_publications.field_hs_publication_year + - node.type.hs_publications + module: + - hs_field_helpers + - inline_entity_form + - link + - media_library + - path + - text +_core: + default_config_hash: YhHMDht0zK7u6dzUkYGt05lJdgV84TQV7AKbR4AdXss +id: node.hs_publications.default +targetEntityType: node +bundle: hs_publications +mode: default +content: + body: + type: text_textarea_with_summary + weight: 3 + region: content + settings: + rows: 9 + summary_rows: 3 + placeholder: '' + show_summary: false + third_party_settings: { } + created: + type: datetime_timestamp + weight: 5 + region: content + settings: { } + third_party_settings: { } + field_hs_publication_author: + type: inline_entity_form_complex + weight: 12 + region: content + settings: + form_mode: default + override_labels: true + label_singular: Author + label_plural: Authors + allow_new: true + allow_existing: false + match_operator: CONTAINS + allow_duplicate: false + collapsible: false + collapsed: false + revision: false + third_party_settings: { } + field_hs_publication_citation: + type: string_textarea + weight: 1 + region: content + settings: + rows: 5 + placeholder: '' + third_party_settings: { } + field_hs_publication_documents: + type: media_library_widget + weight: 16 + region: content + settings: + media_types: { } + third_party_settings: { } + field_hs_publication_image: + type: media_library_widget + weight: 2 + region: content + settings: + media_types: { } + third_party_settings: { } + field_hs_publication_link: + type: link_default + weight: 13 + region: content + settings: + placeholder_url: '' + placeholder_title: '' + third_party_settings: { } + field_hs_publication_publisher: + type: string_textfield + weight: 15 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } + field_hs_publication_type: + type: options_select + weight: 14 + region: content + settings: { } + third_party_settings: { } + field_hs_publication_year: + type: datetime_year_only + weight: 11 + region: content + settings: + min: '1970' + max: 'now + 10 years' + third_party_settings: { } + path: + type: path + weight: 8 + region: content + settings: { } + third_party_settings: { } + promote: + type: boolean_checkbox + weight: 6 + region: content + settings: + display_label: true + third_party_settings: { } + status: + type: boolean_checkbox + weight: 10 + region: content + settings: + display_label: true + third_party_settings: { } + sticky: + type: boolean_checkbox + weight: 7 + 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: 4 + region: content + settings: + match_operator: CONTAINS + match_limit: 10 + size: 60 + placeholder: '' + third_party_settings: { } + url_redirects: + weight: 9 + region: content + settings: { } + third_party_settings: { } +hidden: { } diff --git a/docroot/modules/humsci/hs_publications/modules/hs_publications_display/config/installcore.entity_view_display.node.hs_publications.default.yml b/docroot/modules/humsci/hs_publications/modules/hs_publications_display/config/installcore.entity_view_display.node.hs_publications.default.yml new file mode 100644 index 0000000000..5e03eb5734 --- /dev/null +++ b/docroot/modules/humsci/hs_publications/modules/hs_publications_display/config/installcore.entity_view_display.node.hs_publications.default.yml @@ -0,0 +1,274 @@ +uuid: d188fbb6-67cc-483a-a42e-dfd145cb6e45 +langcode: en +status: true +dependencies: + config: + - field.field.node.hs_publications.body + - field.field.node.hs_publications.field_hs_publication_author + - field.field.node.hs_publications.field_hs_publication_citation + - field.field.node.hs_publications.field_hs_publication_documents + - field.field.node.hs_publications.field_hs_publication_image + - field.field.node.hs_publications.field_hs_publication_link + - field.field.node.hs_publications.field_hs_publication_publisher + - field.field.node.hs_publications.field_hs_publication_type + - field.field.node.hs_publications.field_hs_publication_year + - node.type.hs_publications + - system.menu.main + module: + - hs_layouts + - layout_builder + - menu_block + - user +third_party_settings: + layout_builder: + enabled: true + allow_custom: false + sections: + - + layout_id: three_column_w_image + layout_settings: + label: '' + context_mapping: { } + section_width: decanter-grid + region_widths: '' + image_float: align-left + components: + 9f2ea3b6-1b3f-4bba-b196-1c0fc24df01e: + uuid: 9f2ea3b6-1b3f-4bba-b196-1c0fc24df01e + region: left_sidebar + configuration: + id: 'menu_block:main' + label: 'Main navigation' + label_display: visible + provider: menu_block + context_mapping: { } + follow: false + follow_parent: active + label_link: true + label_type: root + level: 2 + depth: 0 + expand_all_items: true + parent: 'main:' + suggestion: menu_block__main + weight: 0 + additional: { } + 5c724759-2354-4d97-a7b5-bf4c17e5420c: + uuid: 5c724759-2354-4d97-a7b5-bf4c17e5420c + region: main_above + configuration: + id: 'field_block:node:hs_publications:field_hs_publication_documents' + label: 'Publication Documents' + label_display: '' + provider: layout_builder + context_mapping: + entity: layout_builder.entity + view_mode: view_mode + formatter: + type: entity_reference_entity_view + label: above + settings: + view_mode: default + third_party_settings: + field_formatter_class: + class: hb-highlighted-label + ds: + ds_limit: '' + hs_field_helpers: + inline_contents: 0 + weight: 8 + additional: { } + 175f27f1-1a75-4457-90af-8722fa5816b5: + uuid: 175f27f1-1a75-4457-90af-8722fa5816b5 + region: main_above + configuration: + id: 'field_block:node:hs_publications:field_hs_publication_link' + label: 'Read the publication' + label_display: '' + provider: layout_builder + context_mapping: + entity: layout_builder.entity + view_mode: view_mode + formatter: + type: link + label: above + settings: + trim_length: 80 + url_only: false + url_plain: false + rel: '0' + target: '0' + third_party_settings: + field_formatter_class: + class: hb-highlighted-label + hs_field_helpers: + inline_contents: 0 + weight: 9 + additional: { } + e85d35ab-2351-4cd0-af5c-67c394e15446: + uuid: e85d35ab-2351-4cd0-af5c-67c394e15446 + region: top + configuration: + id: 'field_block:node:hs_publications:field_hs_publication_author' + label: Author(s) + label_display: '' + provider: layout_builder + context_mapping: + entity: layout_builder.entity + view_mode: view_mode + formatter: + type: entity_reference_entity_view + label: above + settings: + view_mode: default + third_party_settings: + field_formatter_class: + class: hb-highlighted-label + ds: + ds_limit: '' + hs_field_helpers: + inline_contents: 0 + weight: 2 + additional: { } + f7f89312-0d70-4007-a70a-bf6bd4c3561d: + uuid: f7f89312-0d70-4007-a70a-bf6bd4c3561d + region: top + configuration: + id: 'field_block:node:hs_publications:field_hs_publication_publisher' + label: Publisher + label_display: '' + provider: layout_builder + context_mapping: + entity: layout_builder.entity + view_mode: view_mode + formatter: + type: string + label: above + settings: + link_to_entity: false + third_party_settings: + field_formatter_class: + class: hb-highlighted-label + hs_field_helpers: + inline_contents: 0 + weight: 3 + additional: { } + 7be5daa9-a55a-4a01-ad60-54dc099c14ba: + uuid: 7be5daa9-a55a-4a01-ad60-54dc099c14ba + region: top + configuration: + id: 'field_block:node:hs_publications:field_hs_publication_year' + label: 'Publication Year' + label_display: '' + provider: layout_builder + context_mapping: + entity: layout_builder.entity + view_mode: view_mode + formatter: + type: datetime_custom + label: hidden + settings: + timezone_override: '' + date_format: 'Y' + third_party_settings: + field_formatter_class: + class: hb-subtitle + hs_field_helpers: + inline_contents: 0 + weight: 1 + additional: { } + 044e738a-222f-42da-b06b-1825238cbcea: + uuid: 044e738a-222f-42da-b06b-1825238cbcea + region: title + configuration: + id: 'field_block:node:hs_publications:title' + label: Title + label_display: '0' + provider: layout_builder + context_mapping: + entity: layout_builder.entity + formatter: + type: entity_title_heading + label: hidden + settings: + tag: h1 + third_party_settings: { } + weight: 1 + additional: { } + 2ee63ce7-4930-468f-a038-d26d7227b0e9: + uuid: 2ee63ce7-4930-468f-a038-d26d7227b0e9 + region: main_above + configuration: + id: 'field_block:node:hs_publications:field_hs_publication_image' + label: 'Publication Image' + label_display: '' + provider: layout_builder + context_mapping: + entity: layout_builder.entity + view_mode: view_mode + formatter: + type: media_image_formatter + label: hidden + settings: + view_mode: caption_credit + link: false + image_style: hs_medium_scaled_360px + third_party_settings: + field_formatter_class: + class: hb-main-body-detail-image + hs_field_helpers: + inline_contents: 0 + weight: 7 + additional: { } + 9e34500f-1fcd-4b1e-b3eb-b3f5a2bc2182: + uuid: 9e34500f-1fcd-4b1e-b3eb-b3f5a2bc2182 + region: main_above + configuration: + id: 'field_block:node:hs_publications:body' + label: Body + label_display: '0' + provider: layout_builder + context_mapping: + entity: layout_builder.entity + formatter: + type: text_default + label: hidden + settings: { } + third_party_settings: { } + weight: 10 + additional: { } + 41d2de4a-c8a2-4dfe-b07e-b6de39c8f2a2: + uuid: 41d2de4a-c8a2-4dfe-b07e-b6de39c8f2a2 + region: title + configuration: + id: hs_layouts_skipnav_main_anchor + label: 'Main content anchor target' + label_display: hidden + provider: hs_layouts + context_mapping: { } + weight: 0 + additional: { } + third_party_settings: { } +_core: + default_config_hash: ehwq1DmA62lLdGErJNMTRhmHOSau7saUQWGHqnpn72k +id: node.hs_publications.default +targetEntityType: node +bundle: hs_publications +mode: default +content: + links: + settings: { } + third_party_settings: { } + weight: 100 + region: content +hidden: + body: true + field_hs_publication_author: true + field_hs_publication_citation: true + field_hs_publication_documents: true + field_hs_publication_image: true + field_hs_publication_link: true + field_hs_publication_publisher: true + field_hs_publication_type: true + field_hs_publication_year: true + search_api_excerpt: true diff --git a/docroot/modules/humsci/hs_publications/modules/hs_publications_display/config/installcore.entity_view_display.node.hs_publications.hs_vertical_card.yml b/docroot/modules/humsci/hs_publications/modules/hs_publications_display/config/installcore.entity_view_display.node.hs_publications.hs_vertical_card.yml new file mode 100644 index 0000000000..2834c32eb1 --- /dev/null +++ b/docroot/modules/humsci/hs_publications/modules/hs_publications_display/config/installcore.entity_view_display.node.hs_publications.hs_vertical_card.yml @@ -0,0 +1,117 @@ +uuid: 1b1e3c62-6830-4692-8ae1-e41ef8315560 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.node.hs_vertical_card + - field.field.node.hs_publications.body + - field.field.node.hs_publications.field_hs_publication_author + - field.field.node.hs_publications.field_hs_publication_citation + - field.field.node.hs_publications.field_hs_publication_documents + - field.field.node.hs_publications.field_hs_publication_image + - field.field.node.hs_publications.field_hs_publication_link + - field.field.node.hs_publications.field_hs_publication_publisher + - field.field.node.hs_publications.field_hs_publication_type + - field.field.node.hs_publications.field_hs_publication_year + - node.type.hs_publications + module: + - datetime + - ds + - field_formatter_class + - hs_field_helpers + - stanford_media + - user +third_party_settings: + ds: + layout: + id: pattern_vertical_card + library: null + disable_css: false + entity_classes: all_classes + settings: + pattern: + field_templates: default + regions: + image: + - field_hs_publication_image + description: + - field_hs_publication_type + - node_title + author: + - field_hs_publication_author + year: + - field_hs_publication_year + fields: + node_title: + plugin_id: node_title + weight: 2 + label: hidden + formatter: default + settings: + link: true + wrapper: h2 + class: '' +id: node.hs_publications.hs_vertical_card +targetEntityType: node +bundle: hs_publications +mode: hs_vertical_card +content: + field_hs_publication_author: + type: entity_reference_label + label: hidden + settings: + link: false + third_party_settings: + field_formatter_class: + class: vertical-card__author-year--author + ds: + ds_limit: '' + hs_field_helpers: + inline_contents: 0 + weight: 3 + region: author + field_hs_publication_image: + type: media_responsive_image_formatter + label: hidden + settings: + view_mode: default + link: true + image_style: portrait_rectangle + third_party_settings: + field_formatter_class: + class: '' + hs_field_helpers: + inline_contents: 0 + weight: 0 + region: image + field_hs_publication_type: + type: entity_reference_label + label: hidden + settings: + link: false + third_party_settings: + field_formatter_class: + class: accent-dash + weight: 1 + region: description + field_hs_publication_year: + type: datetime_custom + label: hidden + settings: + timezone_override: '' + date_format: 'Y' + third_party_settings: + field_formatter_class: + class: vertical-card__author-year--year + hs_field_helpers: + inline_contents: 0 + weight: 4 + region: year +hidden: + body: true + field_hs_publication_citation: true + field_hs_publication_documents: true + field_hs_publication_link: true + field_hs_publication_publisher: true + links: true + search_api_excerpt: true From 0f0401a14481463ffd912ade918ecfbb0aca6214 Mon Sep 17 00:00:00 2001 From: joegl <20383-joegl@users.noreply.drupalcode.org> Date: Tue, 4 Jun 2024 17:02:54 -0500 Subject: [PATCH 08/15] Updated variable name. --- .../hs_migrate/src/Plugin/migrate/process/UrlToTerm.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docroot/modules/humsci/hs_migrate/src/Plugin/migrate/process/UrlToTerm.php b/docroot/modules/humsci/hs_migrate/src/Plugin/migrate/process/UrlToTerm.php index 079498d7e9..3583c4976c 100644 --- a/docroot/modules/humsci/hs_migrate/src/Plugin/migrate/process/UrlToTerm.php +++ b/docroot/modules/humsci/hs_migrate/src/Plugin/migrate/process/UrlToTerm.php @@ -50,14 +50,14 @@ public function __construct(array $configuration, $plugin_id, $plugin_definition */ public function transform($value, MigrateExecutableInterface $migrate_executable, Row $row, $destination_property) { $importer_storage = $this->entityTypeManager->getStorage('importers'); - $eck_ids = $importer_storage->getQuery() + $entity_reference_ids = $importer_storage->getQuery() ->condition('field_url', $value) ->accessCheck(FALSE) ->execute(); - if ($eck_ids) { - $eck = $importer_storage->load(reset($eck_ids)); - return $eck->get('field_terms')->getValue(); + if ($entity_reference_ids) { + $entity_references = $importer_storage->load(reset($entity_reference_ids)); + return $entity_references->get('field_terms')->getValue(); } return NULL; } From c9f581fdd356d017ecbb70b159f94e9f3edad603 Mon Sep 17 00:00:00 2001 From: joegl <20383-joegl@users.noreply.drupalcode.org> Date: Tue, 4 Jun 2024 17:05:58 -0500 Subject: [PATCH 09/15] Added hs_entities dependency. --- docroot/modules/humsci/hs_courses/hs_courses.info.yml | 1 + docroot/modules/humsci/hs_events/hs_events.info.yml | 1 + docroot/modules/humsci/hs_publications/hs_publications.info.yml | 1 + 3 files changed, 3 insertions(+) diff --git a/docroot/modules/humsci/hs_courses/hs_courses.info.yml b/docroot/modules/humsci/hs_courses/hs_courses.info.yml index 8f6e96680d..02555f74b5 100644 --- a/docroot/modules/humsci/hs_courses/hs_courses.info.yml +++ b/docroot/modules/humsci/hs_courses/hs_courses.info.yml @@ -8,6 +8,7 @@ dependencies: - datetime - field_formatter_class - field_group + - hs_entities - hs_field_helpers - hs_layouts - hs_person diff --git a/docroot/modules/humsci/hs_events/hs_events.info.yml b/docroot/modules/humsci/hs_events/hs_events.info.yml index 42404677d6..ae7fc52a41 100755 --- a/docroot/modules/humsci/hs_events/hs_events.info.yml +++ b/docroot/modules/humsci/hs_events/hs_events.info.yml @@ -10,6 +10,7 @@ dependencies: - datetime - datetime_range - field_group + - hs_entities - hs_field_helpers - inline_entity_form - link diff --git a/docroot/modules/humsci/hs_publications/hs_publications.info.yml b/docroot/modules/humsci/hs_publications/hs_publications.info.yml index 82b024a08e..b56e765f66 100644 --- a/docroot/modules/humsci/hs_publications/hs_publications.info.yml +++ b/docroot/modules/humsci/hs_publications/hs_publications.info.yml @@ -6,6 +6,7 @@ version: 8.2.7 package: 'Humanities & Sciences' dependencies: - datetime + - hs_entities - hs_field_helpers - inline_entity_form - layout_builder From f613d35dc4520626390b6c58c7d9480c7782d4c5 Mon Sep 17 00:00:00 2001 From: joegl <20383-joegl@users.noreply.drupalcode.org> Date: Wed, 31 Jul 2024 10:57:37 -0500 Subject: [PATCH 10/15] fixup! --- .../config/install/views.view.hs_courses.yml | 2 +- .../install/views.view.hs_publications.yml | 2 +- ...m_display.node.hs_publications.default.yml | 165 ----------- ...w_display.node.hs_publications.default.yml | 274 ------------------ ....node.hs_publications.hs_vertical_card.yml | 117 -------- 5 files changed, 2 insertions(+), 558 deletions(-) delete mode 100644 docroot/modules/humsci/hs_publications/modules/hs_publications_display/config/installcore.entity_form_display.node.hs_publications.default.yml delete mode 100644 docroot/modules/humsci/hs_publications/modules/hs_publications_display/config/installcore.entity_view_display.node.hs_publications.default.yml delete mode 100644 docroot/modules/humsci/hs_publications/modules/hs_publications_display/config/installcore.entity_view_display.node.hs_publications.hs_vertical_card.yml diff --git a/docroot/modules/humsci/hs_courses/config/install/views.view.hs_courses.yml b/docroot/modules/humsci/hs_courses/config/install/views.view.hs_courses.yml index 887be695ab..d2b84b1162 100644 --- a/docroot/modules/humsci/hs_courses/config/install/views.view.hs_courses.yml +++ b/docroot/modules/humsci/hs_courses/config/install/views.view.hs_courses.yml @@ -14,7 +14,7 @@ dependencies: - node.type.hs_course module: - datetime - - eck + - hs_entities - hs_field_helpers - hs_views_helper - node diff --git a/docroot/modules/humsci/hs_publications/config/install/views.view.hs_publications.yml b/docroot/modules/humsci/hs_publications/config/install/views.view.hs_publications.yml index c124e9d05e..fb708a34ed 100644 --- a/docroot/modules/humsci/hs_publications/config/install/views.view.hs_publications.yml +++ b/docroot/modules/humsci/hs_publications/config/install/views.view.hs_publications.yml @@ -12,7 +12,7 @@ dependencies: - taxonomy.vocabulary.hs_publication_type module: - datetime - - eck + - hs_entities - hs_views_helper - node - stanford_media diff --git a/docroot/modules/humsci/hs_publications/modules/hs_publications_display/config/installcore.entity_form_display.node.hs_publications.default.yml b/docroot/modules/humsci/hs_publications/modules/hs_publications_display/config/installcore.entity_form_display.node.hs_publications.default.yml deleted file mode 100644 index 4322d07bd3..0000000000 --- a/docroot/modules/humsci/hs_publications/modules/hs_publications_display/config/installcore.entity_form_display.node.hs_publications.default.yml +++ /dev/null @@ -1,165 +0,0 @@ -uuid: 71d081fe-6ced-4bd4-85fa-c64fa2db19a4 -langcode: en -status: true -dependencies: - config: - - field.field.node.hs_publications.body - - field.field.node.hs_publications.field_hs_publication_author - - field.field.node.hs_publications.field_hs_publication_citation - - field.field.node.hs_publications.field_hs_publication_documents - - field.field.node.hs_publications.field_hs_publication_image - - field.field.node.hs_publications.field_hs_publication_link - - field.field.node.hs_publications.field_hs_publication_publisher - - field.field.node.hs_publications.field_hs_publication_type - - field.field.node.hs_publications.field_hs_publication_year - - node.type.hs_publications - module: - - hs_field_helpers - - inline_entity_form - - link - - media_library - - path - - text -_core: - default_config_hash: YhHMDht0zK7u6dzUkYGt05lJdgV84TQV7AKbR4AdXss -id: node.hs_publications.default -targetEntityType: node -bundle: hs_publications -mode: default -content: - body: - type: text_textarea_with_summary - weight: 3 - region: content - settings: - rows: 9 - summary_rows: 3 - placeholder: '' - show_summary: false - third_party_settings: { } - created: - type: datetime_timestamp - weight: 5 - region: content - settings: { } - third_party_settings: { } - field_hs_publication_author: - type: inline_entity_form_complex - weight: 12 - region: content - settings: - form_mode: default - override_labels: true - label_singular: Author - label_plural: Authors - allow_new: true - allow_existing: false - match_operator: CONTAINS - allow_duplicate: false - collapsible: false - collapsed: false - revision: false - third_party_settings: { } - field_hs_publication_citation: - type: string_textarea - weight: 1 - region: content - settings: - rows: 5 - placeholder: '' - third_party_settings: { } - field_hs_publication_documents: - type: media_library_widget - weight: 16 - region: content - settings: - media_types: { } - third_party_settings: { } - field_hs_publication_image: - type: media_library_widget - weight: 2 - region: content - settings: - media_types: { } - third_party_settings: { } - field_hs_publication_link: - type: link_default - weight: 13 - region: content - settings: - placeholder_url: '' - placeholder_title: '' - third_party_settings: { } - field_hs_publication_publisher: - type: string_textfield - weight: 15 - region: content - settings: - size: 60 - placeholder: '' - third_party_settings: { } - field_hs_publication_type: - type: options_select - weight: 14 - region: content - settings: { } - third_party_settings: { } - field_hs_publication_year: - type: datetime_year_only - weight: 11 - region: content - settings: - min: '1970' - max: 'now + 10 years' - third_party_settings: { } - path: - type: path - weight: 8 - region: content - settings: { } - third_party_settings: { } - promote: - type: boolean_checkbox - weight: 6 - region: content - settings: - display_label: true - third_party_settings: { } - status: - type: boolean_checkbox - weight: 10 - region: content - settings: - display_label: true - third_party_settings: { } - sticky: - type: boolean_checkbox - weight: 7 - 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: 4 - region: content - settings: - match_operator: CONTAINS - match_limit: 10 - size: 60 - placeholder: '' - third_party_settings: { } - url_redirects: - weight: 9 - region: content - settings: { } - third_party_settings: { } -hidden: { } diff --git a/docroot/modules/humsci/hs_publications/modules/hs_publications_display/config/installcore.entity_view_display.node.hs_publications.default.yml b/docroot/modules/humsci/hs_publications/modules/hs_publications_display/config/installcore.entity_view_display.node.hs_publications.default.yml deleted file mode 100644 index 5e03eb5734..0000000000 --- a/docroot/modules/humsci/hs_publications/modules/hs_publications_display/config/installcore.entity_view_display.node.hs_publications.default.yml +++ /dev/null @@ -1,274 +0,0 @@ -uuid: d188fbb6-67cc-483a-a42e-dfd145cb6e45 -langcode: en -status: true -dependencies: - config: - - field.field.node.hs_publications.body - - field.field.node.hs_publications.field_hs_publication_author - - field.field.node.hs_publications.field_hs_publication_citation - - field.field.node.hs_publications.field_hs_publication_documents - - field.field.node.hs_publications.field_hs_publication_image - - field.field.node.hs_publications.field_hs_publication_link - - field.field.node.hs_publications.field_hs_publication_publisher - - field.field.node.hs_publications.field_hs_publication_type - - field.field.node.hs_publications.field_hs_publication_year - - node.type.hs_publications - - system.menu.main - module: - - hs_layouts - - layout_builder - - menu_block - - user -third_party_settings: - layout_builder: - enabled: true - allow_custom: false - sections: - - - layout_id: three_column_w_image - layout_settings: - label: '' - context_mapping: { } - section_width: decanter-grid - region_widths: '' - image_float: align-left - components: - 9f2ea3b6-1b3f-4bba-b196-1c0fc24df01e: - uuid: 9f2ea3b6-1b3f-4bba-b196-1c0fc24df01e - region: left_sidebar - configuration: - id: 'menu_block:main' - label: 'Main navigation' - label_display: visible - provider: menu_block - context_mapping: { } - follow: false - follow_parent: active - label_link: true - label_type: root - level: 2 - depth: 0 - expand_all_items: true - parent: 'main:' - suggestion: menu_block__main - weight: 0 - additional: { } - 5c724759-2354-4d97-a7b5-bf4c17e5420c: - uuid: 5c724759-2354-4d97-a7b5-bf4c17e5420c - region: main_above - configuration: - id: 'field_block:node:hs_publications:field_hs_publication_documents' - label: 'Publication Documents' - label_display: '' - provider: layout_builder - context_mapping: - entity: layout_builder.entity - view_mode: view_mode - formatter: - type: entity_reference_entity_view - label: above - settings: - view_mode: default - third_party_settings: - field_formatter_class: - class: hb-highlighted-label - ds: - ds_limit: '' - hs_field_helpers: - inline_contents: 0 - weight: 8 - additional: { } - 175f27f1-1a75-4457-90af-8722fa5816b5: - uuid: 175f27f1-1a75-4457-90af-8722fa5816b5 - region: main_above - configuration: - id: 'field_block:node:hs_publications:field_hs_publication_link' - label: 'Read the publication' - label_display: '' - provider: layout_builder - context_mapping: - entity: layout_builder.entity - view_mode: view_mode - formatter: - type: link - label: above - settings: - trim_length: 80 - url_only: false - url_plain: false - rel: '0' - target: '0' - third_party_settings: - field_formatter_class: - class: hb-highlighted-label - hs_field_helpers: - inline_contents: 0 - weight: 9 - additional: { } - e85d35ab-2351-4cd0-af5c-67c394e15446: - uuid: e85d35ab-2351-4cd0-af5c-67c394e15446 - region: top - configuration: - id: 'field_block:node:hs_publications:field_hs_publication_author' - label: Author(s) - label_display: '' - provider: layout_builder - context_mapping: - entity: layout_builder.entity - view_mode: view_mode - formatter: - type: entity_reference_entity_view - label: above - settings: - view_mode: default - third_party_settings: - field_formatter_class: - class: hb-highlighted-label - ds: - ds_limit: '' - hs_field_helpers: - inline_contents: 0 - weight: 2 - additional: { } - f7f89312-0d70-4007-a70a-bf6bd4c3561d: - uuid: f7f89312-0d70-4007-a70a-bf6bd4c3561d - region: top - configuration: - id: 'field_block:node:hs_publications:field_hs_publication_publisher' - label: Publisher - label_display: '' - provider: layout_builder - context_mapping: - entity: layout_builder.entity - view_mode: view_mode - formatter: - type: string - label: above - settings: - link_to_entity: false - third_party_settings: - field_formatter_class: - class: hb-highlighted-label - hs_field_helpers: - inline_contents: 0 - weight: 3 - additional: { } - 7be5daa9-a55a-4a01-ad60-54dc099c14ba: - uuid: 7be5daa9-a55a-4a01-ad60-54dc099c14ba - region: top - configuration: - id: 'field_block:node:hs_publications:field_hs_publication_year' - label: 'Publication Year' - label_display: '' - provider: layout_builder - context_mapping: - entity: layout_builder.entity - view_mode: view_mode - formatter: - type: datetime_custom - label: hidden - settings: - timezone_override: '' - date_format: 'Y' - third_party_settings: - field_formatter_class: - class: hb-subtitle - hs_field_helpers: - inline_contents: 0 - weight: 1 - additional: { } - 044e738a-222f-42da-b06b-1825238cbcea: - uuid: 044e738a-222f-42da-b06b-1825238cbcea - region: title - configuration: - id: 'field_block:node:hs_publications:title' - label: Title - label_display: '0' - provider: layout_builder - context_mapping: - entity: layout_builder.entity - formatter: - type: entity_title_heading - label: hidden - settings: - tag: h1 - third_party_settings: { } - weight: 1 - additional: { } - 2ee63ce7-4930-468f-a038-d26d7227b0e9: - uuid: 2ee63ce7-4930-468f-a038-d26d7227b0e9 - region: main_above - configuration: - id: 'field_block:node:hs_publications:field_hs_publication_image' - label: 'Publication Image' - label_display: '' - provider: layout_builder - context_mapping: - entity: layout_builder.entity - view_mode: view_mode - formatter: - type: media_image_formatter - label: hidden - settings: - view_mode: caption_credit - link: false - image_style: hs_medium_scaled_360px - third_party_settings: - field_formatter_class: - class: hb-main-body-detail-image - hs_field_helpers: - inline_contents: 0 - weight: 7 - additional: { } - 9e34500f-1fcd-4b1e-b3eb-b3f5a2bc2182: - uuid: 9e34500f-1fcd-4b1e-b3eb-b3f5a2bc2182 - region: main_above - configuration: - id: 'field_block:node:hs_publications:body' - label: Body - label_display: '0' - provider: layout_builder - context_mapping: - entity: layout_builder.entity - formatter: - type: text_default - label: hidden - settings: { } - third_party_settings: { } - weight: 10 - additional: { } - 41d2de4a-c8a2-4dfe-b07e-b6de39c8f2a2: - uuid: 41d2de4a-c8a2-4dfe-b07e-b6de39c8f2a2 - region: title - configuration: - id: hs_layouts_skipnav_main_anchor - label: 'Main content anchor target' - label_display: hidden - provider: hs_layouts - context_mapping: { } - weight: 0 - additional: { } - third_party_settings: { } -_core: - default_config_hash: ehwq1DmA62lLdGErJNMTRhmHOSau7saUQWGHqnpn72k -id: node.hs_publications.default -targetEntityType: node -bundle: hs_publications -mode: default -content: - links: - settings: { } - third_party_settings: { } - weight: 100 - region: content -hidden: - body: true - field_hs_publication_author: true - field_hs_publication_citation: true - field_hs_publication_documents: true - field_hs_publication_image: true - field_hs_publication_link: true - field_hs_publication_publisher: true - field_hs_publication_type: true - field_hs_publication_year: true - search_api_excerpt: true diff --git a/docroot/modules/humsci/hs_publications/modules/hs_publications_display/config/installcore.entity_view_display.node.hs_publications.hs_vertical_card.yml b/docroot/modules/humsci/hs_publications/modules/hs_publications_display/config/installcore.entity_view_display.node.hs_publications.hs_vertical_card.yml deleted file mode 100644 index 2834c32eb1..0000000000 --- a/docroot/modules/humsci/hs_publications/modules/hs_publications_display/config/installcore.entity_view_display.node.hs_publications.hs_vertical_card.yml +++ /dev/null @@ -1,117 +0,0 @@ -uuid: 1b1e3c62-6830-4692-8ae1-e41ef8315560 -langcode: en -status: true -dependencies: - config: - - core.entity_view_mode.node.hs_vertical_card - - field.field.node.hs_publications.body - - field.field.node.hs_publications.field_hs_publication_author - - field.field.node.hs_publications.field_hs_publication_citation - - field.field.node.hs_publications.field_hs_publication_documents - - field.field.node.hs_publications.field_hs_publication_image - - field.field.node.hs_publications.field_hs_publication_link - - field.field.node.hs_publications.field_hs_publication_publisher - - field.field.node.hs_publications.field_hs_publication_type - - field.field.node.hs_publications.field_hs_publication_year - - node.type.hs_publications - module: - - datetime - - ds - - field_formatter_class - - hs_field_helpers - - stanford_media - - user -third_party_settings: - ds: - layout: - id: pattern_vertical_card - library: null - disable_css: false - entity_classes: all_classes - settings: - pattern: - field_templates: default - regions: - image: - - field_hs_publication_image - description: - - field_hs_publication_type - - node_title - author: - - field_hs_publication_author - year: - - field_hs_publication_year - fields: - node_title: - plugin_id: node_title - weight: 2 - label: hidden - formatter: default - settings: - link: true - wrapper: h2 - class: '' -id: node.hs_publications.hs_vertical_card -targetEntityType: node -bundle: hs_publications -mode: hs_vertical_card -content: - field_hs_publication_author: - type: entity_reference_label - label: hidden - settings: - link: false - third_party_settings: - field_formatter_class: - class: vertical-card__author-year--author - ds: - ds_limit: '' - hs_field_helpers: - inline_contents: 0 - weight: 3 - region: author - field_hs_publication_image: - type: media_responsive_image_formatter - label: hidden - settings: - view_mode: default - link: true - image_style: portrait_rectangle - third_party_settings: - field_formatter_class: - class: '' - hs_field_helpers: - inline_contents: 0 - weight: 0 - region: image - field_hs_publication_type: - type: entity_reference_label - label: hidden - settings: - link: false - third_party_settings: - field_formatter_class: - class: accent-dash - weight: 1 - region: description - field_hs_publication_year: - type: datetime_custom - label: hidden - settings: - timezone_override: '' - date_format: 'Y' - third_party_settings: - field_formatter_class: - class: vertical-card__author-year--year - hs_field_helpers: - inline_contents: 0 - weight: 4 - region: year -hidden: - body: true - field_hs_publication_citation: true - field_hs_publication_documents: true - field_hs_publication_link: true - field_hs_publication_publisher: true - links: true - search_api_excerpt: true From 5e2f011b35614169a9035d00bd0573290a584c77 Mon Sep 17 00:00:00 2001 From: joegl <20383-joegl@users.noreply.drupalcode.org> Date: Wed, 31 Jul 2024 11:27:05 -0500 Subject: [PATCH 11/15] Uninstall eck in core.extension.yml --- config/default/core.extension.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/config/default/core.extension.yml b/config/default/core.extension.yml index e96a29123d..1fbe42e849 100644 --- a/config/default/core.extension.yml +++ b/config/default/core.extension.yml @@ -56,7 +56,6 @@ module: draggableviews: 0 dropzonejs: 0 dynamic_page_cache: 0 - eck: 0 editor: 0 editor_advanced_link: 0 editoria11y: 0 @@ -275,12 +274,12 @@ module: hs_admin: 1000 su_humsci_profile: 1000 theme: - claro: 0 - gin: 0 - su_humsci_gin_admin: 0 stanford_basic: 0 humsci_basic: 0 - humsci_colorful: 0 humsci_traditional: 0 + humsci_colorful: 0 + claro: 0 + gin: 0 + su_humsci_gin_admin: 0 stable9: 0 profile: su_humsci_profile From 77aa324881d42f9d4e5ff6e9976006503bc8d81d Mon Sep 17 00:00:00 2001 From: joegl <20383-joegl@users.noreply.drupalcode.org> Date: Wed, 31 Jul 2024 11:40:14 -0500 Subject: [PATCH 12/15] Configuration fixes. --- config/default/eck.settings.yml | 1 - config/default/views.view.hs_courses.yml | 2 +- config/default/views.view.hs_default_courses.yml | 2 +- config/default/views.view.hs_default_events.yml | 2 +- config/default/views.view.hs_default_manage_content.yml | 2 +- config/default/views.view.hs_publications.yml | 2 +- 6 files changed, 5 insertions(+), 6 deletions(-) delete mode 100644 config/default/eck.settings.yml diff --git a/config/default/eck.settings.yml b/config/default/eck.settings.yml deleted file mode 100644 index 6cb95cbc42..0000000000 --- a/config/default/eck.settings.yml +++ /dev/null @@ -1 +0,0 @@ -use_admin_theme: true diff --git a/config/default/views.view.hs_courses.yml b/config/default/views.view.hs_courses.yml index 887be695ab..d2b84b1162 100644 --- a/config/default/views.view.hs_courses.yml +++ b/config/default/views.view.hs_courses.yml @@ -14,7 +14,7 @@ dependencies: - node.type.hs_course module: - datetime - - eck + - hs_entities - hs_field_helpers - hs_views_helper - node diff --git a/config/default/views.view.hs_default_courses.yml b/config/default/views.view.hs_default_courses.yml index 9147944220..94f8b3cb7c 100644 --- a/config/default/views.view.hs_default_courses.yml +++ b/config/default/views.view.hs_default_courses.yml @@ -16,7 +16,7 @@ dependencies: - taxonomy.vocabulary.hs_course_tags module: - datetime - - eck + - hs_entities - hs_field_helpers - hs_views_helper - node diff --git a/config/default/views.view.hs_default_events.yml b/config/default/views.view.hs_default_events.yml index ca156117ed..6fade99bad 100644 --- a/config/default/views.view.hs_default_events.yml +++ b/config/default/views.view.hs_default_events.yml @@ -15,7 +15,7 @@ dependencies: - node.type.hs_event - taxonomy.vocabulary.hs_event_type module: - - eck + - hs_entities - entity_reference_exposed_filters - hs_field_helpers - node diff --git a/config/default/views.view.hs_default_manage_content.yml b/config/default/views.view.hs_default_manage_content.yml index b9593cbb60..d7e75f2d85 100644 --- a/config/default/views.view.hs_default_manage_content.yml +++ b/config/default/views.view.hs_default_manage_content.yml @@ -44,7 +44,7 @@ dependencies: - taxonomy.vocabulary.hs_publication_type module: - datetime - - eck + - hs_entities - hs_field_helpers - hs_migrate - node diff --git a/config/default/views.view.hs_publications.yml b/config/default/views.view.hs_publications.yml index c124e9d05e..fb708a34ed 100644 --- a/config/default/views.view.hs_publications.yml +++ b/config/default/views.view.hs_publications.yml @@ -12,7 +12,7 @@ dependencies: - taxonomy.vocabulary.hs_publication_type module: - datetime - - eck + - hs_entities - hs_views_helper - node - stanford_media From f7a166f943baf6f0b01acf56ddd9b8cd269804db Mon Sep 17 00:00:00 2001 From: joegl <20383-joegl@users.noreply.drupalcode.org> Date: Thu, 1 Aug 2024 11:14:29 -0500 Subject: [PATCH 13/15] Add database update to remove eck.settings configuration. --- .../humsci/su_humsci_profile/su_humsci_profile.install | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/docroot/profiles/humsci/su_humsci_profile/su_humsci_profile.install b/docroot/profiles/humsci/su_humsci_profile/su_humsci_profile.install index 670fad2617..40acdca8d7 100644 --- a/docroot/profiles/humsci/su_humsci_profile/su_humsci_profile.install +++ b/docroot/profiles/humsci/su_humsci_profile/su_humsci_profile.install @@ -863,3 +863,12 @@ function su_humsci_profile_update_9705() { $themes_to_uninstall = array_intersect($legacy_themes, array_keys($installed_themes)); \Drupal::service('theme_installer')->uninstall($themes_to_uninstall); } + +/** + * Clean up and deprecate ECK. + */ +function su_humsci_profile_update_9706() { + // Delete ECK settings configuration. + $eck_settings = \Drupal::configFactory()->getEditable('eck.settings'); + $eck_settings->delete(); +} From 248de7c7ed40bdb39528c4ccd1d17ae5d574b252 Mon Sep 17 00:00:00 2001 From: joegl <20383-joegl@users.noreply.drupalcode.org> Date: Thu, 1 Aug 2024 11:33:06 -0500 Subject: [PATCH 14/15] Database updates for removing eck views dependencies and uninstalling eck. --- .../su_humsci_profile.install | 45 ++++++++++++++++++- 1 file changed, 44 insertions(+), 1 deletion(-) diff --git a/docroot/profiles/humsci/su_humsci_profile/su_humsci_profile.install b/docroot/profiles/humsci/su_humsci_profile/su_humsci_profile.install index 40acdca8d7..6beb4276da 100644 --- a/docroot/profiles/humsci/su_humsci_profile/su_humsci_profile.install +++ b/docroot/profiles/humsci/su_humsci_profile/su_humsci_profile.install @@ -865,10 +865,53 @@ function su_humsci_profile_update_9705() { } /** - * Clean up and deprecate ECK. + * Remove eck dependencies in views configuration. */ function su_humsci_profile_update_9706() { + $config_factory = \Drupal::configFactory(); + $view_config_names = $config_factory->listAll('views.view.'); + + $count_config = 0; + $count_module = 0; + + foreach ($view_config_names as $config_name) { + $config = $config_factory->getEditable($config_name); + $raw = $config->getRawData(); + + // Remove eck_type dependencies. + if (isset($raw['dependencies']['config'])) { + foreach ($raw['dependencies']['config'] as $key => $config_dependency) { + if (str_contains($config_dependency, 'eck_type')) { + unset($raw['dependencies']['config'][$key]); + $count_config++; + } + } + } + + // Remove eck module dependency. + if (isset($raw['dependencies']['module'])) { + foreach ($raw['dependencies']['module'] as $key => $module_dependency) { + if ($module_dependency == 'eck') { + unset($raw['dependencies']['module'][$key]); + $count_module++; + } + } + } + $config->setData($raw)->save(TRUE); + } + + return "Removed " . $count_config . " config dependencies and " . $count_module . " module dependencies."; +} + + +/** + * Delete eck configuration and uninstal eck module. + */ +function su_humsci_profile_update_9707() { // Delete ECK settings configuration. $eck_settings = \Drupal::configFactory()->getEditable('eck.settings'); $eck_settings->delete(); + + // Uninstall eck module. + \Drupal::service('module_installer')->uninstall(['eck']); } From 202242569aef072411e00a2a83a8146845597b09 Mon Sep 17 00:00:00 2001 From: joegl <20383-joegl@users.noreply.drupalcode.org> Date: Thu, 1 Aug 2024 12:40:59 -0500 Subject: [PATCH 15/15] fixup --- .../profiles/humsci/su_humsci_profile/su_humsci_profile.install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docroot/profiles/humsci/su_humsci_profile/su_humsci_profile.install b/docroot/profiles/humsci/su_humsci_profile/su_humsci_profile.install index 6beb4276da..a174a75058 100644 --- a/docroot/profiles/humsci/su_humsci_profile/su_humsci_profile.install +++ b/docroot/profiles/humsci/su_humsci_profile/su_humsci_profile.install @@ -905,7 +905,7 @@ function su_humsci_profile_update_9706() { /** - * Delete eck configuration and uninstal eck module. + * Delete eck configuration and uninstall eck module. */ function su_humsci_profile_update_9707() { // Delete ECK settings configuration.