Page MenuHomec4science

HeraldFieldGroup.php
No OneTemporary

File Metadata

Created
Wed, Feb 12, 10:55

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