You are here

public function SassContext::setVariable in Sassy 7

Same name and namespace in other branches
  1. 7.3 phpsass/tree/SassContext.php \SassContext::setVariable()

* Sets a variable to the given value *

Parameters

string name of variable: * @param sassLiteral value of variable

File

phamlp/sass/tree/SassContext.php, line 109

Class

SassContext
SassContext class. Defines the context that the parser is operating in and so allows variables to be scoped. A new context is created for Mixins and imported files. @package PHamlP @subpackage Sass.tree

Code

public function setVariable($name, $value) {
  $name = str_replace('-', '_', $name);
  $this->variables[$name] = $value;
  return $this;
}