123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <?php
- function hook_dashboard_regions() {
-
-
-
- return array('mymodule_dashboard_region' => "My module's dashboard region");
- }
- function hook_dashboard_regions_alter(&$regions) {
-
- unset($regions['dashboard_sidebar']);
- }
|