Merge pull request #4814 from atif-shaikh/CRM-14199Improvement
[civicrm-core.git] / bin / cleanup42.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
39de6fd5 4 | CiviCRM version 4.6 |
6a488035 5 +--------------------------------------------------------------------+
f5721b07 6 | Copyright CiviCRM LLC (c) 2004-2014 |
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 +--------------------------------------------------------------------+
26*/
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.
31 */
32
33function initialize() {
34 session_start();
35 if (!function_exists('drush_get_context')) {
36 require_once '../civicrm.config.php';
37 }
38
39 // 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
40 $_GET['q'] = 'civicrm/upgrade/cleanup42';
41
42 require_once 'CRM/Core/Config.php';
43 $config = CRM_Core_Config::singleton();
44 if (php_sapi_name() != "cli") {
45 // this does not return on failure
46 CRM_Utils_System::authenticateScript(TRUE);
47 }
48}
49
50function run() {
51 initialize();
52
53 $fh = fopen('php://output', 'w');
54 $rows = CRM_Upgrade_Incremental_php_FourTwo::deleteInvalidPairs();
55
56 if ( !empty($rows)) {
57 echo "The following records have been processed. If action = Un-linked, that membership has been disconnected from the contribution record.\n";
58 echo "Contact ID, ContributionID, Contribution Status, MembershipID, Membership Type, Start Date, End Date, Membership Status, Action \n";
59 }
60 else {
61 echo "Could not find any records to process.\n";
62 }
63
64 foreach ( $rows as $row ) {
65 fputcsv($fh, $row);
66 }
67}
68
69run();