mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-04 04:32:43 +01:00
29 lines
671 B
PHP
29 lines
671 B
PHP
|
<?php
|
||
|
|
||
|
final class PhabricatorCalendarEventMailReceiver
|
||
|
extends PhabricatorObjectMailReceiver {
|
||
|
|
||
|
public function isEnabled() {
|
||
|
$app_class = 'PhabricatorCalendarApplication';
|
||
|
return PhabricatorApplication::isClassInstalled($app_class);
|
||
|
}
|
||
|
|
||
|
protected function getObjectPattern() {
|
||
|
return 'E[1-9]\d*';
|
||
|
}
|
||
|
|
||
|
protected function loadObject($pattern, PhabricatorUser $viewer) {
|
||
|
$id = (int)trim($pattern, 'E');
|
||
|
|
||
|
return id(new PhabricatorCalendarEventQuery())
|
||
|
->setViewer($viewer)
|
||
|
->withIDs(array($id))
|
||
|
->executeOne();
|
||
|
}
|
||
|
|
||
|
protected function getTransactionReplyHandler() {
|
||
|
return new PhabricatorCalendarReplyHandler();
|
||
|
}
|
||
|
|
||
|
}
|