title = $title; $this->location = $location; $this->css_declaration = $css_declaration; $this->css_class = $css_class; } /** * Getters * taken from: http://stackoverflow.com/questions/4478661/getter-and-setter **/ public function __get($property) { if (property_exists($this, $property)) { return $this->$property; } } } // Custom_Font