コード例 #1
0
ファイル: Query.php プロジェクト: kidaa30/yes
 /**
  * Get available fields.
  *
  * @return array
  */
 public static function &getFields()
 {
     $fields = CRM_Member_BAO_Membership::exportableFields();
     return $fields;
 }
コード例 #2
0
ファイル: Query.php プロジェクト: ksecor/civicrm
 static function &getFields()
 {
     require_once 'CRM/Member/BAO/Membership.php';
     $fields =& CRM_Member_BAO_Membership::exportableFields();
     return $fields;
 }