Changeset View
Changeset View
Standalone View
Standalone View
src/infrastructure/customfield/field/PhabricatorCustomField.php
| Show First 20 Lines • Show All 1,299 Lines • ▼ Show 20 Lines | /* -( List View )---------------------------------------------------------- */ | ||||
| */ | */ | ||||
| public function renderOnListItem(PHUIObjectItemView $view) { | public function renderOnListItem(PHUIObjectItemView $view) { | ||||
| if ($this->proxy) { | if ($this->proxy) { | ||||
| return $this->proxy->renderOnListItem($view); | return $this->proxy->renderOnListItem($view); | ||||
| } | } | ||||
| throw new PhabricatorCustomFieldImplementationIncompleteException($this); | throw new PhabricatorCustomFieldImplementationIncompleteException($this); | ||||
| } | } | ||||
| /** | |||||
| * @task list | |||||
| */ | |||||
| public function getRequiredHandlePHIDsForListView() { | |||||
| if ($this->proxy) { | |||||
| return $this->proxy->getRequiredHandlePHIDsForListView(); | |||||
avivey: `getRequiredHandlePHIDsForListView` | |||||
| } | |||||
| return array(); | |||||
| } | |||||
| /* -( Global Search )------------------------------------------------------ */ | /* -( Global Search )------------------------------------------------------ */ | ||||
| /** | /** | ||||
| * @task globalsearch | * @task globalsearch | ||||
| */ | */ | ||||
| public function shouldAppearInGlobalSearch() { | public function shouldAppearInGlobalSearch() { | ||||
| ▲ Show 20 Lines • Show All 164 Lines • Show Last 20 Lines | |||||
getRequiredHandlePHIDsForListView