CRM-14239 - Fix undefined variable notice
[civicrm-core.git] / bin / cleanup42.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
39de6fd5 4 | CiviCRM version 4.6 |
6a488035 5 +--------------------------------------------------------------------+
e7112fa7 6 | Copyright CiviCRM LLC (c) 2004-2015 |
6a488035
TO
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
d25dd0ee 26 */
6a488035
TO
27
28/**
29 * A PHP script which deletes extraneous civicrm_membership_payment rows
30 * in order to correct the condition where a contribution row is linked to > 1 membership.
a9e80afc 31 */
6a488035 32
608e6658 33/**
34 * Initialization
35 */
6a488035
TO
36function initialize() {
37 session_start();
38 if (!function_exists('drush_get_context')) {
39 require_once '../civicrm.config.php';
40 }
41
42 // hack to make code think its an upgrade mode, and not do lot of initialization which breaks the code due to new 4.2 schema
43 $_GET['q'] = 'civicrm/upgrade/cleanup42';
44
45 require_once 'CRM/Core/Config.php';
46 $config = CRM_Core_Config::singleton();
47 if (php_sapi_name() != "cli") {
48 // this does not return on failure
49 CRM_Utils_System::authenticateScript(TRUE);
50 }
51}
52
53function run() {
54 initialize();
55
56fdfc52 56 $fh = fopen('php://output', 'w');
6a488035
TO
57 $rows = CRM_Upgrade_Incremental_php_FourTwo::deleteInvalidPairs();
58
481a74f4 59 if (!empty($rows)) {
6a488035
TO
60 echo "The following records have been processed. If action = Un-linked, that membership has been disconnected from the contribution record.\n";
61 echo "Contact ID, ContributionID, Contribution Status, MembershipID, Membership Type, Start Date, End Date, Membership Status, Action \n";
62 }
63 else {
64 echo "Could not find any records to process.\n";
65 }
66
481a74f4 67 foreach ($rows as $row) {
6a488035
TO
68 fputcsv($fh, $row);
69 }
70}
71
72run();