You are here

function hook_css3pie in css3pie 7.2

This hook is used to provide a list of css selectors that uses css3 in your module. namespace is normally your modulename

Return value

array

1 function implements hook_css3pie()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

css3pie_css3pie in ./css3pie.module
Implements own hook_css3pie() returns a array with selectors that will be added to css3pie css file on next cache clear
2 invocations of hook_css3pie()
_css3pie_build_css3pie_css in ./css3pie.module
helper function get all selectors and generates content for css file
_css3pie_build_css3pie_js in ./css3pie.module
helper function get all selectors and generates content for js file

File

./css3pie.api.php, line 19
Hooks provided by the css3pie module

Code

function hook_css3pie() {
  return array(
    'namespace' => array(
      '.selectorClass1',
      '.selectorClass2',
      '#selectorId1',
      '#selectorId2',
    ),
  );
}