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];
  }
}
Please login to continue.