mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-05 21:26:14 +01:00
19 lines
386 B
PHP
19 lines
386 B
PHP
|
<?php
|
||
|
|
||
|
final class PhabricatorCalendarEventSearchConduitAPIMethod
|
||
|
extends PhabricatorSearchEngineAPIMethod {
|
||
|
|
||
|
public function getAPIMethodName() {
|
||
|
return 'calendar.event.search';
|
||
|
}
|
||
|
|
||
|
public function newSearchEngine() {
|
||
|
return new PhabricatorCalendarEventSearchEngine();
|
||
|
}
|
||
|
|
||
|
public function getMethodSummary() {
|
||
|
return pht('Read information about events.');
|
||
|
}
|
||
|
|
||
|
}
|