Page MenuHomec4science

DifferentialDiffContentHeraldField.php
No OneTemporary

File Metadata

Created
Fri, Jul 5, 23:16

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

Event Timeline