You are here

public function SassParser::getOptions in Sassy 7

Same name and namespace in other branches
  1. 7.3 phpsass/SassParser.php \SassParser::getOptions()

File

phamlp/sass/SassParser.php, line 420

Class

SassParser
SassParser class. Parses {@link http://sass-lang.com/ .sass and .sccs} files. @package PHamlP @subpackage Sass

Code

public function getOptions() {
  return array(
    'cache' => $this->cache,
    'cache_location' => $this->cache_location,
    'css_location' => $this->css_location,
    'filename' => $this->filename,
    'function_paths' => $this->function_paths,
    'line' => $this->line,
    'line_numbers' => $this->line_numbers,
    'load_paths' => $this->load_paths,
    'property_syntax' => $this->property_syntax,
    'quiet' => $this->quiet,
    'style' => $this->style,
    'syntax' => $this->syntax,
    'template_location' => $this->template_location,
    'vendor_properties' => $this->vendor_properties,
  );
}