Merge remote-tracking branch 'upstream/4.4' into 4.4-master-2013-11-18-19-02-17
[civicrm-core.git] / CRM / Upgrade / Incremental / php / FourFive.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.4 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2013 |
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. |
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 along with this program; if not, contact CiviCRM LLC |
21 | at info[AT]civicrm[DOT]org. If you have questions about the |
22 | GNU Affero General Public License or the licensing of CiviCRM, |
23 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
24 +--------------------------------------------------------------------+
25 */
26
27 /**
28 *
29 * @package CRM
30 * @copyright CiviCRM LLC (c) 2004-2013
31 * $Id$
32 *
33 */
34 class CRM_Upgrade_Incremental_php_FourFive {
35 const BATCH_SIZE = 5000;
36
37 function verifyPreDBstate(&$errors) {
38 return TRUE;
39 }
40
41 /**
42 * Compute any messages which should be displayed beforeupgrade
43 *
44 * Note: This function is called iteratively for each upcoming
45 * revision to the database.
46 *
47 * @param $postUpgradeMessage string, alterable
48 * @param $rev string, a version number, e.g. '4.4.alpha1', '4.4.beta3', '4.4.0'
49 * @return void
50 */
51 function setPreUpgradeMessage(&$preUpgradeMessage, $rev, $currentVer = NULL) {
52 }
53
54 /**
55 * Compute any messages which should be displayed after upgrade
56 *
57 * @param $postUpgradeMessage string, alterable
58 * @param $rev string, an intermediate version; note that setPostUpgradeMessage is called repeatedly with different $revs
59 * @return void
60 */
61 function setPostUpgradeMessage(&$postUpgradeMessage, $rev) {
62 }
63
64 function upgrade_4_5_alpha1($rev) {
65 // task to process sql
66 $this->addTask(ts('Upgrade DB to 4.5.alpha1: SQL'), 'task_4_5_x_runSql', $rev);
67
68 $this->addTask(ts('Set default for Individual name fields configuration'), 'addNameFieldOptions');
69
70 return TRUE;
71 }
72
73 /**
74 * Add defaults for the newly introduced name fields configuration in 'contact_edit_options' setting
75 *
76 * @return bool TRUE for success
77 */
78 static function addNameFieldOptions(CRM_Queue_TaskContext $ctx) {
79 $query = "SELECT `value` FROM `civicrm_setting` WHERE `group_name` = 'CiviCRM Preferences' AND `name` = 'contact_edit_options'";
80 $dao = CRM_Core_DAO::executeQuery($query);
81 $dao->fetch();
82 $oldValue = unserialize($dao->value);
83
84 $newValue = $oldValue . '12\ 114\ 115\ 116\ 117\ 1';
85
86 $query = "UPDATE `civicrm_setting` SET `value` = %1 WHERE `group_name` = 'CiviCRM Preferences' AND `name` = 'contact_edit_options'";
87 $params = array(1 => array(serialize($newValue), 'String'));
88 CRM_Core_DAO::executeQuery($query, $params);
89
90 return TRUE;
91 }
92
93 /**
94 * (Queue Task Callback)
95 */
96 static function task_4_5_x_runSql(CRM_Queue_TaskContext $ctx, $rev) {
97 $upgrade = new CRM_Upgrade_Form();
98 $upgrade->processSQL($rev);
99
100 return TRUE;
101 }
102
103 /**
104 * Syntatic sugar for adding a task which (a) is in this class and (b) has
105 * a high priority.
106 *
107 * After passing the $funcName, you can also pass parameters that will go to
108 * the function. Note that all params must be serializable.
109 */
110 protected function addTask($title, $funcName) {
111 $queue = CRM_Queue_Service::singleton()->load(array(
112 'type' => 'Sql',
113 'name' => CRM_Upgrade_Form::QUEUE_NAME,
114 ));
115
116 $args = func_get_args();
117 $title = array_shift($args);
118 $funcName = array_shift($args);
119 $task = new CRM_Queue_Task(
120 array(get_class($this), $funcName),
121 $args,
122 $title
123 );
124 $queue->createItem($task, array('weight' => -1));
125 }
126 }