<?php

/**
 * Implements hook_preprocess_page
 */
function policia_navidad_preprocess_page(&$variables) {
    $path = explode('/', current_path());
    if ($path[0] != 'admin') {
        drupal_add_js(drupal_get_path('module', 'policia_navidad') . '/js/config.snow.js');
    }
}
