You are here

function _css3pie_build_css3pie_functionality in css3pie 6

Same name and namespace in other branches
  1. 7.2 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 95
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 {
    _css3pie_build_css3pie_css();
  }
}