Issue #3493296 by penyaskito: Views exposed sort identifiers are not configurable when also exposed
1 unresolved thread
Merge request reports
Activity
Filter activity
- Resolved by Christian López Espínola
added 1 commit
- c6abf5a4 - Renamed keys. Added cache context for both keys.
added 71 commits
-
c6abf5a4...5633ac7e - 68 commits from branch
project:11.x
- c0cdec66 - Issue #3493296 by penyaskito: Views exposed sort identifiers are not configurable when also exposed
- 4427b7e4 - Code standards.
- b6891a13 - Renamed keys. Added cache context for both keys.
Toggle commit list-
c6abf5a4...5633ac7e - 68 commits from branch
- Resolved by Christian López Espínola
added 2 commits
added 2 commits
added 22 commits
-
50011deb...1c773fed - 13 commits from branch
project:11.x
- 99120498 - Issue #3493296 by penyaskito: Views exposed sort identifiers are not configurable when also exposed
- e5978bf9 - Code standards.
- 0584740d - Renamed keys. Added cache context for both keys.
- 030c33a1 - Added tests.
- 49bca1b7 - Added validation and tests for the validation.
- eaf46149 - PHPcs and typehints.
- 2b7bd894 - Improved descriptions to show valid options.
- c09d7801 - phpcs
- 5e92d8d3 - Updated all views.
Toggle commit list-
50011deb...1c773fed - 13 commits from branch
- Resolved by Christian López Espínola
- Resolved by Christian López Espínola
added 1 commit
- 97951fce - Added constraints to the keys for config validation.
157 * Sets the form error if $form_state is passed and returns the error string. 158 * 159 * @param string $key 160 * The key to check. 161 * @param string $value 162 * The value to validate. 163 * @param string|\Drupal\Core\StringTranslation\TranslatableMarkup $label 164 * The label to use in the error message. 165 * @param ?\Drupal\Core\Form\FormStateInterface $form_state 166 * (optional) The form state to set any errors on. 167 * 168 * @return string|TranslatableMarkup 169 * The error message if any, or an empty string. 170 */ 171 protected function validateKey(string $key, string $value, string|TranslatableMarkup $label, ?FormStateInterface $form_state = NULL): string|TranslatableMarkup { 172 $error = '';
Please register or sign in to reply