public function ThemeSwitcherRuleListBuilder::getFormId in Theme Switcher Rules 8
Returns a unique string identifying the form.
The returned ID should be a unique string that can be a valid PHP function name, since it's used in hook implementation names such as hook_form_FORM_ID_alter().
Return value
string The unique string identifying the form.
Overrides FormInterface::getFormId
File
- src/
Controller/ ThemeSwitcherRuleListBuilder.php, line 67
Class
- ThemeSwitcherRuleListBuilder
- Provides a listing of theme_switcher_rule.
Namespace
Drupal\theme_switcher\ControllerCode
public function getFormId() {
return 'theme_switcher_admin_overview_form';
}