Changeset View
Changeset View
Standalone View
Standalone View
src/view/page/PhabricatorStandardPageView.php
| Show First 20 Lines • Show All 126 Lines • ▼ Show 20 Lines | foreach ($patterns as $pattern) { | ||||
| if (preg_match('(^'.$pattern.'$)', $path)) { | if (preg_match('(^'.$pattern.'$)', $path)) { | ||||
| return true; | return true; | ||||
| } | } | ||||
| } | } | ||||
| return false; | return false; | ||||
| } | } | ||||
| public function getDurableColumnVisible() { | public function getDurableColumnVisible() { | ||||
| $column_key = PhabricatorUserPreferences::PREFERENCE_CONPHERENCE_COLUMN; | $column_key = PhabricatorConpherenceColumnVisibleSetting::SETTINGKEY; | ||||
| return (bool)$this->getUserPreference($column_key, false); | return (bool)$this->getUserPreference($column_key, false); | ||||
| } | } | ||||
| public function addQuicksandConfig(array $config) { | public function addQuicksandConfig(array $config) { | ||||
| $this->quicksandConfig = $config + $this->quicksandConfig; | $this->quicksandConfig = $config + $this->quicksandConfig; | ||||
| return $this; | return $this; | ||||
| } | } | ||||
| ▲ Show 20 Lines • Show All 734 Lines • Show Last 20 Lines | |||||