Esempio n. 1
0
 /**
  * @return array|null
  */
 public static function getMemberBatchEntryFields()
 {
     if (self::$_memberBatchEntryFields === NULL) {
         self::$_memberBatchEntryFields = array('send_receipt' => array('name' => 'send_receipt', 'title' => ts('Send Receipt')), 'soft_credit' => array('name' => 'soft_credit', 'title' => ts('Soft Credit')), 'product_name' => array('name' => 'product_name', 'title' => ts('Premiums')), 'financial_type' => array('name' => 'financial_type', 'title' => ts('Financial Type')), 'total_amount' => array('name' => 'total_amount', 'title' => ts('Total Amount')), 'receive_date' => array('name' => 'receive_date', 'title' => ts('Receive Date')), 'payment_instrument' => array('name' => 'payment_instrument', 'title' => ts('Payment Instrument')), 'contribution_status_id' => array('name' => 'contribution_status_id', 'title' => ts('Contribution Status')));
     }
     return self::$_memberBatchEntryFields;
 }