Changeset View
Changeset View
Standalone View
Standalone View
src/applications/project/storage/PhabricatorProjectColumn.php
| Show First 20 Lines • Show All 105 Lines • ▼ Show 20 Lines | public function getHeaderIcon() { | ||||
| if ($icon) { | if ($icon) { | ||||
| return id(new PHUIIconView()) | return id(new PHUIIconView()) | ||||
| ->setIconFont($icon) | ->setIconFont($icon) | ||||
| ->addSigil('has-tooltip') | ->addSigil('has-tooltip') | ||||
| ->setMetadata( | ->setMetadata( | ||||
| array( | array( | ||||
| 'tip' => $text, | 'tip' => $text, | ||||
| ));; | )); | ||||
| } | } | ||||
| return null; | return null; | ||||
| } | } | ||||
| public function getProperty($key, $default = null) { | public function getProperty($key, $default = null) { | ||||
| return idx($this->properties, $key, $default); | return idx($this->properties, $key, $default); | ||||
| } | } | ||||
| ▲ Show 20 Lines • Show All 75 Lines • Show Last 20 Lines | |||||