Fix CRM_Utils_JS::dedupeClosures to ignore comments
[civicrm-core.git] / extern / widget.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
6b7eb9df 4 | Copyright CiviCRM LLC. All rights reserved. |
6a488035 5 | |
6b7eb9df
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 */
18require_once '../civicrm.config.php';
19require_once 'CRM/Core/Config.php';
20
21$config = CRM_Core_Config::singleton();
22$template = CRM_Core_Smarty::singleton();
23
24require_once 'CRM/Utils/Request.php';
a3d827a7
CW
25$cpageId = CRM_Utils_Request::retrieve('cpageId', 'Positive');
26$widgetId = CRM_Utils_Request::retrieve('widgetId', 'Positive');
27$format = CRM_Utils_Request::retrieve('format', 'Positive');
28$includePending = CRM_Utils_Request::retrieve('includePending', 'Boolean');
6a488035
TO
29
30require_once 'CRM/Contribute/BAO/Widget.php';
31
32$jsonvar = 'jsondata';
33if (isset($format)) {
34 $jsonvar .= $cpageId;
35}
36
c6a8e7a3 37$data = CRM_Contribute_BAO_Widget::getContributionPageData($cpageId, $widgetId, $includePending);
6a488035
TO
38
39$output = '
40 var ' . $jsonvar . ' = ' . json_encode($data) . ';
41';
42
fc8c5c0b
CW
43// FIXME: Not using CRM_Core_Page_AJAX::setJsHeaders because CMS is not bootstrapped
44header('Expires: ' . gmdate('D, d M Y H:i:s \G\M\T', time() + 60));
45header('Content-Type: application/javascript');
46header("Cache-Control: max-age=60, public");
47
6a488035
TO
48echo $output;
49CRM_Utils_System::civiExit();