Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix inheritance #83

Merged
merged 4 commits into from
Feb 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@
"patches": {
"drupal/core": {
"https://www.drupal.org/node/2833734": "https://www.drupal.org/files/issues/2020-11-29/2833734-allow-attachment-pager-42.patch",
"https://www.drupal.org/node/2858890": "https://git.drupalcode.org/project/drupal/-/merge_requests/4242.patch"
"https://www.drupal.org/node/2858890": "https://git.drupalcode.org/project/drupal/-/merge_requests/5867.patch"
},
"drupal/google_analytics": {
"https://www.drupal.org/project/google_analytics/issues/3373921": "https://www.drupal.org/files/issues/2023-08-07/google-analytics-issues-3373921-cannot-install-from-existing-config-11.patch"
Expand Down
2 changes: 1 addition & 1 deletion config/sync/core.extension.yml
Original file line number Diff line number Diff line change
Expand Up @@ -262,6 +262,6 @@ theme:
minimally_branded_subtheme: 0
stable9: 0
stanford_basic: 0
stanford_profile_admin: 0
stanford_profile_admin_theme: 0
vpge: 0
profile: vpge_profile
29 changes: 7 additions & 22 deletions config/sync/filter.format.stanford_minimal_html.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,38 +21,23 @@ filters:
allowed_html: '<br> <p id class> <a class aria-label hreflang data-entity-substitution data-entity-type data-entity-uuid title id href> <h2 id class> <h3 id class> <h4 id class> <h5 id class> <h6 id class> <cite> <dd> <div id class> <blockquote cite> <strong> <em> <code> <ul> <ol reversed start> <li>'
filter_html_help: true
filter_html_nofollow: false
filter_htmlcorrector:
id: filter_htmlcorrector
filter_html_escape:
id: filter_html_escape
provider: filter
status: true
weight: -10
settings: { }
linkit:
id: linkit
provider: linkit
status: true
weight: 10
settings:
title: true
filter_responsive_tables_filter:
id: filter_responsive_tables_filter
provider: responsive_tables_filter
status: false
weight: 0
settings:
tablesaw_type: stack
tablesaw_persist: '1'
settings: { }
filter_html_image_secure:
id: filter_html_image_secure
provider: filter
status: false
weight: 50
settings: { }
filter_html_escape:
id: filter_html_escape
filter_htmlcorrector:
id: filter_htmlcorrector
provider: filter
status: false
weight: 0
status: true
weight: -10
settings: { }
filter_mathjax:
id: filter_mathjax
Expand Down
2 changes: 1 addition & 1 deletion tests/codeception/acceptance/SubThemeCest.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
*
* @group no-parallel
*/
class SubThemeCest {
abstract class SubThemeCest {

/**
* Human readable name for the theme.
Expand Down
2 changes: 1 addition & 1 deletion vpge_profile.install
Original file line number Diff line number Diff line change
Expand Up @@ -617,7 +617,7 @@ function _vpge_profile_reset_node_changed_time(NodeInterface $node, int $changed
/**
* Update configs 'stanford_profile_admin' with 'stanford_profile_admin_theme'.
*/
function stanford_profile_update_9104() {
function vpge_profile_update_9104() {
$config_factory = \Drupal::configFactory();
foreach ($config_factory->listAll() as $config_name) {
$config = $config_factory->getEditable($config_name);
Expand Down
Loading