3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.4 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2013 |
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-2013
34 require_once 'CRM/Wci/DAO/ProgressBar.php';
36 class CRM_Wci_BAO_ProgressBar
extends CRM_Wci_DAO_ProgressBar
{
41 function __construct() {
42 parent
::__construct();
46 * Function to create a ProgressBar
47 * takes an associative array and creates a ProgressBar object
49 * This function is invoked from within the web form layer and also from the api layer
51 * @param array $params (reference ) an assoc array of name/value pairs
53 * @return object CRM_Wci_BAO_ProgressBar object
57 static function create(array $params) {
59 // check required params
60 if (!self
::dataExists($params)) {
61 CRM_Core_Error
::fatal('Not enough data to create a progress bar.');
64 $progress_bar = new CRM_Wci_BAO_ProgressBar();
65 $progress_bar->copyValues($params);
67 $progress_bar->save();
73 * Get a list of Widgets matching the params, where params keys are column
74 * names of civicrm_wci_widget.
76 * @param array $params
77 * @return array of CRM_Wci_BAO_ProgressBar objects
79 static function retrieve(array $params) {
82 $progress_bar = new CRM_Wci_BAO_ProgressBar();
83 $progress_bar->copyValues($params);
84 $progress_bar->find();
86 while ($progress_bar->fetch()) {
87 $result[(int) $progress_bar->id
] = clone $progress_bar;
90 $progress_bar->free();
96 * Wrapper method for retrieve
98 * @param mixed $id Int or int-like string representing widget ID
99 * @return CRM_Wci_BAO_ProgressBar
101 static function retrieveByID($id) {
102 if (!is_int($id) && !ctype_digit($id)) {
103 CRM_Core_Error
::fatal(__CLASS__
. '::' . __FUNCTION__
. ' expects an integer.');
107 $progress_bars = self
::retrieve(array('id' => $id));
109 if (!array_key_exists($id, $progress_bars)) {
110 CRM_Core_Error
::fatal("No Progress bar with ID $id exists.");
113 return $progress_bars[$id];
117 * Check if there is absolute minimum of data to add the object
119 * @param array $params (reference ) an assoc array of name/value pairs
124 public static function dataExists($params) {
125 if (CRM_Utils_Array
::value('name', $params)) {
132 * Returns array of progressbars
133 * Fields : id, name, starting_amount, goal_amount
134 * @return progressbar array
137 public static function getProgressbarList() {
138 $query = "SELECT * FROM civicrm_wci_progress_bar";
142 $dao = CRM_Core_DAO
::executeQuery($query, $params, TRUE, 'CRM_Wci_DAO_ProgressBar');
144 while ($dao->fetch()) {
145 $pbList[$dao->id
] = array();
146 CRM_Core_DAO
::storeValues($dao, $pbList[$dao->id
]);
153 * Returns percentage value of a progressbar
155 * @param integer progressbar id
157 * @return decimal percentage value
160 public static function getProgressbarPercentage($idPB) {
162 $query = "SELECT * FROM civicrm_wci_progress_bar where id=" . $idPB;
164 $dao = CRM_Core_DAO
::executeQuery($query, $params, TRUE, 'CRM_Wci_DAO_ProgressBar');
166 while ($dao->fetch()) {
167 $con_page[$dao->id
] = array();
168 CRM_Core_DAO
::storeValues($dao, $con_page[$dao->id
]);
169 $con_page[$dao->id
]['name'];
170 $sa = $con_page[$dao->id
]['starting_amount'];
171 $ga = $con_page[$dao->id
]['goal_amount'];
174 $query = "SELECT * FROM civicrm_wci_progress_bar_formula WHERE progress_bar_id =" . $idPB;
177 $daoPbf = CRM_Core_DAO
::executeQuery($query, $params, TRUE, 'CRM_Wci_DAO_ProgressBarFormula');
178 while ($daoPbf->fetch()) {
179 $for_page[$daoPbf->id
] = array();
180 CRM_Core_DAO
::storeValues($daoPbf, $for_page[$daoPbf->id
]);
181 $px = $for_page[$daoPbf->id
]['percentage'];
183 $query = "SELECT * FROM civicrm_contribution where contribution_page_id =" . $for_page[$daoPbf->id
]['contribution_page_id'];
186 $daoCon = CRM_Core_DAO
::executeQuery($query, $params, TRUE, 'CRM_Contribute_DAO_Contribution');
188 while ($daoCon->fetch()) {
189 $contributions[$daoCon->id
] = array();
190 CRM_Core_DAO
::storeValues($daoCon, $contributions[$daoCon->id
]);
191 $bx = $contributions[$daoCon->id
]['total_amount'];
193 $bp +
= $bx * $px / 100;
196 (0 == $ga) ?
$perc = 0: $perc = (($sa +
$bp) / $ga ) * 100;
202 public static function getProgressbarData($pbId) {
204 $query = "SELECT * FROM civicrm_wci_progress_bar where id=".$pbId;
207 $dao = CRM_Core_DAO
::executeQuery($query, $params, TRUE, 'CRM_Wci_DAO_Widget');
210 while ($dao->fetch()) {
211 $pbData["starting_amount"] = $dao->starting_amount
;
212 $pbData["goal_amount"] = $dao->goal_amount
;