function views_ui_add_admin_css
Adds standard Views administration CSS to the current page.
3 calls to views_ui_add_admin_css()
- views_handler_field_ctools_dropdown::render in handlers/
views_handler_field_ctools_dropdown.inc - Render the dropdown button.
- views_ui::list_render in plugins/
export_ui/ views_ui.class.php - Render all of the rows together.
- views_ui_add_page in includes/
admin.inc - Page callback to add a new view.
File
-
includes/
admin.inc, line 73
Code
function views_ui_add_admin_css() {
foreach (views_ui_get_admin_css() as $file => $options) {
drupal_add_css($file, $options);
}
}