Advertisement
Guest User

Untitled

a guest
Mar 25th, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. private function cssFile($css_file, $widget_id = '') {
  2. $css = '';
  3. $css .= file_get_contents($css_file);
  4. $css = preg_replace('!/*[^*]**+([^/][^*]**+)*/!', '', $css);
  5. $css = str_replace(': ', ':', $css);
  6. $css = str_replace(array("n", "t", ' ', ' ', ' '), '', $css);
  7. return $css;
  8. }
  9.  
  10. private function cssFile($css_file, $id = '') {
  11. $css = '';
  12. $css .= file_get_contents($css_file);
  13. $css = preg_replace('!/*[^*]**+([^/][^*]**+)*/!', '', $css);
  14. $css = str_replace(
  15. array(": ", "n", "t", ", ", " ", "}#", " {", "}.", ",.", " > "),
  16. array(':', "","", ",", "", "}#".$id."#", "{", "}#".$id.".", ",#".$id.".", ">")
  17. , $css);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement