You are here

private function GeshiFilterSettingsForm::tags in GeSHi Filter for syntax highlighting 8

Same name and namespace in other branches
  1. 8.2 src/Form/GeshiFilterSettingsForm.php \Drupal\geshifilter\Form\GeshiFilterSettingsForm::tags()

Get the global common tags.

Return the generic tags configured, as example, code blockcode.

Return value

string Return the generic tags.

1 call to GeshiFilterSettingsForm::tags()
GeshiFilterSettingsForm::generalHighlightTagsSettings in src/Form/GeshiFilterSettingsForm.php
Helper function for some settings form fields usable as general/specific.

File

src/Form/GeshiFilterSettingsForm.php, line 364

Class

GeshiFilterSettingsForm
Form with the settings for the module.

Namespace

Drupal\geshifilter\Form

Code

private function tags() {
  $config = $this
    ->config('geshifilter.settings');
  return $config
    ->get('tags');
}