Skip to content
Snippets Groups Projects

Issue #3352053: Would you consider no markup at all?

2 unresolved threads
2 unresolved threads

Merge request reports

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
25 25 public function settingsForm(array $form, FormStateInterface $form_state) {
26 26 $form = parent::settingsForm($form, $form_state);
27 27 $heading_options = [
28 'no_markup' => $this->t('no markup'),
  • 70 71
    71 72 foreach ($items as $delta => &$item) {
    72 73 $tag = $this->getSetting('tag');
    73 $item['#prefix'] = "<$tag>";
    74 $item['#suffix'] = "</$tag>";
    74 if ($tag !== 'no_markup') {
  • Please register or sign in to reply
    Loading