コード例 #1
0
 /**
  * Delete name labels.
  *
  * @param int $printLabelId
  *   ID of the name label to be deleted.
  *
  */
 public static function del($printLabelId)
 {
     $printLabel = new CRM_Core_DAO_PrintLabel();
     $printLabel->id = $printLabelId;
     $printLabel->delete();
 }