This repository has been archived by the owner on Mar 17, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbackwardcompatibility.php
163 lines (138 loc) · 4.39 KB
/
backwardcompatibility.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
<?php
/*
* 2007-2016 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/osl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
* @author PrestaShop SA <contact@prestashop.com>
* @copyright 2007-2016 PrestaShop SA
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
* International Registered Trademark & Property of PrestaShop SA
*/
if (!defined('_PS_VERSION_'))
exit;
class BackwardCompatibility extends Module
{
public function __construct()
{
$this->name = 'backwardcompatibility';
$this->tab = 'compatibility_tools';
$this->version = '0.8.1';
$this->author = 'PrestaShop';
$this->need_instance = 1;
parent::__construct();
$this->displayName = $this->l('Backward compatibility');
$this->description = $this->l('Improve modules compatibility.');
if ($this->active && defined('_PS_ADMIN_DIR_'))
$this->addContext();
}
public function install()
{
if (version_compare(_PS_VERSION_, '1.5') >= 0)
return false;
return parent::install();
}
public function addContext()
{
$backward_file = dirname(__FILE__).'/backward_compatibility/backward.php';
if (file_exists($backward_file))
include($backward_file);
}
public function _postProcess()
{
$results = array();
$modules = $this->getModulesList();
$local_backward = dirname(__FILE__).'/backward_compatibility/';
$files = $this->getFilesList($local_backward);
foreach ($modules as $module)
if (strcmp($module['name'], 'backwardcompatibility') != 0)
{
$module_backward = _PS_MODULE_DIR_.$module['name'].'/backward_compatibility';
if (file_exists($module_backward) && is_writable($module_backward))
$results[$module['name']] = $this->copyFiles($files, $module);
}
$this->context->smarty->assign('update_results', $results);
}
protected function getFilesList($from)
{
$iterator = new DirectoryIterator($from);
foreach ($iterator as $file)
if (!$file->isDot() && ($file->getFilename() != '.svn') && ($file->getFilename() != '.git'))
$files[] = array('filename' => $file->getFilename(), 'pathname' => $file->getPathname());
return $files;
}
protected function copyFiles($files, $module)
{
$result = true;
$module_backward = _PS_MODULE_DIR_.$module['name'].'/backward_compatibility';
foreach ($files as $file)
$result = $result && @copy($file['pathname'], $module_backward.'/'.$file['filename']);
return $result;
}
public function getContent()
{
if (Tools::getValue('submit'))
$this->_postProcess();
$this->context->smarty->assign(
array(
'modules' => $this->getModulesList(),
'image_dir' => _MODULE_DIR_.$this->name.'/img/'
)
);
return $this->context->smarty->fetch(dirname(__FILE__).'/views/templates/back/backwardcompatibility.tpl');
}
public function getModulesList()
{
$results = array();
$modules = Module::getModulesDirOnDisk();
foreach ($modules as $module)
{
$backward_directory = _PS_MODULE_DIR_.$module.'/backward_compatibility/';
$module = Module::getInstanceByName($module);
if (is_dir($backward_directory) && (strcmp($module->name, 'backwardcompatibility') != 0))
{
$ini_file = $backward_directory.'backward.ini';
$version = $this->getVersion($ini_file);
if (($handle = @fopen($ini_file, 'a+')) && (is_writable($backward_directory)))
{
@fclose($handle);
$writable = true;
}
else
$writable = false;
$results[] = array(
'name' => $module->name,
'display_name' => $module->displayName,
'version' => $version,
'writable' => $writable
);
}
}
return $results;
}
protected function getVersion($ini_file = false)
{
if (!$ini_file)
$ini_file = dirname(__FILE__).'/backward_compatibility/backward.ini';
if (file_exists($ini_file))
{
$ini_values = parse_ini_file($ini_file);
return array_shift($ini_values);
}
return false;
}
}