public function FaqAskController::expertsSettings in FAQ_Ask 8
Renders the form for the FAQ ASK Settings page - Experts tab.
1 string reference to 'FaqAskController::expertsSettings'
File
- src/
Controller/ FaqAskController.php, line 23 - Contains \Drupal\faq\Controller\FaqAskController.
Class
- FaqAskController
- Controller routines for FAQ Ask routes.
Namespace
Drupal\faq_ask\ControllerCode
public function expertsSettings() {
$build = array();
$build['faq_experts_settings_form'] = $this
->formBuilder()
->getForm('Drupal\\faq_ask\\Form\\ExpertsForm');
return $build;
}