Page MenuHomec4science

HeraldFieldGroup.php
No OneTemporary

File Metadata

Created
Mon, Mar 31, 13:43

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__)
->setUniqueMethod('getGroupKey')
->setSortMethod('getSortKey')
->execute();
}
}

Event Timeline