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/differential/field/DifferentialConflictsCommitMessageField.php
src/applications/differential/field/DifferentialConflictsCommitMessageField.php
<?php final class DifferentialConflictsCommitMessageField extends DifferentialCommitMessageField { const FIELDKEY = 'conflicts'; public function getFieldName() { return pht('Conflicts'); } public function getFieldOrder() { return 900000; } public function isFieldEditable() { return false;...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/field/DifferentialRevisionIDCommitMessageField.php
src/applications/differential/field/DifferentialRevisionIDCommitMessageField.php
<?php final class DifferentialRevisionIDCommitMessageField extends DifferentialCommitMessageField { const FIELDKEY = 'revisionID'; public function getFieldName() { return pht('Differential Revision'); } public function getFieldOrder() { return 200000; } public function isTemplateField() { ...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/field/DifferentialSubscribersCommitMessageField.php
src/applications/differential/field/DifferentialSubscribersCommitMessageField.php
<?php final class DifferentialSubscribersCommitMessageField extends DifferentialCommitMessageField { const FIELDKEY = 'ccPHIDs'; public function getFieldName() { return pht('Subscribers'); } public function getFieldOrder() { return 6000; } public function getFieldAliases() { return array(...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/field/DifferentialTitleCommitMessageField.php
src/applications/differential/field/DifferentialTitleCommitMessageField.php
<?php final class DifferentialTitleCommitMessageField extends DifferentialCommitMessageField { const FIELDKEY = 'title'; public function getFieldName() { return pht('Title'); } public function getFieldOrder() { return 1000; } public static function getDefaultTitle() { return pht('<<Replac...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/field/DifferentialRevertPlanCommitMessageField.php
src/applications/differential/field/DifferentialRevertPlanCommitMessageField.php
<?php final class DifferentialRevertPlanCommitMessageField extends DifferentialCommitMessageCustomField { const FIELDKEY = 'revertPlan'; public function getFieldName() { return pht('Revert Plan'); } public function getCustomFieldKey() { return 'phabricator:revert-plan'; } }
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/field/DifferentialSummaryCommitMessageField.php
src/applications/differential/field/DifferentialSummaryCommitMessageField.php
<?php final class DifferentialSummaryCommitMessageField extends DifferentialCommitMessageField { const FIELDKEY = 'summary'; public function getFieldName() { return pht('Summary'); } public function getFieldOrder() { return 2000; } public function readFieldValueFromObject(DifferentialRevision...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/field/DifferentialJIRAIssuesCommitMessageField.php
src/applications/differential/field/DifferentialJIRAIssuesCommitMessageField.php
<?php final class DifferentialJIRAIssuesCommitMessageField extends DifferentialCommitMessageCustomField { const FIELDKEY = 'jira.issues'; public function getFieldName() { return pht('JIRA Issues'); } public function getFieldAliases() { return array( 'JIRA', 'JIRA Issue', ); } ...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/field/DifferentialAuditorsCommitMessageField.php
src/applications/differential/field/DifferentialAuditorsCommitMessageField.php
<?php final class DifferentialAuditorsCommitMessageField extends DifferentialCommitMessageCustomField { const FIELDKEY = 'phabricator:auditors'; public function getFieldName() { return pht('Auditors'); } public function getFieldAliases() { return array( 'Auditor', ); } public functi...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/field/DifferentialTasksCommitMessageField.php
src/applications/differential/field/DifferentialTasksCommitMessageField.php
<?php final class DifferentialTasksCommitMessageField extends DifferentialCommitMessageField { const FIELDKEY = 'maniphestTaskPHIDs'; public function getFieldName() { return pht('Maniphest Tasks'); } public function getFieldOrder() { return 8000; } public function getFieldAliases() { retu...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/field/DifferentialGitSVNIDCommitMessageField.php
src/applications/differential/field/DifferentialGitSVNIDCommitMessageField.php
<?php final class DifferentialGitSVNIDCommitMessageField extends DifferentialCommitMessageField { const FIELDKEY = 'gitSVNID'; public function getFieldName() { return pht('git-svn-id'); } public function getFieldOrder() { return 900001; } public function isFieldEditable() { return false; ...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/field/DifferentialReviewedByCommitMessageField.php
src/applications/differential/field/DifferentialReviewedByCommitMessageField.php
<?php final class DifferentialReviewedByCommitMessageField extends DifferentialCommitMessageField { const FIELDKEY = 'reviewedByPHIDs'; public function getFieldName() { return pht('Reviewed By'); } public function getFieldOrder() { return 5000; } public function parseFieldValue($value) { ...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/field/DifferentialTestPlanCommitMessageField.php
src/applications/differential/field/DifferentialTestPlanCommitMessageField.php
<?php final class DifferentialTestPlanCommitMessageField extends DifferentialCommitMessageField { const FIELDKEY = 'testPlan'; public function getFieldName() { return pht('Test Plan'); } public function getFieldOrder() { return 3000; } public function getFieldAliases() { return array( ...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/field/DifferentialCommitMessageField.php
src/applications/differential/field/DifferentialCommitMessageField.php
<?php abstract class DifferentialCommitMessageField extends Phobject { private $viewer; private $customFieldStorage; final public function setViewer(PhabricatorUser $viewer) { $this->viewer = $viewer; return $this; } final public function getViewer() { return $this->viewer; } final publ...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/field/DifferentialCommitMessageCustomField.php
src/applications/differential/field/DifferentialCommitMessageCustomField.php
<?php abstract class DifferentialCommitMessageCustomField extends DifferentialCommitMessageField { abstract public function getCustomFieldKey(); public function getFieldOrder() { $custom_key = $this->getCustomFieldKey(); return 100000 + $this->getCustomFieldOrder($custom_key); } public function is...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/field/DifferentialTagsCommitMessageField.php
src/applications/differential/field/DifferentialTagsCommitMessageField.php
<?php final class DifferentialTagsCommitMessageField extends DifferentialCommitMessageField { const FIELDKEY = 'phabricator:projects'; public function getFieldName() { return pht('Tags'); } public function getFieldOrder() { return 7000; } public function getFieldAliases() { return array( ...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/field/DifferentialReviewersCommitMessageField.php
src/applications/differential/field/DifferentialReviewersCommitMessageField.php
<?php final class DifferentialReviewersCommitMessageField extends DifferentialCommitMessageField { const FIELDKEY = 'reviewerPHIDs'; public function getFieldName() { return pht('Reviewers'); } public function getFieldOrder() { return 4000; } public function getFieldAliases() { return arra...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/field/DifferentialBlameRevisionCommitMessageField.php
src/applications/differential/field/DifferentialBlameRevisionCommitMessageField.php
<?php final class DifferentialBlameRevisionCommitMessageField extends DifferentialCommitMessageCustomField { const FIELDKEY = 'blameRevision'; public function getFieldName() { return pht('Blame Revision'); } public function getFieldAliases() { return array( 'Blame Rev', ); } public ...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/field/__tests__/DifferentialCommitMessageFieldTestCase.php
src/applications/differential/field/__tests__/DifferentialCommitMessageFieldTestCase.php
<?php final class DifferentialCommitMessageFieldTestCase extends PhabricatorTestCase { public function testRevisionCommitMessageFieldParsing() { $base_uri = 'https://www.example.com/'; $tests = array( 'D123' => 123, 'd123' => 123, " \n d123 \n " => 123, "D123\nSome-Custom-Field:...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/edge/DifferentialReviewerForRevisionEdgeType.php
src/applications/differential/edge/DifferentialReviewerForRevisionEdgeType.php
<?php final class DifferentialReviewerForRevisionEdgeType extends PhabricatorEdgeType { const EDGECONST = 36; public function getInverseEdgeConstant() { return DifferentialRevisionHasReviewerEdgeType::EDGECONST; } public function shouldWriteInverseTransactions() { return true; } }
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/edge/DifferentialRevisionHasCommitEdgeType.php
src/applications/differential/edge/DifferentialRevisionHasCommitEdgeType.php
<?php final class DifferentialRevisionHasCommitEdgeType extends PhabricatorEdgeType { const EDGECONST = 31; public function getInverseEdgeConstant() { return DiffusionCommitHasRevisionEdgeType::EDGECONST; } public function shouldWriteInverseTransactions() { return true; } public function getCon...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/edge/DifferentialRevisionHasTaskEdgeType.php
src/applications/differential/edge/DifferentialRevisionHasTaskEdgeType.php
<?php final class DifferentialRevisionHasTaskEdgeType extends PhabricatorEdgeType { const EDGECONST = 12; public function getInverseEdgeConstant() { return ManiphestTaskHasRevisionEdgeType::EDGECONST; } public function shouldWriteInverseTransactions() { return true; } public function getConduit...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/edge/DifferentialRevisionDependsOnRevisionEdgeType.php
src/applications/differential/edge/DifferentialRevisionDependsOnRevisionEdgeType.php
<?php final class DifferentialRevisionDependsOnRevisionEdgeType extends PhabricatorEdgeType { const EDGECONST = 5; public function getInverseEdgeConstant() { return DifferentialRevisionDependedOnByRevisionEdgeType::EDGECONST; } public function shouldWriteInverseTransactions() { return true; } ...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/edge/DifferentialRevisionHasReviewerEdgeType.php
src/applications/differential/edge/DifferentialRevisionHasReviewerEdgeType.php
<?php final class DifferentialRevisionHasReviewerEdgeType extends PhabricatorEdgeType { const EDGECONST = 35; public function getInverseEdgeConstant() { return DifferentialReviewerForRevisionEdgeType::EDGECONST; } public function getTransactionAddString( $actor, $add_count, $add_edges) { ...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/edge/DifferentialRevisionDependedOnByRevisionEdgeType.php
src/applications/differential/edge/DifferentialRevisionDependedOnByRevisionEdgeType.php
<?php final class DifferentialRevisionDependedOnByRevisionEdgeType extends PhabricatorEdgeType { const EDGECONST = 6; public function getInverseEdgeConstant() { return DifferentialRevisionDependsOnRevisionEdgeType::EDGECONST; } public function shouldWriteInverseTransactions() { return true; } ...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/phid/DifferentialChangesetPHIDType.php
src/applications/differential/phid/DifferentialChangesetPHIDType.php
<?php final class DifferentialChangesetPHIDType extends PhabricatorPHIDType { const TYPECONST = 'DCNG'; public function getTypeName() { return pht('Differential Changeset'); } public function newObject() { return new DifferentialChangeset(); } public function getPHIDTypeApplicationClass() { ...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/phid/DifferentialDiffPHIDType.php
src/applications/differential/phid/DifferentialDiffPHIDType.php
<?php final class DifferentialDiffPHIDType extends PhabricatorPHIDType { const TYPECONST = 'DIFF'; public function getTypeName() { return pht('Differential Diff'); } public function newObject() { return new DifferentialDiff(); } 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/differential/phid/DifferentialRevisionPHIDType.php
src/applications/differential/phid/DifferentialRevisionPHIDType.php
<?php final class DifferentialRevisionPHIDType extends PhabricatorPHIDType { const TYPECONST = 'DREV'; public function getTypeName() { return pht('Differential Revision'); } public function newObject() { return new DifferentialRevision(); } public function getPHIDTypeApplicationClass() { re...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/herald/HeraldDifferentialAdapter.php
src/applications/differential/herald/HeraldDifferentialAdapter.php
<?php abstract class HeraldDifferentialAdapter extends HeraldAdapter { private $repository = false; private $diff; abstract protected function loadChangesets(); abstract protected function loadChangesetsWithHunks(); public function getDiff() { return $this->diff; } public function setDiff(Differe...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/herald/DifferentialDiffRepositoryHeraldField.php
src/applications/differential/herald/DifferentialDiffRepositoryHeraldField.php
<?php final class DifferentialDiffRepositoryHeraldField extends DifferentialDiffHeraldField { const FIELDCONST = 'differential.diff.repository'; public function getHeraldFieldName() { return pht('Repository'); } public function getHeraldFieldValue($object) { $repository = $this->getAdapter()->load...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/herald/DifferentialRevisionContentAddedHeraldField.php
src/applications/differential/herald/DifferentialRevisionContentAddedHeraldField.php
<?php final class DifferentialRevisionContentAddedHeraldField extends DifferentialRevisionHeraldField { const FIELDCONST = 'differential.revision.diff.new'; public function getHeraldFieldName() { return pht('Added file content'); } public function getFieldGroupKey() { return DifferentialChangeHera...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/herald/DifferentialRevisionJIRAIssueURIsHeraldField.php
src/applications/differential/herald/DifferentialRevisionJIRAIssueURIsHeraldField.php
<?php final class DifferentialRevisionJIRAIssueURIsHeraldField extends DifferentialRevisionHeraldField { const FIELDCONST = 'differential.revision.jira.uris'; public function getHeraldFieldName() { return pht('JIRA Issue URIs'); } public function supportsObject($object) { $provider = PhabricatorJI...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/herald/DifferentialRevisionPackageHeraldField.php
src/applications/differential/herald/DifferentialRevisionPackageHeraldField.php
<?php final class DifferentialRevisionPackageHeraldField extends DifferentialRevisionHeraldField { const FIELDCONST = 'differential.revision.package'; public function getHeraldFieldName() { return pht('Affected packages'); } public function getFieldGroupKey() { return HeraldRelatedFieldGroup::FIEL...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/herald/DifferentialReviewersAddBlockingSelfHeraldAction.php
src/applications/differential/herald/DifferentialReviewersAddBlockingSelfHeraldAction.php
<?php final class DifferentialReviewersAddBlockingSelfHeraldAction extends DifferentialReviewersHeraldAction { const ACTIONCONST = 'differential.reviewers.self.blocking'; public function getHeraldActionName() { return pht('Add me as a blocking reviewer'); } public function supportsRuleType($rule_type)...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/herald/DifferentialDiffContentHeraldField.php
src/applications/differential/herald/DifferentialDiffContentHeraldField.php
<?php final class DifferentialDiffContentHeraldField extends DifferentialDiffHeraldField { const FIELDCONST = 'differential.diff.content'; public function getHeraldFieldName() { return pht('Changed file content'); } public function getFieldGroupKey() { return DifferentialChangeHeraldFieldGroup::FI...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/herald/DifferentialDiffContentAddedHeraldField.php
src/applications/differential/herald/DifferentialDiffContentAddedHeraldField.php
<?php final class DifferentialDiffContentAddedHeraldField extends DifferentialDiffHeraldField { const FIELDCONST = 'differential.diff.new'; public function getHeraldFieldName() { return pht('Added file content'); } public function getFieldGroupKey() { return DifferentialChangeHeraldFieldGroup::FIE...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/herald/DifferentialDiffHeraldFieldGroup.php
src/applications/differential/herald/DifferentialDiffHeraldFieldGroup.php
<?php final class DifferentialDiffHeraldFieldGroup extends HeraldFieldGroup { const FIELDGROUPKEY = 'differential.diff'; public function getGroupLabel() { return pht('Diff Fields'); } protected function getGroupOrder() { return 1000; } }
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/herald/HeraldDifferentialRevisionAdapter.php
src/applications/differential/herald/HeraldDifferentialRevisionAdapter.php
<?php final class HeraldDifferentialRevisionAdapter extends HeraldDifferentialAdapter implements HarbormasterBuildableAdapterInterface { protected $revision; protected $affectedPackages; protected $changesets; private $haveHunks; private $buildRequests = array(); public function getAdapterApplicati...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/herald/DifferentialReviewersHeraldAction.php
src/applications/differential/herald/DifferentialReviewersHeraldAction.php
<?php abstract class DifferentialReviewersHeraldAction extends HeraldAction { const DO_AUTHORS = 'do.authors'; const DO_ADD_REVIEWERS = 'do.add-reviewers'; const DO_ADD_BLOCKING_REVIEWERS = 'do.add-blocking-reviewers'; public function getActionGroupKey() { return HeraldApplicationActionGroup::ACTIONGRO...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/herald/DifferentialRevisionStatusHeraldField.php
src/applications/differential/herald/DifferentialRevisionStatusHeraldField.php
<?php final class DifferentialRevisionStatusHeraldField extends DifferentialRevisionHeraldField { const FIELDCONST = 'revision.status'; public function getHeraldFieldName() { return pht('Revision status'); } public function getHeraldFieldValue($object) { return $object->getStatus(); } protect...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/herald/DifferentialRevisionPackageOwnerHeraldField.php
src/applications/differential/herald/DifferentialRevisionPackageOwnerHeraldField.php
<?php final class DifferentialRevisionPackageOwnerHeraldField extends DifferentialRevisionHeraldField { const FIELDCONST = 'differential.revision.package.owners'; public function getHeraldFieldName() { return pht('Affected package owners'); } public function getFieldGroupKey() { return HeraldRelat...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/herald/DifferentialDiffHeraldField.php
src/applications/differential/herald/DifferentialDiffHeraldField.php
<?php abstract class DifferentialDiffHeraldField extends HeraldField { public function supportsObject($object) { return ($object instanceof DifferentialDiff); } public function getFieldGroupKey() { return DifferentialDiffHeraldFieldGroup::FIELDGROUPKEY; } }
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/herald/DifferentialRevisionTitleHeraldField.php
src/applications/differential/herald/DifferentialRevisionTitleHeraldField.php
<?php final class DifferentialRevisionTitleHeraldField extends DifferentialRevisionHeraldField { const FIELDCONST = 'differential.revision.title'; public function getHeraldFieldName() { return pht('Revision title'); } public function getHeraldFieldValue($object) { return $object->getTitle(); } ...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/herald/DifferentialBlockHeraldAction.php
src/applications/differential/herald/DifferentialBlockHeraldAction.php
<?php final class DifferentialBlockHeraldAction extends HeraldAction { const ACTIONCONST = 'differential.block'; const DO_BLOCK = 'do.block'; public function getHeraldActionName() { return pht('Block diff with message'); } public function getActionGroupKey() { return HeraldApplicationActionGrou...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/herald/DifferentialRevisionSummaryHeraldField.php
src/applications/differential/herald/DifferentialRevisionSummaryHeraldField.php
<?php final class DifferentialRevisionSummaryHeraldField extends DifferentialRevisionHeraldField { const FIELDCONST = 'differential.revision.summary'; public function getHeraldFieldName() { return pht('Revision summary'); } public function getHeraldFieldValue($object) { return $object->getSummary(...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/herald/DifferentialDiffAffectedFilesHeraldField.php
src/applications/differential/herald/DifferentialDiffAffectedFilesHeraldField.php
<?php final class DifferentialDiffAffectedFilesHeraldField extends DifferentialDiffHeraldField { const FIELDCONST = 'differential.diff.affected'; public function getHeraldFieldName() { return pht('Affected files'); } public function getFieldGroupKey() { return DifferentialChangeHeraldFieldGroup::F...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/herald/DifferentialRevisionRepositoryHeraldField.php
src/applications/differential/herald/DifferentialRevisionRepositoryHeraldField.php
<?php final class DifferentialRevisionRepositoryHeraldField extends DifferentialRevisionHeraldField { const FIELDCONST = 'differential.revision.repository'; public function getHeraldFieldName() { return pht('Repository'); } public function getHeraldFieldValue($object) { $repository = $this->getAda...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/herald/DifferentialRevisionRepositoryProjectsHeraldField.php
src/applications/differential/herald/DifferentialRevisionRepositoryProjectsHeraldField.php
<?php final class DifferentialRevisionRepositoryProjectsHeraldField extends DifferentialRevisionHeraldField { const FIELDCONST = 'differential.revision.repository.projects'; public function getHeraldFieldName() { return pht('Repository projects'); } public function getHeraldFieldValue($object) { $...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/herald/DifferentialHeraldStateReasons.php
src/applications/differential/herald/DifferentialHeraldStateReasons.php
<?php final class DifferentialHeraldStateReasons extends HeraldStateReasons { const REASON_DRAFT = 'differential.draft'; const REASON_UNCHANGED = 'differential.unchanged'; const REASON_LANDED = 'differential.landed'; public function explainReason($reason) { $reasons = array( self::REASON_DRAFT =>...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/herald/DifferentialRevisionContentHeraldField.php
src/applications/differential/herald/DifferentialRevisionContentHeraldField.php
<?php final class DifferentialRevisionContentHeraldField extends DifferentialRevisionHeraldField { const FIELDCONST = 'differential.revision.diff.content'; public function getHeraldFieldName() { return pht('Changed file content'); } public function getFieldGroupKey() { return DifferentialChangeHer...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/herald/DifferentialRevisionAuthorPackagesHeraldField.php
src/applications/differential/herald/DifferentialRevisionAuthorPackagesHeraldField.php
<?php final class DifferentialRevisionAuthorPackagesHeraldField extends DifferentialRevisionHeraldField { const FIELDCONST = 'differential.revision.author.packages'; public function getHeraldFieldName() { return pht("Author's packages"); } public function getHeraldFieldValue($object) { $adapter = ...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/herald/HeraldDifferentialDiffAdapter.php
src/applications/differential/herald/HeraldDifferentialDiffAdapter.php
<?php final class HeraldDifferentialDiffAdapter extends HeraldDifferentialAdapter { public function getAdapterApplicationClass() { return 'PhabricatorDifferentialApplication'; } protected function initializeNewAdapter() { $this->setDiff(new DifferentialDiff()); } public function isSingleEventAdapt...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/herald/DifferentialDiffAuthorProjectsHeraldField.php
src/applications/differential/herald/DifferentialDiffAuthorProjectsHeraldField.php
<?php final class DifferentialDiffAuthorProjectsHeraldField extends DifferentialDiffHeraldField { const FIELDCONST = 'differential.diff.author.projects'; public function getHeraldFieldName() { return pht("Author's projects"); } public function getHeraldFieldValue($object) { $viewer = PhabricatorUs...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/herald/DifferentialReviewersAddReviewersHeraldAction.php
src/applications/differential/herald/DifferentialReviewersAddReviewersHeraldAction.php
<?php final class DifferentialReviewersAddReviewersHeraldAction extends DifferentialReviewersHeraldAction { const ACTIONCONST = 'differential.reviewers.add'; public function getHeraldActionName() { return pht('Add reviewers'); } public function supportsRuleType($rule_type) { return ($rule_type != ...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/herald/DifferentialRevisionTestPlanHeraldField.php
src/applications/differential/herald/DifferentialRevisionTestPlanHeraldField.php
<?php final class DifferentialRevisionTestPlanHeraldField extends DifferentialRevisionHeraldField { const FIELDCONST = 'differential.revision.test-plan'; public function getHeraldFieldName() { return pht('Revision test plan'); } public function getHeraldFieldValue($object) { return $object->getTes...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/herald/DifferentialRevisionAuthorHeraldField.php
src/applications/differential/herald/DifferentialRevisionAuthorHeraldField.php
<?php final class DifferentialRevisionAuthorHeraldField extends DifferentialRevisionHeraldField { const FIELDCONST = 'differential.revision.author'; public function getHeraldFieldName() { return pht('Author'); } public function getHeraldFieldValue($object) { return $object->getAuthorPHID(); } ...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/herald/DifferentialRevisionHeraldField.php
src/applications/differential/herald/DifferentialRevisionHeraldField.php
<?php abstract class DifferentialRevisionHeraldField extends HeraldField { public function supportsObject($object) { return ($object instanceof DifferentialRevision); } public function getFieldGroupKey() { return DifferentialRevisionHeraldFieldGroup::FIELDGROUPKEY; } }
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/herald/DifferentialRevisionHeraldFieldGroup.php
src/applications/differential/herald/DifferentialRevisionHeraldFieldGroup.php
<?php final class DifferentialRevisionHeraldFieldGroup extends HeraldFieldGroup { const FIELDGROUPKEY = 'differential.revision'; public function getGroupLabel() { return pht('Revision Fields'); } protected function getGroupOrder() { return 1000; } }
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/herald/DifferentialRevisionAffectedFilesHeraldField.php
src/applications/differential/herald/DifferentialRevisionAffectedFilesHeraldField.php
<?php final class DifferentialRevisionAffectedFilesHeraldField extends DifferentialRevisionHeraldField { const FIELDCONST = 'differential.revision.diff.affected'; public function getHeraldFieldName() { return pht('Affected files'); } public function getFieldGroupKey() { return DifferentialChangeHe...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/herald/DifferentialDiffContentRemovedHeraldField.php
src/applications/differential/herald/DifferentialDiffContentRemovedHeraldField.php
<?php final class DifferentialDiffContentRemovedHeraldField extends DifferentialDiffHeraldField { const FIELDCONST = 'differential.diff.old'; public function getHeraldFieldName() { return pht('Removed file content'); } public function getFieldGroupKey() { return DifferentialChangeHeraldFieldGroup:...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/herald/DifferentialRevisionAuthorProjectsHeraldField.php
src/applications/differential/herald/DifferentialRevisionAuthorProjectsHeraldField.php
<?php final class DifferentialRevisionAuthorProjectsHeraldField extends DifferentialRevisionHeraldField { const FIELDCONST = 'differential.revision.author.projects'; public function getHeraldFieldName() { return pht("Author's projects"); } public function getHeraldFieldValue($object) { $viewer = P...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/herald/DifferentialReviewersAddSelfHeraldAction.php
src/applications/differential/herald/DifferentialReviewersAddSelfHeraldAction.php
<?php final class DifferentialReviewersAddSelfHeraldAction extends DifferentialReviewersHeraldAction { const ACTIONCONST = 'differential.reviewers.self.add'; public function getHeraldActionName() { return pht('Add me as a reviewer'); } public function supportsRuleType($rule_type) { return ($rule_t...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/herald/DifferentialReviewersAddBlockingReviewersHeraldAction.php
src/applications/differential/herald/DifferentialReviewersAddBlockingReviewersHeraldAction.php
<?php final class DifferentialReviewersAddBlockingReviewersHeraldAction extends DifferentialReviewersHeraldAction { const ACTIONCONST = 'differential.reviewers.blocking'; public function getHeraldActionName() { return pht('Add blocking reviewers'); } public function supportsRuleType($rule_type) { ...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/herald/DifferentialDiffRepositoryProjectsHeraldField.php
src/applications/differential/herald/DifferentialDiffRepositoryProjectsHeraldField.php
<?php final class DifferentialDiffRepositoryProjectsHeraldField extends DifferentialDiffHeraldField { const FIELDCONST = 'differential.diff.repository.projects'; public function getHeraldFieldName() { return pht('Repository projects'); } public function getHeraldFieldValue($object) { $repository =...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/herald/DifferentialDiffAuthorHeraldField.php
src/applications/differential/herald/DifferentialDiffAuthorHeraldField.php
<?php final class DifferentialDiffAuthorHeraldField extends DifferentialDiffHeraldField { const FIELDCONST = 'differential.diff.author'; public function getHeraldFieldName() { return pht('Author'); } public function getHeraldFieldValue($object) { return $object->getAuthorPHID(); } protected f...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/herald/DifferentialRevisionContentRemovedHeraldField.php
src/applications/differential/herald/DifferentialRevisionContentRemovedHeraldField.php
<?php final class DifferentialRevisionContentRemovedHeraldField extends DifferentialRevisionHeraldField { const FIELDCONST = 'differential.revision.diff.old'; public function getHeraldFieldName() { return pht('Removed file content'); } public function getFieldGroupKey() { return DifferentialChange...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/herald/DifferentialRevisionReviewersHeraldField.php
src/applications/differential/herald/DifferentialRevisionReviewersHeraldField.php
<?php final class DifferentialRevisionReviewersHeraldField extends DifferentialRevisionHeraldField { const FIELDCONST = 'differential.revision.reviewers'; public function getHeraldFieldName() { return pht('Reviewers'); } public function getHeraldFieldValue($object) { return $this->getAdapter()->lo...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/herald/DifferentialChangeHeraldFieldGroup.php
src/applications/differential/herald/DifferentialChangeHeraldFieldGroup.php
<?php final class DifferentialChangeHeraldFieldGroup extends HeraldFieldGroup { const FIELDGROUPKEY = 'differential.change'; public function getGroupLabel() { return pht('Change Details'); } protected function getGroupOrder() { return 1500; } }
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/render/DifferentialChangesetTestRenderer.php
src/applications/differential/render/DifferentialChangesetTestRenderer.php
<?php abstract class DifferentialChangesetTestRenderer extends DifferentialChangesetRenderer { protected function renderChangeTypeHeader($force) { $changeset = $this->getChangeset(); $old = nonempty($changeset->getOldFile(), '-'); $current = nonempty($changeset->getFilename(), '-'); $away = nonem...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/render/DifferentialChangesetOneUpRenderer.php
src/applications/differential/render/DifferentialChangesetOneUpRenderer.php
<?php final class DifferentialChangesetOneUpRenderer extends DifferentialChangesetHTMLRenderer { private $simpleMode; public function setSimpleMode($simple_mode) { $this->simpleMode = $simple_mode; return $this; } public function getSimpleMode() { return $this->simpleMode; } public functi...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/render/DifferentialChangesetTwoUpRenderer.php
src/applications/differential/render/DifferentialChangesetTwoUpRenderer.php
<?php final class DifferentialChangesetTwoUpRenderer extends DifferentialChangesetHTMLRenderer { private $newOffsetMap; public function isOneUpRenderer() { return false; } protected function getRendererTableClass() { return 'diff-2up'; } public function getRendererKey() { return '2up'; ...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/render/DifferentialChangesetOneUpTestRenderer.php
src/applications/differential/render/DifferentialChangesetOneUpTestRenderer.php
<?php final class DifferentialChangesetOneUpTestRenderer extends DifferentialChangesetTestRenderer { public function isOneUpRenderer() { return true; } public function getRendererKey() { return '1up-test'; } }
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/render/DifferentialRawDiffRenderer.php
src/applications/differential/render/DifferentialRawDiffRenderer.php
<?php final class DifferentialRawDiffRenderer extends Phobject { private $changesets; private $format = 'unified'; private $viewer; private $byteLimit; public function setFormat($format) { $this->format = $format; return $this; } public function getFormat() { return $this->format; } p...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/render/DifferentialChangesetTwoUpTestRenderer.php
src/applications/differential/render/DifferentialChangesetTwoUpTestRenderer.php
<?php final class DifferentialChangesetTwoUpTestRenderer extends DifferentialChangesetTestRenderer { public function isOneUpRenderer() { return false; } public function getRendererKey() { return '2up-test'; } }
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/render/DifferentialChangesetOneUpMailRenderer.php
src/applications/differential/render/DifferentialChangesetOneUpMailRenderer.php
<?php final class DifferentialChangesetOneUpMailRenderer extends DifferentialChangesetRenderer { public function isOneUpRenderer() { return true; } protected function getRendererTableClass() { return 'diff-1up-mail'; } public function getRendererKey() { return '1up-mail'; } protected fu...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/render/DifferentialChangesetRenderer.php
src/applications/differential/render/DifferentialChangesetRenderer.php
<?php abstract class DifferentialChangesetRenderer extends Phobject { private $user; private $changeset; private $renderingReference; private $renderPropertyChangeHeader; private $isTopLevel; private $isUndershield; private $hunkStartLines; private $oldLines; private $newLines; private $oldComment...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/render/DifferentialChangesetHTMLRenderer.php
src/applications/differential/render/DifferentialChangesetHTMLRenderer.php
<?php abstract class DifferentialChangesetHTMLRenderer extends DifferentialChangesetRenderer { public static function getHTMLRendererByKey($key) { switch ($key) { case '1up': return new DifferentialChangesetOneUpRenderer(); case '2up': default: return new DifferentialChangese...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/config/PhabricatorDifferentialConfigOptions.php
src/applications/differential/config/PhabricatorDifferentialConfigOptions.php
<?php final class PhabricatorDifferentialConfigOptions extends PhabricatorApplicationConfigOptions { public function getName() { return pht('Differential'); } public function getDescription() { return pht('Configure Differential code review.'); } public function getIcon() { return 'fa-cog'; ...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/conduit/DifferentialQueryDiffsConduitAPIMethod.php
src/applications/differential/conduit/DifferentialQueryDiffsConduitAPIMethod.php
<?php final class DifferentialQueryDiffsConduitAPIMethod extends DifferentialConduitAPIMethod { public function getAPIMethodName() { return 'differential.querydiffs'; } public function getMethodDescription() { return pht('Query differential diffs which match certain criteria.'); } public functio...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/conduit/DifferentialCreateRevisionConduitAPIMethod.php
src/applications/differential/conduit/DifferentialCreateRevisionConduitAPIMethod.php
<?php final class DifferentialCreateRevisionConduitAPIMethod extends DifferentialConduitAPIMethod { public function getAPIMethodName() { return 'differential.createrevision'; } public function getMethodDescription() { return pht('Create a new Differential revision.'); } public function getMethod...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/conduit/DifferentialRevisionSearchConduitAPIMethod.php
src/applications/differential/conduit/DifferentialRevisionSearchConduitAPIMethod.php
<?php final class DifferentialRevisionSearchConduitAPIMethod extends PhabricatorSearchEngineAPIMethod { public function getAPIMethodName() { return 'differential.revision.search'; } public function newSearchEngine() { return new DifferentialRevisionSearchEngine(); } public function getMethodSumm...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/conduit/DifferentialGetRevisionConduitAPIMethod.php
src/applications/differential/conduit/DifferentialGetRevisionConduitAPIMethod.php
<?php final class DifferentialGetRevisionConduitAPIMethod extends DifferentialConduitAPIMethod { public function getAPIMethodName() { return 'differential.getrevision'; } public function getMethodStatus() { return self::METHOD_STATUS_DEPRECATED; } public function getMethodStatusDescription() { ...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/conduit/DifferentialGetAllDiffsConduitAPIMethod.php
src/applications/differential/conduit/DifferentialGetAllDiffsConduitAPIMethod.php
<?php final class DifferentialGetAllDiffsConduitAPIMethod extends DifferentialConduitAPIMethod { public function getAPIMethodName() { return 'differential.getalldiffs'; } public function getMethodStatus() { return self::METHOD_STATUS_DEPRECATED; } public function getMethodStatusDescription() { ...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/conduit/DifferentialCreateCommentConduitAPIMethod.php
src/applications/differential/conduit/DifferentialCreateCommentConduitAPIMethod.php
<?php final class DifferentialCreateCommentConduitAPIMethod extends DifferentialConduitAPIMethod { public function getAPIMethodName() { return 'differential.createcomment'; } public function getMethodDescription() { return pht('Add a comment to a Differential revision.'); } public function getMe...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/conduit/DifferentialGetRawDiffConduitAPIMethod.php
src/applications/differential/conduit/DifferentialGetRawDiffConduitAPIMethod.php
<?php final class DifferentialGetRawDiffConduitAPIMethod extends DifferentialConduitAPIMethod { public function getAPIMethodName() { return 'differential.getrawdiff'; } public function getMethodDescription() { return pht('Retrieve a raw diff'); } protected function defineParamTypes() { retur...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/conduit/DifferentialParseCommitMessageConduitAPIMethod.php
src/applications/differential/conduit/DifferentialParseCommitMessageConduitAPIMethod.php
<?php final class DifferentialParseCommitMessageConduitAPIMethod extends DifferentialConduitAPIMethod { public function getAPIMethodName() { return 'differential.parsecommitmessage'; } public function getMethodDescription() { return pht('Parse commit messages for Differential fields.'); } protec...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/conduit/DifferentialSetDiffPropertyConduitAPIMethod.php
src/applications/differential/conduit/DifferentialSetDiffPropertyConduitAPIMethod.php
<?php final class DifferentialSetDiffPropertyConduitAPIMethod extends DifferentialConduitAPIMethod { public function getAPIMethodName() { return 'differential.setdiffproperty'; } public function getMethodDescription() { return pht('Attach properties to Differential diffs.'); } protected function...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/conduit/DifferentialQueryConduitAPIMethod.php
src/applications/differential/conduit/DifferentialQueryConduitAPIMethod.php
<?php final class DifferentialQueryConduitAPIMethod extends DifferentialConduitAPIMethod { public function getAPIMethodName() { return 'differential.query'; } public function getMethodDescription() { return pht('Query Differential revisions which match certain criteria.'); } public function getM...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/conduit/DifferentialConduitAPIMethod.php
src/applications/differential/conduit/DifferentialConduitAPIMethod.php
<?php abstract class DifferentialConduitAPIMethod extends ConduitAPIMethod { final public function getApplication() { return PhabricatorApplication::getByClass( 'PhabricatorDifferentialApplication'); } protected function buildDiffInfoDictionary(DifferentialDiff $diff) { $uri = '/differential/diff...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/conduit/DifferentialCreateDiffConduitAPIMethod.php
src/applications/differential/conduit/DifferentialCreateDiffConduitAPIMethod.php
<?php final class DifferentialCreateDiffConduitAPIMethod extends DifferentialConduitAPIMethod { public function getAPIMethodName() { return 'differential.creatediff'; } public function getMethodDescription() { return pht('Create a new Differential diff.'); } protected function defineParamTypes()...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/conduit/DifferentialCreateInlineConduitAPIMethod.php
src/applications/differential/conduit/DifferentialCreateInlineConduitAPIMethod.php
<?php final class DifferentialCreateInlineConduitAPIMethod extends DifferentialConduitAPIMethod { public function getAPIMethodName() { return 'differential.createinline'; } public function getMethodDescription() { return pht('Add an inline comment to a Differential revision.'); } protected funct...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/conduit/DifferentialCloseConduitAPIMethod.php
src/applications/differential/conduit/DifferentialCloseConduitAPIMethod.php
<?php final class DifferentialCloseConduitAPIMethod extends DifferentialConduitAPIMethod { public function getAPIMethodName() { return 'differential.close'; } public function getMethodDescription() { return pht('Close a Differential revision.'); } public function getMethodStatus() { return s...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/conduit/DifferentialChangesetSearchConduitAPIMethod.php
src/applications/differential/conduit/DifferentialChangesetSearchConduitAPIMethod.php
<?php final class DifferentialChangesetSearchConduitAPIMethod extends PhabricatorSearchEngineAPIMethod { public function getAPIMethodName() { return 'differential.changeset.search'; } public function newSearchEngine() { return new DifferentialChangesetSearchEngine(); } public function getMethodS...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/conduit/DifferentialRevisionEditConduitAPIMethod.php
src/applications/differential/conduit/DifferentialRevisionEditConduitAPIMethod.php
<?php final class DifferentialRevisionEditConduitAPIMethod extends PhabricatorEditEngineAPIMethod { public function getAPIMethodName() { return 'differential.revision.edit'; } public function newEditEngine() { return new DifferentialRevisionEditEngine(); } public function getMethodSummary() { ...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/conduit/DifferentialDiffSearchConduitAPIMethod.php
src/applications/differential/conduit/DifferentialDiffSearchConduitAPIMethod.php
<?php final class DifferentialDiffSearchConduitAPIMethod extends PhabricatorSearchEngineAPIMethod { public function getAPIMethodName() { return 'differential.diff.search'; } public function newSearchEngine() { return new DifferentialDiffSearchEngine(); } public function getMethodSummary() { ...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/conduit/DifferentialUpdateRevisionConduitAPIMethod.php
src/applications/differential/conduit/DifferentialUpdateRevisionConduitAPIMethod.php
<?php final class DifferentialUpdateRevisionConduitAPIMethod extends DifferentialConduitAPIMethod { public function getAPIMethodName() { return 'differential.updaterevision'; } public function getMethodDescription() { return pht('Update a Differential revision.'); } public function getMethodStat...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/conduit/DifferentialGetRevisionCommentsConduitAPIMethod.php
src/applications/differential/conduit/DifferentialGetRevisionCommentsConduitAPIMethod.php
<?php final class DifferentialGetRevisionCommentsConduitAPIMethod extends DifferentialConduitAPIMethod { public function getAPIMethodName() { return 'differential.getrevisioncomments'; } public function getMethodStatus() { return self::METHOD_STATUS_DEPRECATED; } public function getMethodStatusD...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/conduit/DifferentialGetDiffConduitAPIMethod.php
src/applications/differential/conduit/DifferentialGetDiffConduitAPIMethod.php
<?php final class DifferentialGetDiffConduitAPIMethod extends DifferentialConduitAPIMethod { public function getAPIMethodName() { return 'differential.getdiff'; } public function shouldAllowPublic() { return true; } public function getMethodStatus() { return self::METHOD_STATUS_DEPRECATED; ...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/conduit/DifferentialCreateRawDiffConduitAPIMethod.php
src/applications/differential/conduit/DifferentialCreateRawDiffConduitAPIMethod.php
<?php final class DifferentialCreateRawDiffConduitAPIMethod extends DifferentialConduitAPIMethod { public function getAPIMethodName() { return 'differential.createrawdiff'; } public function getMethodDescription() { return pht('Create a new Differential diff from a raw diff source.'); } protecte...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/conduit/DifferentialGetCommitMessageConduitAPIMethod.php
src/applications/differential/conduit/DifferentialGetCommitMessageConduitAPIMethod.php
<?php final class DifferentialGetCommitMessageConduitAPIMethod extends DifferentialConduitAPIMethod { public function getAPIMethodName() { return 'differential.getcommitmessage'; } public function getMethodDescription() { return pht('Retrieve Differential commit messages or message templates.'); } ...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/differential/conduit/DifferentialGetCommitPathsConduitAPIMethod.php
src/applications/differential/conduit/DifferentialGetCommitPathsConduitAPIMethod.php
<?php final class DifferentialGetCommitPathsConduitAPIMethod extends DifferentialConduitAPIMethod { public function getAPIMethodName() { return 'differential.getcommitpaths'; } public function getMethodDescription() { return pht( 'Query which paths should be included when committing a '. ...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false