mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-31 18:01:00 +01:00
Make Calendar Event handles slightly more modern
Summary: Ref T11326. Use modern methods instead of building this stuff separately. Test Plan: Used `E123`, `{E123}`, saw references render normally. Reviewers: chad Reviewed By: chad Maniphest Tasks: T11326 Differential Revision: https://secure.phabricator.com/D16300
This commit is contained in:
parent
3085e52843
commit
893edf9d95
1 changed files with 5 additions and 5 deletions
|
@ -32,16 +32,16 @@ final class PhabricatorCalendarEventPHIDType extends PhabricatorPHIDType {
|
||||||
foreach ($handles as $phid => $handle) {
|
foreach ($handles as $phid => $handle) {
|
||||||
$event = $objects[$phid];
|
$event = $objects[$phid];
|
||||||
|
|
||||||
$id = $event->getID();
|
$monogram = $event->getMonogram();
|
||||||
$name = $event->getName();
|
$name = $event->getName();
|
||||||
$is_cancelled = $event->getIsCancelled();
|
$uri = $event->getURI();
|
||||||
|
|
||||||
$handle
|
$handle
|
||||||
->setName($name)
|
->setName($name)
|
||||||
->setFullName(pht('E%d: %s', $id, $name))
|
->setFullName(pht('%s: %s', $monogram, $name))
|
||||||
->setURI('/E'.$id);
|
->setURI($uri);
|
||||||
|
|
||||||
if ($is_cancelled) {
|
if ($event->isCancelledEvent()) {
|
||||||
$handle->setStatus(PhabricatorObjectHandle::STATUS_CLOSED);
|
$handle->setStatus(PhabricatorObjectHandle::STATUS_CLOSED);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue