template_preprocess_admin_page(&$variables)
Prepares variables for administrative index page templates.
Default template: admin-page.html.twig.
Parameters
$variables: An associative array containing:
- blocks: An array of blocks to display. Each array should include a 'title', a 'description', a formatted 'content' and a 'position' which will control which container it will be in. This is usually 'left' or 'right'.
File
- core/modules/system/system.admin.inc, line 51
- Admin page callbacks for the system module.
Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | function template_preprocess_admin_page(& $variables ) { $variables [ 'system_compact_link' ] = array ( '#type' => 'system_compact_link' , ); $variables [ 'containers' ] = array (); $stripe = 0; foreach ( $variables [ 'blocks' ] as $block ) { if (! empty ( $block [ 'content' ][ '#content' ])) { if ( empty ( $block [ 'position' ])) { // Perform automatic striping. $block [ 'position' ] = ++ $stripe % 2 ? 'left' : 'right' ; } $variables [ 'containers' ][ $block [ 'position' ]][ 'blocks' ][] = array ( '#theme' => 'admin_block' , '#block' => $block , ); } } } |
Please login to continue.