Merge pull request #24233 from demeritcowboy/zetapatookens
[civicrm-core.git] / extern / widget.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | Copyright CiviCRM LLC. All rights reserved. |
5 | |
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 |
9 +--------------------------------------------------------------------+
10 */
11
12 /**
13 *
14 * @package CRM
15 * @copyright CiviCRM LLC https://civicrm.org/licensing
16 */
17 require_once '../civicrm.config.php';
18 require_once 'CRM/Core/Config.php';
19
20 $config = CRM_Core_Config::singleton();
21 $template = CRM_Core_Smarty::singleton();
22
23 require_once 'CRM/Utils/Request.php';
24 $cpageId = CRM_Utils_Request::retrieve('cpageId', 'Positive');
25 $widgetId = CRM_Utils_Request::retrieve('widgetId', 'Positive');
26 $format = CRM_Utils_Request::retrieve('format', 'Positive');
27 $includePending = CRM_Utils_Request::retrieve('includePending', 'Boolean');
28
29 require_once 'CRM/Contribute/BAO/Widget.php';
30
31 $jsonvar = 'jsondata';
32 if (isset($format)) {
33 $jsonvar .= $cpageId;
34 }
35
36 $data = CRM_Contribute_BAO_Widget::getContributionPageData($cpageId, $widgetId, $includePending);
37
38 $output = '
39 var ' . $jsonvar . ' = ' . json_encode($data) . ';
40 ';
41
42 // FIXME: Not using CRM_Core_Page_AJAX::setJsHeaders because CMS is not bootstrapped
43 header('Expires: ' . gmdate('D, d M Y H:i:s \G\M\T', time() + 60));
44 header('Content-Type: application/javascript');
45 header("Cache-Control: max-age=60, public");
46
47 echo $output;
48 CRM_Utils_System::civiExit();