popsu_actualites.box.inc 777 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /**
  3. * @file
  4. * popsu_actualites.box.inc
  5. */
  6. /**
  7. * Implements hook_default_box().
  8. */
  9. function popsu_actualites_default_box() {
  10. $export = array();
  11. $box = new stdClass();
  12. $box->disabled = FALSE; /* Edit this to true to make a default box disabled initially */
  13. $box->api_version = 1;
  14. $box->delta = 'popsu_logo_popsuneutral';
  15. $box->plugin_key = 'simple';
  16. $box->title = '<none>';
  17. $box->description = 'POPSU Logo POPSU neutral (box)';
  18. $box->options = array(
  19. 'body' => array(
  20. 'value' => '<a title="Aller à l\'accueil du site POPSU" rel="home" class="logo" href="/">Aller à l\'accueil du site POPSU</a>',
  21. 'format' => 'php_code',
  22. ),
  23. 'additional_classes' => '',
  24. );
  25. $export['popsu_logo_popsuneutral'] = $box;
  26. return $export;
  27. }