Changeset View
Changeset View
Standalone View
Standalone View
src/applications/search/engine/PhabricatorSearchEngineAPIMethod.php
| Show First 20 Lines • Show All 495 Lines • ▼ Show 20 Lines | foreach ($attachments as $key => $attachment) { | ||||
| $rows[] = array( | $rows[] = array( | ||||
| $key, | $key, | ||||
| $attachment->getAttachmentName(), | $attachment->getAttachmentName(), | ||||
| $attachment->getAttachmentDescription(), | $attachment->getAttachmentDescription(), | ||||
| ); | ); | ||||
| } | } | ||||
| $table = id(new AphrontTableView($rows)) | $table = id(new AphrontTableView($rows)) | ||||
| ->setNoDataString(pht('This call does not support any attachments.')) | |||||
| ->setHeaders( | ->setHeaders( | ||||
| array( | array( | ||||
| pht('Key'), | pht('Key'), | ||||
| pht('Name'), | pht('Name'), | ||||
| pht('Description'), | pht('Description'), | ||||
| )) | )) | ||||
| ->setColumnClasses( | ->setColumnClasses( | ||||
| array( | array( | ||||
| ▲ Show 20 Lines • Show All 93 Lines • Show Last 20 Lines | |||||