| 6 views.module | views_add_css($file) |
| 7 views.module | views_add_css($file) |
Include views .css files.
5 calls to views_add_css()
File
- ./
views.module, line 779 - Primarily Drupal hooks and global API functions to manipulate views.
Code
function views_add_css($file) {
// We set preprocess to FALSE because we are adding the files conditionally,
// and we don't want to generate duplicate cache files.
// TODO: at some point investigate adding some files unconditionally and
// allowing preprocess.
drupal_add_css(drupal_get_path('module', 'views') . "/css/$file.css", 'module', 'all', FALSE);
}
Login or register to post comments