Changeset View
Changeset View
Standalone View
Standalone View
src/view/AphrontTagView.php
| Show All 35 Lines | final public function setMetadata(array $metadata) { | ||||
| $this->metadata = $metadata; | $this->metadata = $metadata; | ||||
| return $this; | return $this; | ||||
| } | } | ||||
| final public function getMetadata() { | final public function getMetadata() { | ||||
| return $this->metadata; | return $this->metadata; | ||||
| } | } | ||||
| final protected function clearMetadata() { | |||||
| $this->metadata = null; | |||||
| return $this; | |||||
| } | |||||
| final public function setStyle($style) { | final public function setStyle($style) { | ||||
| $this->style = $style; | $this->style = $style; | ||||
| return $this; | return $this; | ||||
| } | } | ||||
| final public function getStyle() { | final public function getStyle() { | ||||
| return $this->style; | return $this->style; | ||||
| } | } | ||||
| final public function addSigil($sigil) { | final public function addSigil($sigil) { | ||||
| $this->sigils[] = $sigil; | $this->sigils[] = $sigil; | ||||
| return $this; | return $this; | ||||
| } | } | ||||
| final public function getSigils() { | final public function getSigils() { | ||||
| return $this->sigils; | return $this->sigils; | ||||
| } | } | ||||
| final protected function setSigils(array $sigils) { | |||||
| $this->sigils = $sigils; | |||||
| return $this; | |||||
| } | |||||
| public function addClass($class) { | public function addClass($class) { | ||||
| $this->classes[] = $class; | $this->classes[] = $class; | ||||
| return $this; | return $this; | ||||
| } | } | ||||
| public function getClasses() { | public function getClasses() { | ||||
| return $this->classes; | return $this->classes; | ||||
| } | } | ||||
| ▲ Show 20 Lines • Show All 89 Lines • Show Last 20 Lines | |||||