Page MenuHomePhorge

PhabricatorSearchEngineAttachment.php
No OneTemporary

Size
1 KB
Referenced Files
None
Subscribers
None

PhabricatorSearchEngineAttachment.php

<?php
abstract class PhabricatorSearchEngineAttachment extends Phobject {
private $attachmentKey;
private $viewer;
private $searchEngine;
final public function setViewer($viewer) {
$this->viewer = $viewer;
return $this;
}
final public function getViewer() {
return $this->viewer;
}
final public function setSearchEngine(
PhabricatorApplicationSearchEngine $engine) {
$this->searchEngine = $engine;
return $this;
}
final public function getSearchEngine() {
return $this->searchEngine;
}
public function setAttachmentKey($attachment_key) {
$this->attachmentKey = $attachment_key;
return $this;
}
public function getAttachmentKey() {
return $this->attachmentKey;
}
abstract public function getAttachmentName();
abstract public function getAttachmentDescription();
public function willLoadAttachmentData($query, $spec) {
return;
}
public function loadAttachmentData(array $objects, $spec) {
return null;
}
abstract public function getAttachmentForObject($object, $data, $spec);
}

File Metadata

Mime Type
text/x-php
Expires
Sun, May 4, 12:29 AM (1 d, 13 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
62949
Default Alt Text
PhabricatorSearchEngineAttachment.php (1 KB)

Event Timeline