Merge pull request #17298 from demeritcowboy/activity-attachment-delete
[civicrm-core.git] / CRM / Member / Page / AJAX.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
bc77d7c0 4 | Copyright CiviCRM LLC. All rights reserved. |
6a488035 5 | |
bc77d7c0
TO
6 | This work is published under the GNU AGPLv3 license with some |
7 | permitted exceptions and without any warranty. For full license |
8 | and copyright information, see https://civicrm.org/licensing |
6a488035 9 +--------------------------------------------------------------------+
d25dd0ee 10 */
6a488035
TO
11
12/**
13 *
14 * @package CRM
ca5cec67 15 * @copyright CiviCRM LLC https://civicrm.org/licensing
6a488035
TO
16 * $Id$
17 *
18 */
19
20/**
21 * This class contains all the function that are called using AJAX (dojo)
22 */
23class CRM_Member_Page_AJAX {
24
25 /**
fe482240 26 * SetDefaults according to membership type.
6a488035 27 */
00be9182 28 public static function getMemberTypeDefaults() {
6a488035
TO
29 if (!$_POST['mtype']) {
30 $details['name'] = '';
31 $details['auto_renew'] = '';
32 $details['total_amount'] = '';
33
ecdef330 34 CRM_Utils_JSON::output($details);
6a488035
TO
35 }
36 $memType = CRM_Utils_Type::escape($_POST['mtype'], 'Integer');
37
b09fe5ed 38 $query = "SELECT name, minimum_fee AS total_amount, financial_type_id, auto_renew
6a488035
TO
39FROM civicrm_membership_type
40WHERE id = %1";
41
be2fb01f
CW
42 $dao = CRM_Core_DAO::executeQuery($query, [1 => [$memType, 'Positive']]);
43 $properties = ['financial_type_id', 'total_amount', 'name', 'auto_renew'];
6a488035
TO
44 while ($dao->fetch()) {
45 foreach ($properties as $property) {
46 $details[$property] = $dao->$property;
47 }
48 }
49 $details['total_amount_numeric'] = $details['total_amount'];
50 // fix the display of the monetary value, CRM-4038
51 $details['total_amount'] = CRM_Utils_Money::format($details['total_amount'], NULL, '%a');
dbd82592 52 $options = CRM_Core_SelectValues::memberAutoRenew();
9c1bc317 53 $details['auto_renew'] = $options[$details]['auto_renew'] ?? NULL;
ecdef330 54 CRM_Utils_JSON::output($details);
6a488035 55 }
96025800 56
6a488035 57}