150 lines
4.0 KiB
PHP
Executable File
150 lines
4.0 KiB
PHP
Executable File
<?php
|
|
/*
|
|
* 2007-2011 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-2011 PrestaShop SA
|
|
* @version Release: $Revision: 7540 $
|
|
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
|
* International Registered Trademark & Property of PrestaShop SA
|
|
*/
|
|
|
|
class ImageTypeCore extends ObjectModel
|
|
{
|
|
public $id;
|
|
|
|
/** @var string Name */
|
|
public $name;
|
|
|
|
/** @var integer Width */
|
|
public $width;
|
|
|
|
/** @var integer Height */
|
|
public $height;
|
|
|
|
/** @var boolean Apply to products */
|
|
public $products;
|
|
|
|
/** @var integer Apply to categories */
|
|
public $categories;
|
|
|
|
/** @var integer Apply to manufacturers */
|
|
public $manufacturers;
|
|
|
|
/** @var integer Apply to suppliers */
|
|
public $suppliers;
|
|
|
|
/** @var integer Apply to scenes */
|
|
public $scenes;
|
|
|
|
/** @var integer Apply to store */
|
|
public $stores;
|
|
|
|
protected $fieldsRequired = array('name', 'width', 'height');
|
|
protected $fieldsValidate = array(
|
|
'name' => 'isImageTypeName',
|
|
'width' => 'isImageSize',
|
|
'height' => 'isImageSize',
|
|
'categories' => 'isBool',
|
|
'products' => 'isBool',
|
|
'manufacturers' => 'isBool',
|
|
'suppliers' => 'isBool',
|
|
'scenes' => 'isBool',
|
|
'stores' => 'isBool'
|
|
);
|
|
protected $fieldsSize = array('name' => 16);
|
|
|
|
protected $table = 'image_type';
|
|
protected $identifier = 'id_image_type';
|
|
|
|
/**
|
|
* @var array Image types cache
|
|
*/
|
|
protected static $images_types_cache = array();
|
|
|
|
protected $webserviceParameters = array();
|
|
|
|
public function getFields()
|
|
{
|
|
parent::validateFields();
|
|
$fields['name'] = pSQL($this->name);
|
|
$fields['width'] = (int)($this->width);
|
|
$fields['height'] = (int)($this->height);
|
|
$fields['products'] = (int)($this->products);
|
|
$fields['categories'] = (int)($this->categories);
|
|
$fields['manufacturers'] = (int)($this->manufacturers);
|
|
$fields['suppliers'] = (int)($this->suppliers);
|
|
$fields['scenes'] = (int)($this->scenes);
|
|
$fields['stores'] = (int)($this->stores);
|
|
return $fields;
|
|
}
|
|
|
|
/**
|
|
* Returns image type definitions
|
|
*
|
|
* @param string|null Image type
|
|
* @return array Image type definitions
|
|
*/
|
|
public static function getImagesTypes($type = NULL)
|
|
{
|
|
if (!isset(self::$images_types_cache[$type]))
|
|
{
|
|
if (!empty($type))
|
|
$where = 'WHERE ' . pSQL($type) . ' = 1 ';
|
|
else
|
|
$where = '';
|
|
|
|
$query = 'SELECT * FROM `'._DB_PREFIX_.'image_type`'.$where.'ORDER BY `name` ASC';
|
|
self::$images_types_cache[$type] = Db::getInstance()->ExecuteS($query);
|
|
}
|
|
|
|
return self::$images_types_cache[$type];
|
|
}
|
|
|
|
/**
|
|
* Check if type already is already registered in database
|
|
*
|
|
* @param string $typeName Name
|
|
* @return integer Number of results found
|
|
*/
|
|
public static function typeAlreadyExists($typeName)
|
|
{
|
|
if (!Validate::isImageTypeName($typeName))
|
|
die(Tools::displayError());
|
|
|
|
Db::getInstance()->ExecuteS('
|
|
SELECT `id_image_type`
|
|
FROM `'._DB_PREFIX_.'image_type`
|
|
WHERE `name` = \''.pSQL($typeName).'\'');
|
|
|
|
return Db::getInstance()->NumRows();
|
|
}
|
|
|
|
/**
|
|
* Finds image type definition by name and type
|
|
* @param string $name
|
|
* @param string $type
|
|
*/
|
|
public static function getByNameNType($name, $type)
|
|
{
|
|
return Db::getInstance()->getRow('SELECT `id_image_type`, `name`, `width`, `height`, `products`, `categories`, `manufacturers`, `suppliers`, `scenes` FROM `'._DB_PREFIX_.'image_type` WHERE `name` = \''.pSQL($name).'\' AND `'.pSQL($type).'` = 1');
|
|
}
|
|
|
|
}
|