Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/src/applications/almanac/editor/AlmanacBindingEditor.php
12256 views
1
<?php
2
3
final class AlmanacBindingEditor
4
extends AlmanacEditor {
5
6
public function getEditorObjectsDescription() {
7
return pht('Almanac Binding');
8
}
9
10
public function getCreateObjectTitle($author, $object) {
11
return pht('%s created this binding.', $author);
12
}
13
14
public function getCreateObjectTitleForFeed($author, $object) {
15
return pht('%s created %s.', $author, $object);
16
}
17
18
protected function supportsSearch() {
19
return true;
20
}
21
22
}
23
24