class SassImportNode in Sassy 7.3
Same name and namespace in other branches
- 7 phamlp/sass/tree/SassImportNode.php \SassImportNode
SassImportNode class. Represents a CSS Import. @package PHamlP @subpackage Sass.tree
Hierarchy
- class \SassNode
- class \SassImportNode
Expanded class hierarchy of SassImportNode
File
- phpsass/
tree/ SassImportNode.php, line 18
View source
class SassImportNode extends SassNode {
const IDENTIFIER = '@';
const MATCH = '/^@import\\s+(.+)/i';
const MATCH_CSS = '/^(.+\\.css|url\\(.+\\)|.+" \\w+|"http)/im';
const FILES = 1;
/**
* @var array files to import
*/
private $files = array();
/**
* SassImportNode.
* @param object source token
* @return SassImportNode
*/
public function __construct($token) {
parent::__construct($token);
preg_match(self::MATCH, $token->source, $matches);
foreach (explode(',', $matches[self::FILES]) as $file) {
$this->files[] = trim($file);
}
}
/**
* Parse this node.
* If the node is a CSS import return the CSS import rule.
* Else returns the rendered tree for the file.
* @param SassContext the context in which this node is parsed
* @return array the parsed node
*/
public function parse($context) {
$imported = array();
foreach ($this->files as $file) {
if (preg_match(self::MATCH_CSS, $file)) {
return "@import {$file}";
}
else {
$file = trim($file, '\'"');
$files = SassFile::get_file($file, $this->parser, TRUE);
$tree = array();
if ($files) {
$tree = SassFile::get_tree(array_shift($files), $this->parser);
foreach ($files as $file) {
$file = SassFile::get_tree($file, $this->parser);
foreach ($file
->getChildren() as $child) {
$tree
->addChild($child);
}
}
}
if (!empty($tree)) {
$imported = array_merge($imported, $tree
->parse($context)->children);
}
}
}
return $imported;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
SassImportNode:: |
private | property | ||
SassImportNode:: |
constant | |||
SassImportNode:: |
constant | |||
SassImportNode:: |
constant | |||
SassImportNode:: |
constant | |||
SassImportNode:: |
public | function | Parse this node. If the node is a CSS import return the CSS import rule. Else returns the rendered tree for the file. | |
SassImportNode:: |
public | function |
SassImportNode. Overrides SassNode:: |
|
SassNode:: |
public | property | ||
SassNode:: |
public | property | 1 | |
SassNode:: |
public | property | ||
SassNode:: |
public | property | ||
SassNode:: |
public | function | Adds a child to this node. | |
SassNode:: |
public | function | Adds a warning to the node. | |
SassNode:: |
public | function | Evaluates a SassScript expression. | |
SassNode:: |
public | function | Returns the node's children | |
SassNode:: |
public | function | Returns the debug_info option setting for this node | |
SassNode:: |
public | function | Returns the filename for this node | |
SassNode:: |
public | function | Returns the last child node of this node. | |
SassNode:: |
public | function | Returns the level of this node. | |
SassNode:: |
public | function | Returns the line number for this node | |
SassNode:: |
public | function | Returns the line_numbers option setting for this node | |
SassNode:: |
public | function | Returns the node's parent | |
SassNode:: |
public | function | Returns the Sass parser. | |
SassNode:: |
public | function | Returns the property syntax being used. | |
SassNode:: |
public | function | Returns the renderer. | |
SassNode:: |
public | function | Returns the SassScript parser. | |
SassNode:: |
public | function | Returns the source for this node | |
SassNode:: |
public | function | Returns the render style of the document tree. | |
SassNode:: |
public | function | Returns vendor specific properties | |
SassNode:: |
public | function | Returns a value indicating if this node has children | |
SassNode:: |
public | function | Return a value indicating if this node has a parent | |
SassNode:: |
public | function | Returns a value indicating whether this node is in a directive | |
SassNode:: |
public | function | Returns a value indicating whether this node is in a SassScript directive | |
SassNode:: |
public | function | Replace interpolated SassScript contained in '#{}' with the parsed value. | |
SassNode:: |
public static | function | Returns a value indicating if the token represents this type of node. | 9 |
SassNode:: |
public | function | Returns a value indicating if this node is a child of the passed node. This just checks the levels of the nodes. If this node is at a greater level than the passed node if is a child of it. | |
SassNode:: |
public | function | Parse the children of the node. | |
SassNode:: |
public | function | Resets children when cloned | |
SassNode:: |
public | function | Getter. | |
SassNode:: |
public | function | Setter. |