You are here

function social_landing_page_form_views_exposed_form_alter in Open Social 8.5

Same name and namespace in other branches
  1. 8.9 modules/social_features/social_landing_page/social_landing_page.module \social_landing_page_form_views_exposed_form_alter()
  2. 8 modules/social_features/social_landing_page/social_landing_page.module \social_landing_page_form_views_exposed_form_alter()
  3. 8.2 modules/social_features/social_landing_page/social_landing_page.module \social_landing_page_form_views_exposed_form_alter()
  4. 8.3 modules/social_features/social_landing_page/social_landing_page.module \social_landing_page_form_views_exposed_form_alter()
  5. 8.4 modules/social_features/social_landing_page/social_landing_page.module \social_landing_page_form_views_exposed_form_alter()
  6. 8.6 modules/social_features/social_landing_page/social_landing_page.module \social_landing_page_form_views_exposed_form_alter()
  7. 8.7 modules/social_features/social_landing_page/social_landing_page.module \social_landing_page_form_views_exposed_form_alter()
  8. 8.8 modules/social_features/social_landing_page/social_landing_page.module \social_landing_page_form_views_exposed_form_alter()
  9. 10.3.x modules/social_features/social_landing_page/social_landing_page.module \social_landing_page_form_views_exposed_form_alter()
  10. 10.0.x modules/social_features/social_landing_page/social_landing_page.module \social_landing_page_form_views_exposed_form_alter()
  11. 10.1.x modules/social_features/social_landing_page/social_landing_page.module \social_landing_page_form_views_exposed_form_alter()
  12. 10.2.x modules/social_features/social_landing_page/social_landing_page.module \social_landing_page_form_views_exposed_form_alter()

Implements hook_form_form_ID_alter().

Remove Landing Page option from Search Content filter.

File

modules/social_features/social_landing_page/social_landing_page.module, line 35
The Social landing page module.

Code

function social_landing_page_form_views_exposed_form_alter(&$form, FormStateInterface $form_state, $form_id) {
  if ($form['#id'] === 'views-exposed-form-search-content-page') {
    if (isset($form['type']['#options']['landing_page'])) {
      unset($form['type']['#options']['landing_page']);
    }
  }
}