public function HamlNode::getOptions in Sassy 7
* Returns the options. *
Return value
array the options
File
- phamlp/
haml/ tree/ HamlNode.php, line 208
Class
- HamlNode
- HamlNode class. Base class for all Haml nodes. @package PHamlP @subpackage Haml.tree
Code
public function getOptions() {
if (empty($this->_o)) {
$this->_r = $this->root->options;
}
return $this->_o;
}