Advertisement
Guest User

Untitled

a guest
May 22nd, 2015
214
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. <?php
  2. /**
  3. * Implement hook_install().
  4. *
  5. * Perform actions to set up the site for this profile.
  6. */
  7. function my_bootstrap_install() {
  8. include_once DRUPAL_ROOT . '/profiles/minimal/minimal.install';
  9. minimal_install();
  10.  
  11. /* Enable Ember Admin Theme */
  12. variable_set('admin_theme', 'ember');
  13.  
  14. /* Disable Toolbar in favor of Navbar */
  15. module_disable(array("toolbar","overlay"));
  16.  
  17. /* Set cron to run each hour */
  18. variable_set('cron_safe_threshold', "3600");
  19.  
  20. /* Set higher limit on log messages to keep */
  21. variable_set('dblog_row_limit', "1000000");
  22.  
  23. /* Set cache lifetime to 30 minutes */
  24. variable_set('cache_lifetime', "1800");
  25. variable_set('page_cache_maximum_age', "1800");
  26. }
  27. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement