Changeset View
Changeset View
Standalone View
Standalone View
src/applications/phame/storage/PhameBlog.php
<?php | <?php | ||||
final class PhameBlog extends PhameDAO | final class PhameBlog extends PhameDAO | ||||
implements | implements | ||||
PhabricatorPolicyInterface, | PhabricatorPolicyInterface, | ||||
PhabricatorMarkupInterface, | PhabricatorMarkupInterface, | ||||
PhabricatorSubscribableInterface, | PhabricatorSubscribableInterface, | ||||
PhabricatorFlaggableInterface, | PhabricatorFlaggableInterface, | ||||
PhabricatorProjectInterface, | PhabricatorProjectInterface, | ||||
PhabricatorDestructibleInterface, | PhabricatorDestructibleInterface, | ||||
PhabricatorApplicationTransactionInterface, | PhabricatorApplicationTransactionInterface, | ||||
PhabricatorConduitResultInterface, | PhabricatorConduitResultInterface, | ||||
PhabricatorFulltextInterface { | PhabricatorFulltextInterface, | ||||
PhabricatorFerretInterface { | |||||
const MARKUP_FIELD_DESCRIPTION = 'markup:description'; | const MARKUP_FIELD_DESCRIPTION = 'markup:description'; | ||||
protected $name; | protected $name; | ||||
protected $subtitle; | protected $subtitle; | ||||
protected $description; | protected $description; | ||||
protected $domain; | protected $domain; | ||||
protected $domainFullURI; | protected $domainFullURI; | ||||
▲ Show 20 Lines • Show All 365 Lines • ▼ Show 20 Lines | |||||
/* -( PhabricatorFulltextInterface )--------------------------------------- */ | /* -( PhabricatorFulltextInterface )--------------------------------------- */ | ||||
public function newFulltextEngine() { | public function newFulltextEngine() { | ||||
return new PhameBlogFulltextEngine(); | return new PhameBlogFulltextEngine(); | ||||
} | } | ||||
/* -( PhabricatorFerretInterface )----------------------------------------- */ | |||||
public function newFerretEngine() { | |||||
return new PhameBlogFerretEngine(); | |||||
} | |||||
} | } |