3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2014 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
31 * @copyright CiviCRM LLC (c) 2004-2014
35 class CRM_Grant_BAO_Grant
extends CRM_Grant_DAO_Grant
{
38 * Static field for all the grant information that we can potentially export
42 static $_exportableFields = NULL;
47 function __construct() {
48 parent
::__construct();
58 * @return array Array of event summary values
60 static function getGrantSummary($admin = FALSE) {
62 SELECT status_id, count(id) as status_total
63 FROM civicrm_grant GROUP BY status_id";
65 $dao = CRM_Core_DAO
::executeQuery($query, CRM_Core_DAO
::$_nullArray);
69 $summary['total_grants'] = NULL;
70 $status = CRM_Core_PseudoConstant
::get('CRM_Grant_DAO_Grant', 'status_id');
72 foreach ($status as $id => $name) {
79 while ($dao->fetch()) {
80 $stats[$dao->status_id
] = array(
81 'label' => $status[$dao->status_id
],
82 'total' => $dao->status_total
,
84 $summary['total_grants'] +
= $dao->status_total
;
87 $summary['per_status'] = $stats;
96 * @return array Array of event summary values
98 static function getGrantStatusOptGroup() {
101 $params['name'] = CRM_Grant_BAO_Grant
::$statusGroupName;
105 $og = CRM_Core_BAO_OptionGroup
::retrieve($params, $defaults);
107 CRM_Core_Error
::fatal('No option group for grant statuses - database discrepancy! Make sure you loaded civicrm_data.mysql');
114 * Retrieve statistics for grants.
120 * @return array Array of grant summary statistics
122 static function getGrantStatistics($admin = FALSE) {
123 $grantStatuses = array();
127 * Fetch object based on array of properties
129 * @param array $params (reference ) an assoc array of name/value pairs
130 * @param array $defaults (reference ) an assoc array to hold the flattened values
132 * @return CRM_Grant_BAO_ManageGrant object
136 static function retrieve(&$params, &$defaults) {
137 $grant = new CRM_Grant_DAO_Grant();
138 $grant->copyValues($params);
139 if ($grant->find(TRUE)) {
140 CRM_Core_DAO
::storeValues($grant, $defaults);
149 * @param array $params reference array contains the values submitted by the form
150 * @param array $ids reference array contains the id
157 static function add(&$params, &$ids) {
159 if (!empty($ids['grant_id'])) {
160 CRM_Utils_Hook
::pre('edit', 'Grant', $ids['grant_id'], $params);
163 CRM_Utils_Hook
::pre('create', 'Grant', NULL, $params);
166 // first clean up all the money fields
167 $moneyFields = array(
172 foreach ($moneyFields as $field) {
173 if (isset($params[$field])) {
174 $params[$field] = CRM_Utils_Rule
::cleanMoney($params[$field]);
177 // convert dates to mysql format
179 'application_received_date',
181 'money_transfer_date',
185 foreach ($dates as $d) {
186 if (isset($params[$d])) {
187 $params[$d] = CRM_Utils_Date
::processDate($params[$d], NULL, TRUE);
190 $grant = new CRM_Grant_DAO_Grant();
191 $grant->id
= CRM_Utils_Array
::value('grant_id', $ids);
193 $grant->copyValues($params);
195 // set currency for CRM-1496
196 if (!isset($grant->currency
)) {
197 $config = CRM_Core_Config
::singleton();
198 $grant->currency
= $config->defaultCurrency
;
201 $result = $grant->save();
203 $url = CRM_Utils_System
::url('civicrm/contact/view/grant',
204 "action=view&reset=1&id={$grant->id}&cid={$grant->contact_id}&context=home"
207 $grantTypes = CRM_Core_PseudoConstant
::get('CRM_Grant_DAO_Grant', 'grant_type_id');
208 if (empty($params['skipRecentView'])) {
209 if(!isset($grant->contact_id
) ||
!isset($grant->grant_type_id
)){
212 $title = CRM_Contact_BAO_Contact
::displayName($grant->contact_id
) . ' - ' . ts('Grant') . ': ' . $grantTypes[$grant->grant_type_id
];
214 $recentOther = array();
215 if (CRM_Core_Permission
::checkActionPermission('CiviGrant', CRM_Core_Action
::UPDATE
)) {
216 $recentOther['editUrl'] = CRM_Utils_System
::url('civicrm/contact/view/grant',
217 "action=update&reset=1&id={$grant->id}&cid={$grant->contact_id}&context=home"
220 if (CRM_Core_Permission
::checkActionPermission('CiviGrant', CRM_Core_Action
::DELETE
)) {
221 $recentOther['deleteUrl'] = CRM_Utils_System
::url('civicrm/contact/view/grant',
222 "action=delete&reset=1&id={$grant->id}&cid={$grant->contact_id}&context=home"
226 // add the recently created Grant
227 CRM_Utils_Recent
::add($title,
237 if (!empty($ids['grant'])) {
238 CRM_Utils_Hook
::post('edit', 'Grant', $grant->id
, $grant);
241 CRM_Utils_Hook
::post('create', 'Grant', $grant->id
, $grant);
250 * @param array $params reference array contains the values submitted by the form
251 * @param array $ids reference array contains the id
258 public static function create(&$params, &$ids) {
259 $transaction = new CRM_Core_Transaction();
261 $grant = self
::add($params, $ids);
263 if (is_a($grant, 'CRM_Core_Error')) {
264 $transaction->rollback();
268 $session = CRM_Core_Session
::singleton();
269 $id = $session->get('userID');
271 $id = CRM_Utils_Array
::value('contact_id', $params);
273 if (!empty($params['note']) || CRM_Utils_Array
::value('id', CRM_Utils_Array
::value('note', $ids))) {
275 'entity_table' => 'civicrm_grant',
276 'note' => $params['note'] = $params['note'] ?
$params['note'] : "null",
277 'entity_id' => $grant->id
,
279 'modified_date' => date('Ymd'),
282 CRM_Core_BAO_Note
::add($noteParams, (array) CRM_Utils_Array
::value('note', $ids));
284 // Log the information on successful add/edit of Grant
286 'entity_table' => 'civicrm_grant',
287 'entity_id' => $grant->id
,
288 'modified_id' => $id,
289 'modified_date' => date('Ymd'),
292 CRM_Core_BAO_Log
::add($logParams);
294 // add custom field values
295 if (!empty($params['custom']) && is_array($params['custom'])) {
296 CRM_Core_BAO_CustomValueTable
::store($params['custom'], 'civicrm_grant', $grant->id
);
299 // check and attach and files as needed
300 CRM_Core_BAO_File
::processAttachment($params,
305 $transaction->commit();
313 * @param int $id contact id
320 static function deleteContact($id) {
321 $grant = new CRM_Grant_DAO_Grant();
322 $grant->contact_id
= $id;
330 * @param int $id grant id
337 static function del($id) {
338 CRM_Utils_Hook
::pre('delete', 'Grant', $id, CRM_Core_DAO
::$_nullArray);
340 $grant = new CRM_Grant_DAO_Grant();
345 // delete the recently created Grant
346 $grantRecent = array(
350 CRM_Utils_Recent
::del($grantRecent);
352 if ($grant->fetch()) {
353 $results = $grant->delete();
354 CRM_Utils_Hook
::post('delete', 'Grant', $grant->id
, $grant);
361 * Combine all the exportable fields from the lower levels object
363 * @return array array of exportable Fields
367 static function &exportableFields() {
368 if (!self
::$_exportableFields) {
369 if (!self
::$_exportableFields) {
370 self
::$_exportableFields = array();
373 $grantFields = array(
374 'grant_status' => array(
375 'title' => 'Grant Status',
376 'name' => 'grant_status',
377 'data_type' => CRM_Utils_Type
::T_STRING
,
379 'grant_type' => array(
380 'title' => 'Grant Type',
381 'name' => 'grant_type',
382 'data_type' => CRM_Utils_Type
::T_STRING
,
384 'grant_money_transfer_date' => array(
385 'title' => 'Grant Money Transfer Date',
386 'name' => 'grant_money_transfer_date',
387 'data_type' => CRM_Utils_Type
::T_DATE
,
389 'grant_amount_requested' => array(
390 'title' => 'Grant Amount Requested',
391 'name' => 'grant_amount_requested',
392 'data_type' => CRM_Utils_Type
::T_FLOAT
,
394 'grant_application_received_date' => array(
395 'title' => 'Grant Application Recieved Date',
396 'name' => 'grant_application_received_date',
397 'data_type' => CRM_Utils_Type
::T_DATE
,
401 $fields = CRM_Grant_DAO_Grant
::export();
402 $grantNote = array('grant_note' => array('title' => ts('Grant Note'),
403 'name' => 'grant_note',
404 'data_type' => CRM_Utils_Type
::T_TEXT
,
406 $fields = array_merge($fields, $grantFields, $grantNote,
407 CRM_Core_BAO_CustomField
::getFieldsForImport('Grant')
409 self
::$_exportableFields = $fields;
412 return self
::$_exportableFields;
416 * Get grant record count for a Contact
418 * @param int $contactID
420 * @return int count of grant records
424 static function getContactGrantCount($contactID) {
425 $query = "SELECT count(*) FROM civicrm_grant WHERE civicrm_grant.contact_id = {$contactID} ";
426 return CRM_Core_DAO
::singleValueQuery($query);