theme.inc 756 B

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. * Preprocessor for theme('openlayers_plus_blockswitcher').
  4. */
  5. function template_preprocess_openlayers_plus_blockswitcher(&$vars) {
  6. drupal_add_css(drupal_get_path('module', 'openlayers_plus') . '/theme/openlayers_plus.css');
  7. }
  8. /**
  9. * Preprocessor for theme('openlayers_plus_legend').
  10. */
  11. function template_preprocess_openlayers_plus_legend(&$vars) {
  12. drupal_add_css(drupal_get_path('module', 'openlayers_plus') . '/theme/openlayers_plus.css');
  13. }
  14. /**
  15. * Preprocessor for theme('openlayers_plus_legend').
  16. */
  17. function template_preprocess_openlayers_plus_blocktoggle(&$vars) {
  18. drupal_add_css(drupal_get_path('module', 'openlayers_plus') . '/theme/openlayers_plus.css');
  19. $vars['points'] = t('Points');
  20. $vars['shading'] = t('Shading');
  21. }