First commit
This commit is contained in:
commit
c6e2478c40
13918 changed files with 2303184 additions and 0 deletions
191
sites/all/modules/civicrm/CRM/Event/Cart/BAO/MerParticipant.php
Normal file
191
sites/all/modules/civicrm/CRM/Event/Cart/BAO/MerParticipant.php
Normal file
|
@ -0,0 +1,191 @@
|
|||
<?php
|
||||
/*
|
||||
+--------------------------------------------------------------------+
|
||||
| CiviCRM version 4.7 |
|
||||
+--------------------------------------------------------------------+
|
||||
| Copyright CiviCRM LLC (c) 2004-2017 |
|
||||
+--------------------------------------------------------------------+
|
||||
| This file is a part of CiviCRM. |
|
||||
| |
|
||||
| CiviCRM is free software; you can copy, modify, and distribute it |
|
||||
| under the terms of the GNU Affero General Public License |
|
||||
| Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
|
||||
| |
|
||||
| CiviCRM is distributed in the hope that it will be useful, but |
|
||||
| WITHOUT ANY WARRANTY; without even the implied warranty of |
|
||||
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
|
||||
| See the GNU Affero General Public License for more details. |
|
||||
| |
|
||||
| You should have received a copy of the GNU Affero General Public |
|
||||
| License and the CiviCRM Licensing Exception along |
|
||||
| with this program; if not, contact CiviCRM LLC |
|
||||
| at info[AT]civicrm[DOT]org. If you have questions about the |
|
||||
| GNU Affero General Public License or the licensing of CiviCRM, |
|
||||
| see the CiviCRM license FAQ at http://civicrm.org/licensing |
|
||||
+--------------------------------------------------------------------+
|
||||
*/
|
||||
|
||||
/**
|
||||
* Class CRM_Event_Cart_BAO_MerParticipant
|
||||
*/
|
||||
class CRM_Event_Cart_BAO_MerParticipant extends CRM_Event_BAO_Participant {
|
||||
public $email = NULL;
|
||||
public $contribution_id = NULL;
|
||||
public $cart = NULL;
|
||||
|
||||
/**
|
||||
* XXX.
|
||||
* @param null $participant
|
||||
*/
|
||||
public function __construct($participant = NULL) {
|
||||
parent::__construct();
|
||||
$a = (array) $participant;
|
||||
$this->copyValues($a);
|
||||
|
||||
$this->email = CRM_Utils_Array::value('email', $participant);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $params
|
||||
*
|
||||
* @return CRM_Event_Cart_BAO_MerParticipant
|
||||
* @throws Exception
|
||||
*/
|
||||
public static function create(&$params) {
|
||||
$participantParams = array(
|
||||
'id' => CRM_Utils_Array::value('id', $params),
|
||||
'role_id' => self::get_attendee_role_id(),
|
||||
'status_id' => self::get_pending_in_cart_status_id(),
|
||||
'contact_id' => $params['contact_id'],
|
||||
'event_id' => $params['event_id'],
|
||||
'cart_id' => $params['cart_id'],
|
||||
//XXX
|
||||
//'registered_by_id' =>
|
||||
//'discount_amount' =>
|
||||
//'fee_level' => $params['fee_level'],
|
||||
);
|
||||
$participant = CRM_Event_BAO_Participant::create($participantParams);
|
||||
|
||||
if (is_a($participant, 'CRM_Core_Error')) {
|
||||
CRM_Core_Error::fatal(ts('There was an error creating a cart participant'));
|
||||
}
|
||||
|
||||
$mer_participant = new CRM_Event_Cart_BAO_MerParticipant($participant);
|
||||
|
||||
return $mer_participant;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return mixed
|
||||
*/
|
||||
public static function get_attendee_role_id() {
|
||||
$roles = CRM_Event_PseudoConstant::participantRole(NULL, "v.label='Attendee'");
|
||||
$role_names = array_keys($roles);
|
||||
return end($role_names);
|
||||
}
|
||||
|
||||
/**
|
||||
* @return mixed
|
||||
*/
|
||||
public static function get_pending_in_cart_status_id() {
|
||||
$status_types = CRM_Event_PseudoConstant::participantStatus(NULL, "name='Pending in cart'");
|
||||
$status_names = array_keys($status_types);
|
||||
return end($status_names);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param int $event_cart_id
|
||||
*
|
||||
* @return array|null
|
||||
*/
|
||||
public static function find_all_by_cart_id($event_cart_id) {
|
||||
if ($event_cart_id == NULL) {
|
||||
return NULL;
|
||||
}
|
||||
return self::find_all_by_params(array('cart_id' => $event_cart_id));
|
||||
}
|
||||
|
||||
/**
|
||||
* @param int $event_id
|
||||
* @param int $event_cart_id
|
||||
*
|
||||
* @return array|null
|
||||
*/
|
||||
public static function find_all_by_event_and_cart_id($event_id, $event_cart_id) {
|
||||
if ($event_cart_id == NULL) {
|
||||
return NULL;
|
||||
}
|
||||
return self::find_all_by_params(array('event_id' => $event_id, 'cart_id' => $event_cart_id));
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $params
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public static function find_all_by_params($params) {
|
||||
$participant = new CRM_Event_BAO_Participant();
|
||||
$participant->copyValues($params);
|
||||
$result = array();
|
||||
if ($participant->find()) {
|
||||
while ($participant->fetch()) {
|
||||
$result[] = new CRM_Event_Cart_BAO_MerParticipant(clone($participant));
|
||||
}
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param int $id
|
||||
*
|
||||
* @return mixed
|
||||
*/
|
||||
public static function get_by_id($id) {
|
||||
$results = self::find_all_by_params(array('id' => $id));
|
||||
return array_pop($results);
|
||||
}
|
||||
|
||||
public function load_associations() {
|
||||
$contact_details = CRM_Contact_BAO_Contact::getContactDetails($this->contact_id);
|
||||
$this->email = $contact_details[1];
|
||||
}
|
||||
|
||||
/**
|
||||
* @return int
|
||||
*/
|
||||
public function get_participant_index() {
|
||||
if (!$this->cart) {
|
||||
$this->cart = CRM_Event_Cart_BAO_Cart::find_by_id($this->cart_id);
|
||||
$this->cart->load_associations();
|
||||
}
|
||||
$index = $this->cart->get_participant_index_from_id($this->id);
|
||||
return $index + 1;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $contact
|
||||
*
|
||||
* @return null
|
||||
*/
|
||||
public static function billing_address_from_contact($contact) {
|
||||
foreach ($contact->address as $loc) {
|
||||
if ($loc['is_billing']) {
|
||||
return $loc;
|
||||
}
|
||||
}
|
||||
foreach ($contact->address as $loc) {
|
||||
if ($loc['is_primary']) {
|
||||
return $loc;
|
||||
}
|
||||
}
|
||||
return NULL;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return CRM_Event_Cart_Form_MerParticipant
|
||||
*/
|
||||
public function get_form() {
|
||||
return new CRM_Event_Cart_Form_MerParticipant($this);
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue