function gallery_assist_add_css in Gallery Assist 7
Same name in this branch
- 7 gallery_assist.module \gallery_assist_add_css()
- 7 libs/functions/gallery_assist_css.php \gallery_assist_add_css()
Same name and namespace in other branches
- 6 gallery_assist.module \gallery_assist_add_css()
Include GA .css files.
@todo: ??? -> array('group' => CSS_THEME, 'browsers' => array('IE' => 'lt IE 7', '!IE' => FALSE), 'preprocess' => FALSE)
1 call to gallery_assist_add_css()
- gallery_assist_init in ./
gallery_assist.module - Implements hook_init();
File
- ./
gallery_assist.module, line 1436 - Extend drupal with gallery functionalities. Manage galleries.
Code
function gallery_assist_add_css($file) {
$path = drupal_get_path('module', 'gallery_assist') . "/css/{$file}.css";
drupal_add_css($path);
}