2007-10-05 16:07:22 +00:00
|
|
|
<?php
|
|
|
|
|
2009-04-26 16:30:28 +00:00
|
|
|
/**
|
|
|
|
* @file
|
2009-05-13 19:42:18 +00:00
|
|
|
* Install, update and uninstall functions for the block module.
|
2009-04-26 16:30:28 +00:00
|
|
|
*/
|
2013-09-24 22:16:05 +00:00
|
|
|
|
2013-05-25 20:12:45 +00:00
|
|
|
use Drupal\Core\Language\Language;
|
2009-04-26 16:30:28 +00:00
|
|
|
|
2009-02-03 12:30:14 +00:00
|
|
|
/**
|
2009-12-04 16:49:48 +00:00
|
|
|
* Implements hook_install().
|
2009-02-03 12:30:14 +00:00
|
|
|
*/
|
|
|
|
function block_install() {
|
2009-05-24 17:39:35 +00:00
|
|
|
|
|
|
|
// Block should go first so that other modules can alter its output
|
2009-05-21 21:12:25 +00:00
|
|
|
// during hook_page_alter(). Almost everything on the page is a block,
|
|
|
|
// so before block module runs, there will not be much to alter.
|
2012-10-09 20:32:40 +00:00
|
|
|
module_set_weight('block', -5);
|
2009-02-03 12:30:14 +00:00
|
|
|
}
|