| @@ 2384-2391 (lines=8) @@ | ||
| 2381 | } |
|
| 2382 | ||
| 2383 | // setting a property |
|
| 2384 | if ($this->keyword($key) && $this->assign() && |
|
| 2385 | $this->propertyValue($value, $key) && $this->end()) |
|
| 2386 | { |
|
| 2387 | $this->append(array('assign', $key, $value), $s); |
|
| 2388 | return true; |
|
| 2389 | } else { |
|
| 2390 | $this->seek($s); |
|
| 2391 | } |
|
| 2392 | ||
| 2393 | ||
| 2394 | // look for special css blocks |
|
| @@ 2434-2441 (lines=8) @@ | ||
| 2431 | } |
|
| 2432 | ||
| 2433 | // setting a variable |
|
| 2434 | if ($this->variable($var) && $this->assign() && |
|
| 2435 | $this->propertyValue($value) && $this->end()) |
|
| 2436 | { |
|
| 2437 | $this->append(array('assign', $var, $value), $s); |
|
| 2438 | return true; |
|
| 2439 | } else { |
|
| 2440 | $this->seek($s); |
|
| 2441 | } |
|
| 2442 | ||
| 2443 | if ($this->import($importValue)) { |
|
| 2444 | $this->append($importValue, $s); |
|