3 final class AlmanacPropertiesSearchEngineAttachment
4 extends AlmanacSearchEngineAttachment
{
6 public function getAttachmentName() {
7 return pht('Almanac Properties');
10 public function getAttachmentDescription() {
11 return pht('Get Almanac properties for the object.');
14 public function willLoadAttachmentData($query, $spec) {
15 $query->needProperties(true);
18 public function getAttachmentForObject($object, $data, $spec) {
19 $properties = $this->getAlmanacPropertyList($object);
22 'properties' => $properties,