function _css3pie_build_css3pie_functionality in css3pie 7.2
Same name and namespace in other branches
- 6 css3pie.module \_css3pie_build_css3pie_functionality()
helper function to build the module functionality
1 call to _css3pie_build_css3pie_functionality()
- css3pie_admin_submit in ./
css3pie.admin.inc - Rebuild the CSS file only on Save submit
File
- ./
css3pie.module, line 175 - css3pie.module a very simple Drupal module to implement the css3pie.com javascript to your drupal and make the css selectors configurable over ui. This module creates a real css file on drupal files folder and add them via drupal_add_css.
Code
function _css3pie_build_css3pie_functionality() {
if (variable_get('css3pie_css_use_js_mode', FALSE)) {
_css3pie_build_css3pie_js();
}
else {
// We can just clear the cache, and let the file get rebuilt on demand.
cache_clear_all(CSS3PIE_CSS_CACHE_KEY, 'cache');
}
}