You are here

function salvattore_preprocess_page in Salvattore (CSS driven Masonry) 7

Implements hook_preprocess_page().

File

./salvattore.module, line 58
Salvattore masonry plugin for views.

Code

function salvattore_preprocess_page(&$variables) {
  if (variable_get('salvattore_use_min_js')) {
    drupal_add_js(drupal_get_path('module', 'salvattore') . '/js/salvattore.min.js', array(
      'scope' => 'footer',
    ));
  }
  else {
    drupal_add_js(drupal_get_path('module', 'salvattore') . '/js/salvattore.js', array(
      'scope' => 'footer',
    ));
  }
  if (variable_get('salvattore_load_default_css')) {
    drupal_add_css(drupal_get_path('module', 'salvattore') . '/css/salvattore_default.css', array(
      'type' => 'file',
      'preprocess' => FALSE,
    ));
  }
}