-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
…3420) Co-authored-by: Joe Parsons <[email protected]> Co-authored-by: Dana Hertzberg <[email protected]> Co-authored-by: Brian Berndt <[email protected]> Co-authored-by: tadean <[email protected]>
- Loading branch information
1 parent
383e443
commit 5d110eb
Showing
21 changed files
with
1,086 additions
and
66 deletions.
There are no files selected for viewing
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
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
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
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,5 @@ | ||
az_finder.settings_tab: | ||
title: 'AZ Finder' | ||
route_name: az_finder.settings | ||
base_route: az_core.az_settings | ||
weight: 0 |
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,3 @@ | ||
administer az_finder settings: | ||
title: 'Administer Quickstart Finder Settings' | ||
description: 'Allows users to manage Quickstart Finder settings.' |
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,7 @@ | ||
az_finder.settings: | ||
path: '/admin/config/az-quickstart/settings/az-finder' | ||
defaults: | ||
_form: '\Drupal\az_finder\Form\AZFinderSettingsForm' | ||
_title: 'AZ Finder Settings' | ||
requirements: | ||
_permission: 'administer az_finder settings' |
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
2 changes: 2 additions & 0 deletions
2
modules/custom/az_finder/config/install/az_finder.settings.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,2 @@ | ||
tid_widget: | ||
default_state: 'expand' |
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
69 changes: 69 additions & 0 deletions
69
modules/custom/az_finder/config/schema/az_finder.schema.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,69 @@ | ||
az_finder.settings: | ||
type: config_object | ||
label: 'AZ Finder Settings' | ||
mapping: | ||
tid_widget: | ||
type: mapping | ||
label: 'Global Default Settings' | ||
mapping: | ||
default_state: | ||
type: string | ||
label: 'Global Default State for Exposed Filters' | ||
constraints: | ||
Choice: | ||
- 'expand' | ||
- 'collapse' | ||
|
||
az_finder.tid_widget.[view_id].[display_id]: | ||
type: config_object | ||
label: 'AZ Finder Override for a specific View Display' | ||
mapping: | ||
vocabularies: | ||
type: sequence | ||
label: 'Vocabulary settings for this view display' | ||
sequence: | ||
type: mapping | ||
mapping: | ||
vocabulary_id: | ||
type: string | ||
label: 'Vocabulary ID' | ||
terms: | ||
type: sequence | ||
label: 'Settings for each term in the vocabulary' | ||
sequence: | ||
type: mapping | ||
mapping: | ||
term_id: | ||
type: string | ||
label: 'Term ID' | ||
default_state: | ||
type: string | ||
label: 'Setting for each term' | ||
constraints: | ||
Required: false | ||
Choice: | ||
- 'expand' | ||
- 'collapse' | ||
|
||
views.exposed_form.az_better_exposed_filters: | ||
type: views.exposed_form.bef | ||
label: 'Quickstart Exposed Filters' | ||
mapping: | ||
reset_button_position: | ||
type: string | ||
label: 'Reset Button Position' | ||
reset_button_counter: | ||
type: boolean | ||
label: 'Show Active Filter Counter' | ||
orientation: | ||
type: string | ||
label: 'Orientation' | ||
skip_link: | ||
type: boolean | ||
label: 'Add Skip Link' | ||
skip_link_text: | ||
type: string | ||
label: 'Skip Link Text' | ||
skip_link_id: | ||
type: string | ||
label: 'Skip Link ID' |
Oops, something went wrong.