Changeset View
Changeset View
Standalone View
Standalone View
src/applications/phame/storage/PhamePost.php
<?php | <?php | ||||
final class PhamePost extends PhameDAO | final class PhamePost extends PhameDAO | ||||
implements | implements | ||||
PhabricatorPolicyInterface, | PhabricatorPolicyInterface, | ||||
PhabricatorMarkupInterface, | PhabricatorMarkupInterface, | ||||
PhabricatorFlaggableInterface, | PhabricatorFlaggableInterface, | ||||
PhabricatorProjectInterface, | PhabricatorProjectInterface, | ||||
PhabricatorApplicationTransactionInterface, | PhabricatorApplicationTransactionInterface, | ||||
PhabricatorSubscribableInterface, | PhabricatorSubscribableInterface, | ||||
PhabricatorDestructibleInterface, | PhabricatorDestructibleInterface, | ||||
PhabricatorTokenReceiverInterface, | PhabricatorTokenReceiverInterface, | ||||
PhabricatorConduitResultInterface, | PhabricatorConduitResultInterface, | ||||
PhabricatorFulltextInterface { | PhabricatorFulltextInterface, | ||||
PhabricatorFerretInterface { | |||||
const MARKUP_FIELD_BODY = 'markup:body'; | const MARKUP_FIELD_BODY = 'markup:body'; | ||||
const MARKUP_FIELD_SUMMARY = 'markup:summary'; | const MARKUP_FIELD_SUMMARY = 'markup:summary'; | ||||
protected $bloggerPHID; | protected $bloggerPHID; | ||||
protected $title; | protected $title; | ||||
protected $subtitle; | protected $subtitle; | ||||
protected $phameTitle; | protected $phameTitle; | ||||
▲ Show 20 Lines • Show All 359 Lines • ▼ Show 20 Lines | |||||
/* -( PhabricatorFulltextInterface )--------------------------------------- */ | /* -( PhabricatorFulltextInterface )--------------------------------------- */ | ||||
public function newFulltextEngine() { | public function newFulltextEngine() { | ||||
return new PhamePostFulltextEngine(); | return new PhamePostFulltextEngine(); | ||||
} | } | ||||
/* -( PhabricatorFerretInterface )----------------------------------------- */ | |||||
public function newFerretEngine() { | |||||
return new PhamePostFerretEngine(); | |||||
} | |||||
} | } |