repo
stringlengths
7
63
file_url
stringlengths
81
284
file_path
stringlengths
5
200
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
7 values
commit_sha
stringlengths
40
40
retrieved_at
stringdate
2026-01-04 15:02:33
2026-01-05 05:24:06
truncated
bool
2 classes
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/herald/group/HeraldGroup.php
src/applications/herald/group/HeraldGroup.php
<?php abstract class HeraldGroup extends Phobject { abstract public function getGroupLabel(); protected function getGroupOrder() { return 1000; } public function getSortKey() { return sprintf('A%08d%s', $this->getGroupOrder(), $this->getGroupLabel()); } }
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/herald/value/HeraldBoolFieldValue.php
src/applications/herald/value/HeraldBoolFieldValue.php
<?php final class HeraldBoolFieldValue extends HeraldFieldValue { public function getFieldValueKey() { return 'bool'; } public function getControlType() { return self::CONTROL_NONE; } public function renderFieldValue($value) { return null; } public function renderEditorValue($value) { ...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/herald/value/HeraldFieldValue.php
src/applications/herald/value/HeraldFieldValue.php
<?php abstract class HeraldFieldValue extends Phobject { private $viewer; const CONTROL_NONE = 'herald.control.none'; const CONTROL_TEXT = 'herald.control.text'; const CONTROL_SELECT = 'herald.control.select'; const CONTROL_TOKENIZER = 'herald.control.tokenizer'; const CONTROL_REMARKUP = 'herald.control....
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/herald/value/HeraldTextFieldValue.php
src/applications/herald/value/HeraldTextFieldValue.php
<?php final class HeraldTextFieldValue extends HeraldFieldValue { public function getFieldValueKey() { return 'text'; } public function getControlType() { return self::CONTROL_TEXT; } public function renderFieldValue($value) { return $value; } public function renderEditorValue($value) {...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/herald/value/HeraldTokenizerFieldValue.php
src/applications/herald/value/HeraldTokenizerFieldValue.php
<?php final class HeraldTokenizerFieldValue extends HeraldFieldValue { private $key; private $datasource; private $valueMap; public function setKey($key) { $this->key = $key; return $this; } public function getKey() { return $this->key; } public function setDatasource(PhabricatorTypea...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/herald/value/HeraldRemarkupFieldValue.php
src/applications/herald/value/HeraldRemarkupFieldValue.php
<?php final class HeraldRemarkupFieldValue extends HeraldFieldValue { public function getFieldValueKey() { return 'remarkup'; } public function getControlType() { return self::CONTROL_REMARKUP; } public function renderFieldValue($value) { return $value; } public function renderEditorVal...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/herald/value/HeraldSelectFieldValue.php
src/applications/herald/value/HeraldSelectFieldValue.php
<?php final class HeraldSelectFieldValue extends HeraldFieldValue { private $key; private $options; private $default; public function setKey($key) { $this->key = $key; return $this; } public function getKey() { return $this->key; } public function setOptions(array $options) { $thi...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/herald/value/HeraldEmptyFieldValue.php
src/applications/herald/value/HeraldEmptyFieldValue.php
<?php final class HeraldEmptyFieldValue extends HeraldFieldValue { public function getFieldValueKey() { return 'none'; } public function getControlType() { return self::CONTROL_NONE; } public function renderFieldValue($value) { return null; } public function renderEditorValue($value) { ...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/herald/garbagecollector/HeraldWebhookRequestGarbageCollector.php
src/applications/herald/garbagecollector/HeraldWebhookRequestGarbageCollector.php
<?php final class HeraldWebhookRequestGarbageCollector extends PhabricatorGarbageCollector { const COLLECTORCONST = 'herald.webhooks'; public function getCollectorName() { return pht('Herald Webhooks'); } public function getDefaultRetentionPolicy() { return phutil_units('7 days in seconds'); } ...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/herald/garbagecollector/HeraldTranscriptGarbageCollector.php
src/applications/herald/garbagecollector/HeraldTranscriptGarbageCollector.php
<?php final class HeraldTranscriptGarbageCollector extends PhabricatorGarbageCollector { const COLLECTORCONST = 'herald.transcripts'; public function getCollectorName() { return pht('Herald Transcripts'); } public function getDefaultRetentionPolicy() { return phutil_units('30 days in seconds'); ...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/herald/view/HeraldWebhookRequestListView.php
src/applications/herald/view/HeraldWebhookRequestListView.php
<?php final class HeraldWebhookRequestListView extends AphrontView { private $requests; private $highlightID; public function setRequests(array $requests) { assert_instances_of($requests, 'HeraldWebhookRequest'); $this->requests = $requests; return $this; } public function setHighlightID($hi...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/herald/view/HeraldRuleListView.php
src/applications/herald/view/HeraldRuleListView.php
<?php final class HeraldRuleListView extends AphrontView { private $rules; public function setRules(array $rules) { assert_instances_of($rules, 'HeraldRule'); $this->rules = $rules; return $this; } public function render() { return $this->newObjectList(); } public function newObjectLi...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/herald/field/HeraldNewObjectField.php
src/applications/herald/field/HeraldNewObjectField.php
<?php final class HeraldNewObjectField extends HeraldField { const FIELDCONST = 'new-object'; public function getHeraldFieldName() { return pht('Is newly created'); } public function getFieldGroupKey() { return HeraldEditFieldGroup::FIELDGROUPKEY; } public function supportsObject($object) { ...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/herald/field/HeraldRelatedFieldGroup.php
src/applications/herald/field/HeraldRelatedFieldGroup.php
<?php final class HeraldRelatedFieldGroup extends HeraldFieldGroup { const FIELDGROUPKEY = 'related'; public function getGroupLabel() { return pht('Related Fields'); } protected function getGroupOrder() { return 2000; } }
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/herald/field/HeraldField.php
src/applications/herald/field/HeraldField.php
<?php abstract class HeraldField extends Phobject { private $adapter; const STANDARD_BOOL = 'standard.bool'; const STANDARD_TEXT = 'standard.text'; const STANDARD_TEXT_LIST = 'standard.text.list'; const STANDARD_TEXT_MAP = 'standard.text.map'; const STANDARD_PHID = 'standard.phid'; const STANDARD_PHID_...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/herald/field/HeraldDeprecatedFieldGroup.php
src/applications/herald/field/HeraldDeprecatedFieldGroup.php
<?php final class HeraldDeprecatedFieldGroup extends HeraldFieldGroup { const FIELDGROUPKEY = 'deprecated'; public function getGroupLabel() { return pht('Deprecated'); } protected function getGroupOrder() { return 99999; } }
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/herald/field/HeraldTransactionsFieldGroup.php
src/applications/herald/field/HeraldTransactionsFieldGroup.php
<?php final class HeraldTransactionsFieldGroup extends HeraldFieldGroup { const FIELDGROUPKEY = 'transactions'; public function getGroupLabel() { return pht('Transactions'); } protected function getGroupOrder() { return 2000; } }
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/herald/field/HeraldAnotherRuleField.php
src/applications/herald/field/HeraldAnotherRuleField.php
<?php final class HeraldAnotherRuleField extends HeraldField { const FIELDCONST = 'rule'; public function getHeraldFieldName() { return pht('Another Herald rule'); } public function getFieldGroupKey() { return HeraldBasicFieldGroup::FIELDGROUPKEY; } public function supportsObject($object) { ...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/herald/field/HeraldSupportFieldGroup.php
src/applications/herald/field/HeraldSupportFieldGroup.php
<?php final class HeraldSupportFieldGroup extends HeraldFieldGroup { const FIELDGROUPKEY = 'support'; public function getGroupLabel() { return pht('Supporting Applications'); } protected function getGroupOrder() { return 3000; } }
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/herald/field/HeraldCommentContentField.php
src/applications/herald/field/HeraldCommentContentField.php
<?php final class HeraldCommentContentField extends HeraldField { const FIELDCONST = 'comment.content'; public function getHeraldFieldName() { return pht('Comment content'); } public function getFieldGroupKey() { return HeraldTransactionsFieldGroup::FIELDGROUPKEY; } public function getHeraldFie...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/herald/field/HeraldActingUserField.php
src/applications/herald/field/HeraldActingUserField.php
<?php final class HeraldActingUserField extends HeraldField { const FIELDCONST = 'herald.acting-user'; public function getHeraldFieldName() { return pht('Acting user'); } public function getHeraldFieldValue($object) { return $this->getAdapter()->getActingAsPHID(); } protected function getHera...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/herald/field/HeraldBasicFieldGroup.php
src/applications/herald/field/HeraldBasicFieldGroup.php
<?php final class HeraldBasicFieldGroup extends HeraldFieldGroup { const FIELDGROUPKEY = 'herald'; public function getGroupLabel() { return pht('Herald'); } protected function getGroupOrder() { return 10000; } }
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/herald/field/HeraldAlwaysField.php
src/applications/herald/field/HeraldAlwaysField.php
<?php final class HeraldAlwaysField extends HeraldField { const FIELDCONST = 'always'; public function getHeraldFieldName() { return pht('Always'); } public function getFieldGroupKey() { return HeraldBasicFieldGroup::FIELDGROUPKEY; } public function getHeraldFieldValue($object) { return tru...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/herald/field/HeraldEditFieldGroup.php
src/applications/herald/field/HeraldEditFieldGroup.php
<?php final class HeraldEditFieldGroup extends HeraldFieldGroup { const FIELDGROUPKEY = 'edit'; public function getGroupLabel() { return pht('Edit Attributes'); } protected function getGroupOrder() { return 4000; } }
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/herald/field/HeraldContentSourceField.php
src/applications/herald/field/HeraldContentSourceField.php
<?php final class HeraldContentSourceField extends HeraldField { const FIELDCONST = 'contentsource'; public function getHeraldFieldName() { return pht('Content source'); } public function getFieldGroupKey() { return HeraldEditFieldGroup::FIELDGROUPKEY; } public function getHeraldFieldValue($obj...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/herald/field/HeraldFieldGroup.php
src/applications/herald/field/HeraldFieldGroup.php
<?php abstract class HeraldFieldGroup extends HeraldGroup { final public function getGroupKey() { return $this->getPhobjectClassConstant('FIELDGROUPKEY'); } final public static function getAllFieldGroups() { return id(new PhutilClassMapQuery()) ->setAncestorClass(__CLASS__) ->setUniqueMetho...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/herald/field/rule/HeraldRuleTypeField.php
src/applications/herald/field/rule/HeraldRuleTypeField.php
<?php final class HeraldRuleTypeField extends HeraldRuleField { const FIELDCONST = 'rule-type'; public function getHeraldFieldName() { return pht('Rule type'); } public function getHeraldFieldValue($object) { return $object->getRuleType(); } protected function getHeraldFieldStandardType() { ...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/herald/field/rule/HeraldRuleFieldGroup.php
src/applications/herald/field/rule/HeraldRuleFieldGroup.php
<?php final class HeraldRuleFieldGroup extends HeraldFieldGroup { const FIELDGROUPKEY = 'herald.rule'; public function getGroupLabel() { return pht('Rule Fields'); } protected function getGroupOrder() { return 500; } }
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/herald/field/rule/HeraldRuleAdapterField.php
src/applications/herald/field/rule/HeraldRuleAdapterField.php
<?php final class HeraldRuleAdapterField extends HeraldRuleField { const FIELDCONST = 'adapter'; public function getHeraldFieldName() { return pht('Content type'); } public function getHeraldFieldValue($object) { return $object->getContentType(); } protected function getHeraldFieldStandardTyp...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/herald/field/rule/HeraldRuleField.php
src/applications/herald/field/rule/HeraldRuleField.php
<?php abstract class HeraldRuleField extends HeraldField { public function getFieldGroupKey() { return ManiphestTaskHeraldFieldGroup::FIELDGROUPKEY; } public function supportsObject($object) { return ($object instanceof HeraldRule); } }
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/herald/field/__tests__/HeraldFieldTestCase.php
src/applications/herald/field/__tests__/HeraldFieldTestCase.php
<?php final class HeraldFieldTestCase extends PhutilTestCase { public function testGetAllFields() { HeraldField::getAllFields(); $this->assertTrue(true); } }
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/herald/edge/HeraldRuleActionAffectsObjectEdgeType.php
src/applications/herald/edge/HeraldRuleActionAffectsObjectEdgeType.php
<?php final class HeraldRuleActionAffectsObjectEdgeType extends PhabricatorEdgeType { const EDGECONST = 69; }
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/herald/phid/HeraldWebhookPHIDType.php
src/applications/herald/phid/HeraldWebhookPHIDType.php
<?php final class HeraldWebhookPHIDType extends PhabricatorPHIDType { const TYPECONST = 'HWBH'; public function getTypeName() { return pht('Webhook'); } public function newObject() { return new HeraldWebhook(); } public function getPHIDTypeApplicationClass() { return 'PhabricatorHeraldAppli...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/herald/phid/HeraldWebhookRequestPHIDType.php
src/applications/herald/phid/HeraldWebhookRequestPHIDType.php
<?php final class HeraldWebhookRequestPHIDType extends PhabricatorPHIDType { const TYPECONST = 'HWBR'; public function getTypeName() { return pht('Webhook Request'); } public function newObject() { return new HeraldWebhook(); } public function getPHIDTypeApplicationClass() { return 'Phabric...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/herald/phid/HeraldTranscriptPHIDType.php
src/applications/herald/phid/HeraldTranscriptPHIDType.php
<?php final class HeraldTranscriptPHIDType extends PhabricatorPHIDType { const TYPECONST = 'HLXS'; public function getTypeName() { return pht('Herald Transcript'); } public function newObject() { return new HeraldTranscript(); } public function getPHIDTypeApplicationClass() { return 'Phabri...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/herald/phid/HeraldRulePHIDType.php
src/applications/herald/phid/HeraldRulePHIDType.php
<?php final class HeraldRulePHIDType extends PhabricatorPHIDType { const TYPECONST = 'HRUL'; public function getTypeName() { return pht('Herald Rule'); } public function newObject() { return new HeraldRule(); } public function getPHIDTypeApplicationClass() { return 'PhabricatorHeraldApplica...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/herald/config/HeraldRuleTypeConfig.php
src/applications/herald/config/HeraldRuleTypeConfig.php
<?php final class HeraldRuleTypeConfig extends Phobject { const RULE_TYPE_GLOBAL = 'global'; const RULE_TYPE_OBJECT = 'object'; const RULE_TYPE_PERSONAL = 'personal'; public static function getRuleTypeMap() { $map = array( self::RULE_TYPE_PERSONAL => pht('Personal'), self::RULE_TYPE_OBJECT =>...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/herald/engine/HeraldEffect.php
src/applications/herald/engine/HeraldEffect.php
<?php final class HeraldEffect extends Phobject { private $objectPHID; private $action; private $target; private $rule; private $reason; public function setObjectPHID($object_phid) { $this->objectPHID = $object_phid; return $this; } public function getObjectPHID() { return $this->objectP...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/herald/engine/HeraldEngine.php
src/applications/herald/engine/HeraldEngine.php
<?php final class HeraldEngine extends Phobject { protected $rules = array(); protected $activeRule; protected $transcript; private $fieldCache = array(); private $fieldExceptions = array(); protected $object; private $dryRun; private $forbiddenFields = array(); private $forbiddenActions = array()...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/herald/engine/exception/HeraldInvalidActionException.php
src/applications/herald/engine/exception/HeraldInvalidActionException.php
<?php final class HeraldInvalidActionException extends Exception {}
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/herald/engine/exception/HeraldRecursiveConditionsException.php
src/applications/herald/engine/exception/HeraldRecursiveConditionsException.php
<?php final class HeraldRecursiveConditionsException extends Exception {}
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/herald/engine/exception/HeraldInvalidConditionException.php
src/applications/herald/engine/exception/HeraldInvalidConditionException.php
<?php final class HeraldInvalidConditionException extends Exception {}
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/herald/engine/exception/HeraldRuleEvaluationException.php
src/applications/herald/engine/exception/HeraldRuleEvaluationException.php
<?php final class HeraldRuleEvaluationException extends Exception {}
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/herald/typeahead/HeraldRuleTypeDatasource.php
src/applications/herald/typeahead/HeraldRuleTypeDatasource.php
<?php final class HeraldRuleTypeDatasource extends PhabricatorTypeaheadDatasource { public function getBrowseTitle() { return pht('Browse Rule Types'); } public function getPlaceholderText() { return pht('Type a rule type...'); } public function getDatasourceApplicationClass() { return 'Phab...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/herald/typeahead/HeraldRuleDatasource.php
src/applications/herald/typeahead/HeraldRuleDatasource.php
<?php final class HeraldRuleDatasource extends PhabricatorTypeaheadDatasource { public function getPlaceholderText() { return pht('Type a Herald rule name...'); } public function getBrowseTitle() { return pht('Browse Herald Rules'); } public function getDatasourceApplicationClass() { return ...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/herald/typeahead/HeraldAdapterDatasource.php
src/applications/herald/typeahead/HeraldAdapterDatasource.php
<?php final class HeraldAdapterDatasource extends PhabricatorTypeaheadDatasource { public function getBrowseTitle() { return pht('Browse Herald Adapters'); } public function getPlaceholderText() { return pht('Type an adapter name...'); } public function getDatasourceApplicationClass() { retu...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/herald/typeahead/HeraldWebhookDatasource.php
src/applications/herald/typeahead/HeraldWebhookDatasource.php
<?php final class HeraldWebhookDatasource extends PhabricatorTypeaheadDatasource { public function getPlaceholderText() { return pht('Type a webhook name...'); } public function getBrowseTitle() { return pht('Browse Webhooks'); } public function getDatasourceApplicationClass() { return 'Phab...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/herald/capability/HeraldManageGlobalRulesCapability.php
src/applications/herald/capability/HeraldManageGlobalRulesCapability.php
<?php final class HeraldManageGlobalRulesCapability extends PhabricatorPolicyCapability { const CAPABILITY = 'herald.global'; public function getCapabilityName() { return pht('Can Manage Global Rules'); } public function describeCapabilityRejection() { return pht('You do not have permission to man...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/herald/capability/HeraldCreateWebhooksCapability.php
src/applications/herald/capability/HeraldCreateWebhooksCapability.php
<?php final class HeraldCreateWebhooksCapability extends PhabricatorPolicyCapability { const CAPABILITY = 'herald.webhooks'; public function getCapabilityName() { return pht('Can Create Webhooks'); } public function describeCapabilityRejection() { return pht('You do not have permission to create w...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/herald/adapter/HeraldAdapter.php
src/applications/herald/adapter/HeraldAdapter.php
<?php abstract class HeraldAdapter extends Phobject { const CONDITION_CONTAINS = 'contains'; const CONDITION_NOT_CONTAINS = '!contains'; const CONDITION_IS = 'is'; const CONDITION_IS_NOT = '!is'; const CONDITION_IS_ANY = 'isany'; const CONDITION_IS_NOT_ANY = '...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
true
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/herald/adapter/HeraldRuleAdapter.php
src/applications/herald/adapter/HeraldRuleAdapter.php
<?php final class HeraldRuleAdapter extends HeraldAdapter { private $rule; protected function newObject() { return new HeraldRule(); } public function getAdapterApplicationClass() { return 'PhabricatorHeraldApplication'; } public function getAdapterContentDescription() { return pht('React t...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/herald/remarkup/HeraldRemarkupRule.php
src/applications/herald/remarkup/HeraldRemarkupRule.php
<?php final class HeraldRemarkupRule extends PhabricatorObjectRemarkupRule { protected function getObjectNamePrefix() { return 'H'; } protected function loadObjects(array $ids) { $viewer = $this->getEngine()->getConfig('viewer'); return id(new HeraldRuleQuery()) ->setViewer($viewer) ->w...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/phame/controller/PhameController.php
src/applications/phame/controller/PhameController.php
<?php abstract class PhameController extends PhabricatorController {}
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/phame/controller/PhameLiveController.php
src/applications/phame/controller/PhameLiveController.php
<?php abstract class PhameLiveController extends PhameController { private $isExternal; private $isLive; private $blog; private $post; public function shouldAllowPublic() { return true; } protected function getIsExternal() { return $this->isExternal; } protected function getIsLive() { ...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/phame/controller/PhameHomeController.php
src/applications/phame/controller/PhameHomeController.php
<?php final class PhameHomeController extends PhamePostController { public function shouldAllowPublic() { return true; } protected function buildApplicationCrumbs() { $crumbs = parent::buildApplicationCrumbs(); id(new PhameBlogEditEngine()) ->setViewer($this->getViewer()) ->addActionTo...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/phame/controller/blog/PhameBlog404Controller.php
src/applications/phame/controller/blog/PhameBlog404Controller.php
<?php final class PhameBlog404Controller extends PhameLiveController { public function handleRequest(AphrontRequest $request) { $response = $this->setupLiveEnvironment(); if ($response) { return $response; } return new Aphront404Response(); } }
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/phame/controller/blog/PhameBlogManageController.php
src/applications/phame/controller/blog/PhameBlogManageController.php
<?php final class PhameBlogManageController extends PhameBlogController { public function shouldAllowPublic() { return true; } public function handleRequest(AphrontRequest $request) { $viewer = $request->getViewer(); $id = $request->getURIData('id'); $blog = id(new PhameBlogQuery()) ->se...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/phame/controller/blog/PhameBlogFeedController.php
src/applications/phame/controller/blog/PhameBlogFeedController.php
<?php final class PhameBlogFeedController extends PhameBlogController { public function shouldRequireLogin() { return false; } public function handleRequest(AphrontRequest $request) { $viewer = $request->getViewer(); $id = $request->getURIData('id'); $blog = id(new PhameBlogQuery()) ->se...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/phame/controller/blog/PhameBlogListController.php
src/applications/phame/controller/blog/PhameBlogListController.php
<?php final class PhameBlogListController extends PhameBlogController { public function shouldAllowPublic() { return true; } public function handleRequest(AphrontRequest $request) { return id(new PhameBlogSearchEngine()) ->setController($this) ->buildResponse(); } protected function b...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/phame/controller/blog/PhameBlogViewController.php
src/applications/phame/controller/blog/PhameBlogViewController.php
<?php final class PhameBlogViewController extends PhameLiveController { public function handleRequest(AphrontRequest $request) { $response = $this->setupLiveEnvironment(); if ($response) { return $response; } $viewer = $this->getViewer(); $blog = $this->getBlog(); $is_live = $this->g...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/phame/controller/blog/PhameBlogController.php
src/applications/phame/controller/blog/PhameBlogController.php
<?php abstract class PhameBlogController extends PhameController { public function buildApplicationMenu() { return $this->newApplicationMenu() ->setSearchEngine(new PhameBlogSearchEngine()); } }
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/phame/controller/blog/PhameBlogProfilePictureController.php
src/applications/phame/controller/blog/PhameBlogProfilePictureController.php
<?php final class PhameBlogProfilePictureController extends PhameBlogController { public function handleRequest(AphrontRequest $request) { $viewer = $request->getViewer(); $id = $request->getURIData('id'); $blog = id(new PhameBlogQuery()) ->setViewer($viewer) ->withIDs(array($id)) -...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/phame/controller/blog/PhameBlogEditController.php
src/applications/phame/controller/blog/PhameBlogEditController.php
<?php final class PhameBlogEditController extends PhameBlogController { public function handleRequest(AphrontRequest $request) { return id(new PhameBlogEditEngine()) ->setController($this) ->buildResponse(); } }
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/phame/controller/blog/PhameBlogArchiveController.php
src/applications/phame/controller/blog/PhameBlogArchiveController.php
<?php final class PhameBlogArchiveController extends PhameBlogController { public function handleRequest(AphrontRequest $request) { $viewer = $request->getViewer(); $id = $request->getURIData('id'); $blog = id(new PhameBlogQuery()) ->setViewer($viewer) ->withIDs(array($id)) ->requir...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/phame/controller/blog/PhameBlogHeaderPictureController.php
src/applications/phame/controller/blog/PhameBlogHeaderPictureController.php
<?php final class PhameBlogHeaderPictureController extends PhameBlogController { public function handleRequest(AphrontRequest $request) { $viewer = $request->getViewer(); $id = $request->getURIData('id'); $blog = id(new PhameBlogQuery()) ->setViewer($viewer) ->withIDs(array($id)) ->...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/phame/controller/post/PhamePostPublishController.php
src/applications/phame/controller/post/PhamePostPublishController.php
<?php final class PhamePostPublishController extends PhamePostController { public function handleRequest(AphrontRequest $request) { $viewer = $request->getViewer(); $id = $request->getURIData('id'); $post = id(new PhamePostQuery()) ->setViewer($viewer) ->withIDs(array($id)) ->requireC...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/phame/controller/post/PhamePostArchiveController.php
src/applications/phame/controller/post/PhamePostArchiveController.php
<?php final class PhamePostArchiveController extends PhamePostController { public function handleRequest(AphrontRequest $request) { $viewer = $request->getViewer(); $id = $request->getURIData('id'); $post = id(new PhamePostQuery()) ->setViewer($viewer) ->withIDs(array($id)) ->requireC...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/phame/controller/post/PhamePostHeaderPictureController.php
src/applications/phame/controller/post/PhamePostHeaderPictureController.php
<?php final class PhamePostHeaderPictureController extends PhamePostController { public function handleRequest(AphrontRequest $request) { $viewer = $request->getViewer(); $id = $request->getURIData('id'); $post = id(new PhamePostQuery()) ->setViewer($viewer) ->withIDs(array($id)) ->...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/phame/controller/post/PhamePostEditController.php
src/applications/phame/controller/post/PhamePostEditController.php
<?php final class PhamePostEditController extends PhamePostController { private $blog; public function setBlog(PhameBlog $blog) { $this->blog = $blog; return $this; } public function getBlog() { return $this->blog; } public function handleRequest(AphrontRequest $request) { $viewer = $re...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/phame/controller/post/PhamePostListController.php
src/applications/phame/controller/post/PhamePostListController.php
<?php final class PhamePostListController extends PhamePostController { public function shouldAllowPublic() { return true; } public function handleRequest(AphrontRequest $request) { $query_key = $request->getURIData('queryKey'); $controller = id(new PhabricatorApplicationSearchController()) -...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/phame/controller/post/PhamePostHistoryController.php
src/applications/phame/controller/post/PhamePostHistoryController.php
<?php final class PhamePostHistoryController extends PhamePostController { public function shouldAllowPublic() { return true; } public function handleRequest(AphrontRequest $request) { $viewer = $request->getViewer(); $post = id(new PhamePostQuery()) ->setViewer($viewer) ->withIDs(arra...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/phame/controller/post/PhamePostViewController.php
src/applications/phame/controller/post/PhamePostViewController.php
<?php final class PhamePostViewController extends PhameLiveController { public function handleRequest(AphrontRequest $request) { $response = $this->setupLiveEnvironment(); if ($response) { return $response; } $viewer = $request->getViewer(); $moved = $request->getStr('moved'); $pos...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/phame/controller/post/PhamePostController.php
src/applications/phame/controller/post/PhamePostController.php
<?php abstract class PhamePostController extends PhameController { public function buildApplicationMenu() { return $this->newApplicationMenu() ->setSearchEngine(new PhamePostSearchEngine()); } }
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/phame/controller/post/PhamePostMoveController.php
src/applications/phame/controller/post/PhamePostMoveController.php
<?php final class PhamePostMoveController extends PhamePostController { public function handleRequest(AphrontRequest $request) { $viewer = $request->getViewer(); $id = $request->getURIData('id'); $post = id(new PhamePostQuery()) ->setViewer($viewer) ->withIDs(array($id)) ->requireCapa...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/phame/storage/PhameSchemaSpec.php
src/applications/phame/storage/PhameSchemaSpec.php
<?php final class PhameSchemaSpec extends PhabricatorConfigSchemaSpec { public function buildSchemata() { $this->buildEdgeSchemata(new PhameBlog()); } }
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/phame/storage/PhamePost.php
src/applications/phame/storage/PhamePost.php
<?php final class PhamePost extends PhameDAO implements PhabricatorPolicyInterface, PhabricatorMarkupInterface, PhabricatorFlaggableInterface, PhabricatorProjectInterface, PhabricatorApplicationTransactionInterface, PhabricatorSubscribableInterface, PhabricatorDestructibleInterface, P...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/phame/storage/PhamePostTransaction.php
src/applications/phame/storage/PhamePostTransaction.php
<?php final class PhamePostTransaction extends PhabricatorModularTransaction { const MAILTAG_CONTENT = 'phame-post-content'; const MAILTAG_SUBSCRIBERS = 'phame-post-subscribers'; const MAILTAG_COMMENT = 'phame-post-comment'; const MAILTAG_OTHER = 'phame-post-other'; public function ...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/phame/storage/PhameDAO.php
src/applications/phame/storage/PhameDAO.php
<?php abstract class PhameDAO extends PhabricatorLiskDAO { public function getApplicationName() { return 'phame'; } }
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/phame/storage/PhamePostTransactionComment.php
src/applications/phame/storage/PhamePostTransactionComment.php
<?php final class PhamePostTransactionComment extends PhabricatorApplicationTransactionComment { public function getApplicationTransactionObject() { return new PhamePostTransaction(); } }
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/phame/storage/PhameBlog.php
src/applications/phame/storage/PhameBlog.php
<?php final class PhameBlog extends PhameDAO implements PhabricatorPolicyInterface, PhabricatorMarkupInterface, PhabricatorSubscribableInterface, PhabricatorFlaggableInterface, PhabricatorProjectInterface, PhabricatorDestructibleInterface, PhabricatorApplicationTransactionInterface, P...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/phame/storage/PhameBlogTransaction.php
src/applications/phame/storage/PhameBlogTransaction.php
<?php final class PhameBlogTransaction extends PhabricatorModularTransaction { const MAILTAG_DETAILS = 'phame-blog-details'; const MAILTAG_SUBSCRIBERS = 'phame-blog-subscribers'; const MAILTAG_OTHER = 'phame-blog-other'; public function getApplicationName() { return 'phame'; } publ...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/phame/site/PhameBlogSite.php
src/applications/phame/site/PhameBlogSite.php
<?php final class PhameBlogSite extends PhameSite { private $blog; public function setBlog(PhameBlog $blog) { $this->blog = $blog; return $this; } public function getBlog() { return $this->blog; } public function getDescription() { return pht('Serves blogs with custom domains.'); } ...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/phame/site/Phame404Response.php
src/applications/phame/site/Phame404Response.php
<?php final class Phame404Response extends AphrontHTMLResponse { private $page; public function setPage(AphrontPageView $page) { $this->page = $page; return $this; } public function getPage() { return $this->page; } public function getHTTPResponseCode() { return 404; } public funct...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/phame/site/PhameSite.php
src/applications/phame/site/PhameSite.php
<?php abstract class PhameSite extends PhabricatorSite { protected function isPhameActive() { $base_uri = PhabricatorEnv::getEnvConfig('phabricator.base-uri'); if (!strlen($base_uri)) { // Don't activate Phame if we don't have a base URI configured. return false; } $phame_installed = Ph...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/phame/query/PhamePostQuery.php
src/applications/phame/query/PhamePostQuery.php
<?php final class PhamePostQuery extends PhabricatorCursorPagedPolicyAwareQuery { private $ids; private $blogPHIDs; private $bloggerPHIDs; private $visibility; private $publishedAfter; private $phids; private $needHeaderImage; public function withIDs(array $ids) { $this->ids = $ids; return $...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/phame/query/PhameBlogTransactionQuery.php
src/applications/phame/query/PhameBlogTransactionQuery.php
<?php final class PhameBlogTransactionQuery extends PhabricatorApplicationTransactionQuery { public function getTemplateApplicationTransaction() { return new PhameBlogTransaction(); } }
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/phame/query/PhamePostSearchEngine.php
src/applications/phame/query/PhamePostSearchEngine.php
<?php final class PhamePostSearchEngine extends PhabricatorApplicationSearchEngine { public function getResultTypeDescription() { return pht('Phame Posts'); } public function getApplicationClassName() { return 'PhabricatorPhameApplication'; } public function newQuery() { return new PhamePost...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/phame/query/PhameBlogQuery.php
src/applications/phame/query/PhameBlogQuery.php
<?php final class PhameBlogQuery extends PhabricatorCursorPagedPolicyAwareQuery { private $ids; private $phids; private $domain; private $statuses; private $needBloggers; private $needProfileImage; private $needHeaderImage; public function withIDs(array $ids) { $this->ids = $ids; return $thi...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/phame/query/PhamePostTransactionQuery.php
src/applications/phame/query/PhamePostTransactionQuery.php
<?php final class PhamePostTransactionQuery extends PhabricatorApplicationTransactionQuery { public function getTemplateApplicationTransaction() { return new PhamePostTransaction(); } }
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/phame/query/PhameBlogSearchEngine.php
src/applications/phame/query/PhameBlogSearchEngine.php
<?php final class PhameBlogSearchEngine extends PhabricatorApplicationSearchEngine { public function getResultTypeDescription() { return pht('Phame Blogs'); } public function getApplicationClassName() { return 'PhabricatorPhameApplication'; } public function newQuery() { return id(new PhameB...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/phame/mail/PhamePostMailReceiver.php
src/applications/phame/mail/PhamePostMailReceiver.php
<?php final class PhamePostMailReceiver extends PhabricatorObjectMailReceiver { public function isEnabled() { return PhabricatorApplication::isClassInstalled( 'PhabricatorPhameApplication'); } protected function getObjectPattern() { return 'J[1-9]\d*'; } protected function loadObject($patt...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/phame/mail/PhameBlogReplyHandler.php
src/applications/phame/mail/PhameBlogReplyHandler.php
<?php final class PhameBlogReplyHandler extends PhabricatorApplicationTransactionReplyHandler { public function validateMailReceiver($mail_receiver) { if (!($mail_receiver instanceof PhameBlog)) { throw new Exception( pht('Mail receiver is not a %s.', 'PhameBlog')); } } public function ...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/phame/mail/PhamePostReplyHandler.php
src/applications/phame/mail/PhamePostReplyHandler.php
<?php final class PhamePostReplyHandler extends PhabricatorApplicationTransactionReplyHandler { public function validateMailReceiver($mail_receiver) { if (!($mail_receiver instanceof PhamePost)) { throw new Exception( pht('Mail receiver is not a %s.', 'PhamePost')); } } public function ...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/phame/editor/PhamePostEditEngineLock.php
src/applications/phame/editor/PhamePostEditEngineLock.php
<?php final class PhamePostEditEngineLock extends PhabricatorEditEngineLock { public function willPromptUserForLockOverrideWithDialog( AphrontDialogView $dialog) { return $dialog ->setTitle(pht('Edit Locked Post')) ->appendParagraph( pht('Comments are disabled for this post. Edit it...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/phame/editor/PhamePostEditEngine.php
src/applications/phame/editor/PhamePostEditEngine.php
<?php final class PhamePostEditEngine extends PhabricatorEditEngine { private $blog; const ENGINECONST = 'phame.post'; public function getEngineName() { return pht('Blog Posts'); } public function getSummaryHeader() { return pht('Configure Blog Post Forms'); } public function getSummaryTex...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/phame/editor/PhameBlogEditEngine.php
src/applications/phame/editor/PhameBlogEditEngine.php
<?php final class PhameBlogEditEngine extends PhabricatorEditEngine { const ENGINECONST = 'phame.blog'; public function getEngineName() { return pht('Blogs'); } public function getEngineApplicationClass() { return 'PhabricatorPhameApplication'; } public function getSummaryHeader() { retur...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/phame/editor/PhamePostEditor.php
src/applications/phame/editor/PhamePostEditor.php
<?php final class PhamePostEditor extends PhabricatorApplicationTransactionEditor { public function getEditorApplicationClass() { return 'PhabricatorPhameApplication'; } public function getEditorObjectsDescription() { return pht('Phame Posts'); } public function getCreateObjectTitle($author, $ob...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/phame/editor/PhameBlogEditor.php
src/applications/phame/editor/PhameBlogEditor.php
<?php final class PhameBlogEditor extends PhabricatorApplicationTransactionEditor { public function getEditorApplicationClass() { return 'PhabricatorPhameApplication'; } public function getEditorObjectsDescription() { return pht('Phame Blogs'); } public function getCreateObjectTitle($author, $ob...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/phame/xaction/PhamePostHeaderImageTransaction.php
src/applications/phame/xaction/PhamePostHeaderImageTransaction.php
<?php final class PhamePostHeaderImageTransaction extends PhamePostTransactionType { const TRANSACTIONTYPE = 'phame.post.headerimage'; public function generateOldValue($object) { return $object->getHeaderImagePHID(); } public function applyInternalEffects($object, $value) { $object->setHeaderImage...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/phame/xaction/PhameBlogStatusTransaction.php
src/applications/phame/xaction/PhameBlogStatusTransaction.php
<?php final class PhameBlogStatusTransaction extends PhameBlogTransactionType { const TRANSACTIONTYPE = 'phame.blog.status'; public function generateOldValue($object) { return $object->getStatus(); } public function applyInternalEffects($object, $value) { $object->setStatus($value); } public ...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false