1<?php 2 3final class PhabricatorCalendarEventHeraldFieldGroup 4 extends HeraldFieldGroup { 5 6 const FIELDGROUPKEY = 'calendar.event'; 7 8 public function getGroupLabel() { 9 return pht('Event Fields'); 10 } 11 12 protected function getGroupOrder() { 13 return 1000; 14 } 15 16} 17 18