Page MenuHomec4science

DifferentialRevisionContentRemovedHeraldField.php
No OneTemporary

File Metadata

Created
Sun, Sep 29, 22:45

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 DifferentialChangeHeraldFieldGroup::FIELDGROUPKEY;
}
public function getHeraldFieldValue($object) {
return $this->getAdapter()->loadRemovedContentDictionary();
}
protected function getHeraldFieldStandardType() {
return self::STANDARD_TEXT_MAP;
}
}

Event Timeline