1<?php 2 3final class PhabricatorCustomFieldHeraldActionGroup 4 extends HeraldActionGroup { 5 6 const ACTIONGROUPKEY = 'customfield'; 7 8 public function getGroupLabel() { 9 return pht('Custom Fields'); 10 } 11 12 protected function getGroupOrder() { 13 return 2000; 14 } 15 16} 17 18