H A D | class.csstidy_print.php | 73 public $import; variable in csstidy_print 88 $this->import = & $css->import; 204 if (!empty($this->import)) { 205 for ($i = 0, $size = count($this->import); $i < $size; $i++) { 206 if (substr($this->import[$i], 0, 4) === 'url(' && substr($this->import[$i], -1, 1) === ')') { 207 $this->import[$i] = '"' . substr($this->import[$i], 4, -1) . '"'; 210 else if (!preg_match('/^".+"$/',$this->import[$i])) { 213 $this->import[$i] = '"' . $this->import[$i] . '"'; 216 …$output .= $template[0] . '@import ' . $template[5] . $this->import[$i] . $template[6] . $template…
|