function _css_emimage_collect_static in CSS Embedded Images 6.2
Same name and namespace in other branches
- 7 css_emimage.inc \_css_emimage_collect_static()
Helper function to store collected CSS declarations.
2 calls to _css_emimage_collect_static()
- _css_emimage_collect in ./css_emimage.module 
- Helper function to collect CSS declarations to replace with data URIs.
- _css_emimage_text_processor in ./css_emimage.module 
- Process the css text and replace it with image data where necessary.
File
- ./css_emimage.module, line 629 
- CSS Embedded Images module.
Code
function _css_emimage_collect_static($data = NULL) {
  static $store = array();
  if (!is_null($data)) {
    $store = $data;
  }
  return $store;
}