You are here

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'
faq_ask.routing.yml in ./faq_ask.routing.yml
faq_ask.routing.yml

File

src/Controller/FaqAskController.php, line 23
Contains \Drupal\faq\Controller\FaqAskController.

Class

FaqAskController
Controller routines for FAQ Ask routes.

Namespace

Drupal\faq_ask\Controller

Code

public function expertsSettings() {
  $build = array();
  $build['faq_experts_settings_form'] = $this
    ->formBuilder()
    ->getForm('Drupal\\faq_ask\\Form\\ExpertsForm');
  return $build;
}