Skip to content

Radios and Drupal 9.x #2

@enricpera

Description

@enricpera

Hi, I'm using this module in drupal 9.
Radios option to view element title and hide option label.

file: webform_checkboxes_table.info.yml -- line 4

- core: 8.x
+core_version_requirement: 9.x  

file: WebformCheckboxesTable.php -- line 36

- if (!empty($el['#title']) && $el_info['#type'] == 'checkboxes') {

+ if ($el_info['#type'] == 'radios'){
+      foreach($el_info['#options'] as $option){
+            $el_info[$option]['#title_display'] = 'invisible';
+      }
+  }
+
+  if (!empty($el['#title']) && ($el_info['#type'] == 'checkboxes' || $el_info['#type'] == 'radios')) {

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions