Differential D20108 Diff 48058 src/applications/legalpad/query/LegalpadDocumentSignatureSearchEngine.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/legalpad/query/LegalpadDocumentSignatureSearchEngine.php
| Show First 20 Lines • Show All 220 Lines • ▼ Show 20 Lines | foreach ($signatures as $signature) { | ||||
| $signer_phid = $signature->getSignerPHID(); | $signer_phid = $signature->getSignerPHID(); | ||||
| $rows[] = array( | $rows[] = array( | ||||
| $sig_icon, | $sig_icon, | ||||
| $handles[$document->getPHID()]->renderLink(), | $handles[$document->getPHID()]->renderLink(), | ||||
| $signer_phid | $signer_phid | ||||
| ? $handles[$signer_phid]->renderLink() | ? $handles[$signer_phid]->renderLink() | ||||
| : null, | : phutil_tag('em', array(), pht('None')), | ||||
| $name, | $name, | ||||
| phutil_tag( | phutil_tag( | ||||
| 'a', | 'a', | ||||
| array( | array( | ||||
| 'href' => 'mailto:'.$email, | 'href' => 'mailto:'.$email, | ||||
| ), | ), | ||||
| $email), | $email), | ||||
| phabricator_datetime($signature->getDateCreated(), $viewer), | phabricator_datetime($signature->getDateCreated(), $viewer), | ||||
| ▲ Show 20 Lines • Show All 78 Lines • Show Last 20 Lines | |||||