How can I disable default blocks in Drupal 7 without touching the Blocks Config admin?
-
I'm trying to disable the search form, navigation, and user login blocks from being enabled by default. My main goal is to not touch the admin at all because I want to version control this. Is there a way to disable the blocks with some sort of hook? I'm newb when it comes to php and coding for Drupal so please be kind.
-
Answer:
http://api.drupal.org/api/drupal/modules!block!block.api.php/function/hook_block_info_alter/7 can be used to alter the default configuration of blocks. From there you can set the status, region, visibility and pages settings that match the wanted configuration. But once the blocks configuration has been written to the database, changes made with this hook will have no effect. Sadly there is no other hook to configure blocks. But you can write the needed information to the database yourself as part of a custom module or profile http://api.drupal.org/api/drupal/modules!system!system.api.php/function/hook_install/7 or http://api.drupal.org/api/drupal/modules!system!system.api.php/function/hook_update_N/7 implementation. The http://api.drupal.org/api/drupal/profiles!standard!standard.install/function/standard_install/7 function from the standard module provide example code for that. If this is done from an hook_update_N implementation or a module, rows for the blocks may already exists in the database. You can then use a https://drupal.org/node/310085 for each block to avoid having to deal with the "is this an insert or a an update" question yourself.
meijiOrO at Drupal Answers Visit the source
Related Q & A:
- How can I make Private Messages in Drupal 7 with user user pictures like in Facebook?Best solution by Drupal Answers
- How can I disable the new Yahoo popup?Best solution by malwaretips.com
- How can I disable caching and shadowing?
- How can I disable my pop-up button?Best solution by wikihow.com
- How can I disable this Auto-brightness feature?Best solution by Quora
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.