-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue #3486893, #3478484, #3483064, #3415662, by joshua1234511, richa…
…rdgaunt, fionamorrison23, febdao, gargsuchi, sonam.chaturvedi, mwjansen, alex.skrypnyk: Add opt-in for controlling what form elements are rendered via civictheme system. (#1306)
- Loading branch information
1 parent
5c9f5eb
commit c4e9938
Showing
12 changed files
with
1,511 additions
and
44 deletions.
There are no files selected for viewing
383 changes: 383 additions & 0 deletions
383
tests/behat/features/form_elements.core_form_elements.feature
Large diffs are not rendered by default.
Oops, something went wrong.
265 changes: 265 additions & 0 deletions
265
tests/behat/features/form_elements.webform_form_elements.feature
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
web/modules/custom/civictheme_dev/civictheme_dev.routing.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
civictheme_dev.styleguide_form: | ||
path: '/civictheme-core-form-elements' | ||
defaults: | ||
_form: 'Drupal\civictheme_dev\Form\CoreFormElementsForm' | ||
_title: 'CivicTheme Core Form Elements Form' | ||
requirements: | ||
_permission: 'access content' | ||
civictheme_dev.admin_styleguide_form: | ||
path: '/admin/structure/civictheme-core-form-elements' | ||
defaults: | ||
_form: 'Drupal\civictheme_dev\Form\CoreFormElementsForm' | ||
_title: 'Core Form Elements Form (Admin Theme)' | ||
requirements: | ||
_permission: 'view the administration theme' |
Oops, something went wrong.