Page MenuHomec4science

PhrictionDocumentPathHeraldField.php
No OneTemporary

File Metadata

Created
Thu, Apr 10, 06:11

PhrictionDocumentPathHeraldField.php

<?php
final class PhrictionDocumentPathHeraldField
extends PhrictionDocumentHeraldField {
const FIELDCONST = 'path';
public function getHeraldFieldName() {
return pht('Path');
}
public function getHeraldFieldValue($object) {
return $object->getcontent()->getSlug();
}
protected function getHeraldFieldStandardConditions() {
return self::STANDARD_TEXT;
}
public function getHeraldFieldValueType($condition) {
return HeraldAdapter::VALUE_TEXT;
}
}

Event Timeline