[-] BO : Rename genders images when upgrading from 1.5.0.1 to 1.5.3.1

This commit is contained in:
gRoussac
2013-03-07 10:44:59 +01:00
parent d758801752
commit 101ded7090
4 changed files with 45 additions and 3 deletions
@@ -54,14 +54,15 @@ class AdminCustomersControllerCore extends AdminController
$this->default_form_language = $this->context->language->id;
$genders = array();
$genders_icon = array('default' => 'unknown.gif');
$genders_icon = array();
$genders_icon[] = array('src' => '../genders/Unknown.jpg', 'alt' => '');
foreach (Gender::getGenders() as $gender)
{
$gender_file = 'genders/'.$gender->id.'.jpg';
if (file_exists(_PS_IMG_DIR_.$gender_file))
$genders_icon[$gender->id] = array('src' => '../'.$gender_file, 'alt' => $gender->name);
else
$genders_icon[$gender->id] = $gender->name;
$genders_icon[$gender->id] = array('src' => '../genders/Unknown.jpg', 'alt' => $gender->name);
$genders[$gender->id] = $gender->name;
}
@@ -39,7 +39,9 @@ function update_customer_default_group()
$str_old = 'define(\'_PS_DEFAULT_CUSTOMER_GROUP_\', '.(int)_PS_DEFAULT_CUSTOMER_GROUP_.');';
$str_new = 'define(\'_PS_DEFAULT_CUSTOMER_GROUP_\', '.(int)$ps_customer_group.');';
$content = str_replace($str_old, $str_new, $content);
$result = (bool)file_put_contents($filename, $content);
$result = false;
if(file_exists($filename) && is_writable($filename))
$result = (bool)@file_put_contents($filename, $content);
if($result === true && file_exists($filename) && file_exists($filename_old))
{
@unlink($filename_old);
@@ -0,0 +1,37 @@
<?php
/*
* 2007-2013 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-2013 PrestaShop SA
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
* International Registered Trademark & Property of PrestaShop SA
*/
function update_genders_images()
{
if (file_exists(_PS_IMG_DIR_.'genders/Mr.jpg'))
@rename(_PS_IMG_DIR_.'genders/Mr.jpg', _PS_IMG_DIR_.'genders/1.jpg');
if (file_exists(_PS_IMG_DIR_.'genders/Ms.jpg'))
@rename(_PS_IMG_DIR_.'genders/Ms.jpg', _PS_IMG_DIR_.'genders/2.jpg');
if (file_exists(_PS_IMG_DIR_.'genders/Miss.jpg'))
@rename(_PS_IMG_DIR_.'genders/Miss.jpg', _PS_IMG_DIR_.'genders/3.jpg');
if (file_exists(_PS_IMG_DIR_.'genders/unknown.jpg'))
@rename(_PS_IMG_DIR_.'unknown.jpg', _PS_IMG_DIR_.'Unknown.jpg');
}
+2
View File
@@ -44,3 +44,5 @@ ALTER TABLE `PREFIX_cart` ADD `mobile_theme` tinyint(1) NOT NULL DEFAULT 0 AFTER
ALTER TABLE `PREFIX_address` CHANGE `phone` `phone` varchar(32) default NULL;
ALTER TABLE `PREFIX_address` CHANGE `phone_mobile` `phone_mobile` varchar(32) default NULL;
/* PHP:update_genders_images(); */;