public function Fz152PluginBase::getSettingsPage in FZ152 8
If you want to add settings as tab to main settings you can define it here.
Otherwise define the page by yourself.
Return value
array Possible values:
- "path": The tab path additional: /admin/config/fz152/[PATH].
- "title": String with title for tab and page with settings.
- "form": As in routing.yml file must contains form Class.
- "weight": Weight for tab on page.
Overrides Fz152PluginInterface::getSettingsPage
2 methods override Fz152PluginBase::getSettingsPage()
- Contact::getSettingsPage in modules/
contact/ src/ Plugin/ Fz152/ Contact.php - If you want to add settings as tab to main settings you can define it here.
- Forms::getSettingsPage in src/
Plugin/ Fz152/ Forms.php - If you want to add settings as tab to main settings you can define it here.
File
- src/
Fz152PluginBase.php, line 22
Class
- Fz152PluginBase
- Provides a base class for all types of plugin settings.
Namespace
Drupal\fz152Code
public function getSettingsPage() {
return [];
}