/**
  * Get font names supported by the TCPDF package used to create PDF labels.
  *
  * @param string $name group name
  *
  * @return array   array of font names
  * @access public
  * @static
  */
 public static function getFontNames($name = 'label_format')
 {
     $label = new CRM_Utils_PDF_Label(self::getDefaultValues($name));
     return $label->getFontNames();
 }
 /**
  * Get font names supported by the TCPDF package used to create PDF labels.
  *
  * @param void
  *
  * @return array   array of font names
  * @access public
  */
 function getFontNames()
 {
     $label = new CRM_Utils_PDF_Label(self::getDefaultValues());
     return $label->getFontNames();
 }