Changeset View
Changeset View
Standalone View
Standalone View
src/applications/conpherence/view/ConpherenceDurableColumnView.php
| Show First 20 Lines • Show All 102 Lines • ▼ Show 20 Lines | return array( | ||||
| 'id' => 'conpherence-durable-column', | 'id' => 'conpherence-durable-column', | ||||
| 'class' => implode(' ', $classes), | 'class' => implode(' ', $classes), | ||||
| 'style' => $style, | 'style' => $style, | ||||
| 'sigil' => 'conpherence-durable-column', | 'sigil' => 'conpherence-durable-column', | ||||
| ); | ); | ||||
| } | } | ||||
| protected function getTagContent() { | protected function getTagContent() { | ||||
| $column_key = PhabricatorUserPreferences::PREFERENCE_CONPHERENCE_COLUMN; | $column_key = PhabricatorConpherenceColumnVisibleSetting::SETTINGKEY; | ||||
| Javelin::initBehavior( | Javelin::initBehavior( | ||||
| 'durable-column', | 'durable-column', | ||||
| array( | array( | ||||
| 'visible' => $this->getVisible(), | 'visible' => $this->getVisible(), | ||||
| 'settingsURI' => '/settings/adjust/?key='.$column_key, | 'settingsURI' => '/settings/adjust/?key='.$column_key, | ||||
| 'quicksandConfig' => $this->getQuicksandConfig(), | 'quicksandConfig' => $this->getQuicksandConfig(), | ||||
| )); | )); | ||||
| ▲ Show 20 Lines • Show All 399 Lines • Show Last 20 Lines | |||||