outside_in_element_info_alter

outside_in_element_info_alter(&$type)

Implements hook_element_info_alter().

File

core/modules/outside_in/outside_in.module, line 63
Allows configuring blocks and other configuration from the site front-end.

Code

function outside_in_element_info_alter(&$type) {
  if (isset($type['page'])) {
    $type['page']['#theme_wrappers']['outside_in_page_wrapper'] = ['#weight' => -1000];
  }
}
doc_Drupal
2016-10-29 09:32:43
Comments
Leave a Comment

Please login to continue.