Merge pull request #15794 from KarinG/master
[civicrm-core.git] / bin / migrate / exportJSON.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
6b7eb9df 4 | Copyright CiviCRM LLC. All rights reserved. |
6a488035 5 | |
6b7eb9df
TO
6 | Use of this source code is governed by the AGPL 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 */
17function run() {
18 session_start();
19
20 require_once '../../civicrm.config.php';
21 require_once 'CRM/Core/Config.php';
22 $config = CRM_Core_Config::singleton();
23
24 // this does not return on failure
8db3c914 25 CRM_Utils_System::authenticateScript(TRUE);
19b2a0fe
TO
26 if (!CRM_Core_Permission::check('administer CiviCRM')) {
27 CRM_Utils_System::authenticateAbort("User does not have required permission (administer CiviCRM).\n", TRUE);
28 }
29
6a488035
TO
30 $params = array();
31
32 require_once 'CRM/Utils/Migrate/ExportJSON.php';
33 $export = new CRM_Utils_Migrate_ExportJSON($params);
34
35 $export->run('/tmp/export.json');
36}
37
38run();