Changeset View
Changeset View
Standalone View
Standalone View
src/view/phui/PHUIDocumentView.php
| Show First 20 Lines • Show All 68 Lines • ▼ Show 20 Lines | public function setFluid($fluid) { | ||||
| return $this; | return $this; | ||||
| } | } | ||||
| protected function getTagAttributes() { | protected function getTagAttributes() { | ||||
| $classes = array(); | $classes = array(); | ||||
| if ($this->offset) { | if ($this->offset) { | ||||
| $classes[] = 'phui-document-offset'; | $classes[] = 'phui-document-offset'; | ||||
| }; | } | ||||
| if ($this->fluid) { | if ($this->fluid) { | ||||
| $classes[] = 'phui-document-fluid'; | $classes[] = 'phui-document-fluid'; | ||||
| } | } | ||||
| return array( | return array( | ||||
| 'class' => $classes, | 'class' => $classes, | ||||
| ); | ); | ||||
| ▲ Show 20 Lines • Show All 142 Lines • Show Last 20 Lines | |||||