//added getWidthSize and getHeightSize method in tpl thanks to @PrestaEdit
This commit is contained in:
@@ -367,6 +367,18 @@ class ImageCore extends ObjectModel
|
||||
');
|
||||
return self::$_cacheGetSize[$type];
|
||||
}
|
||||
|
||||
public static function getWidth($params, &$smarty)
|
||||
{
|
||||
$result = self::getSize($params['type']);
|
||||
return $result['width'];
|
||||
}
|
||||
|
||||
public static function getHeight($params, &$smarty)
|
||||
{
|
||||
$result = self::getSize($params['type']);
|
||||
return $result['height'];
|
||||
}
|
||||
|
||||
/**
|
||||
* Clear all images in tmp dir
|
||||
|
||||
@@ -80,6 +80,9 @@ smartyRegisterFunction($smarty, 'function', 'displayPrice', array('Tools', 'disp
|
||||
smartyRegisterFunction($smarty, 'modifier', 'convertAndFormatPrice', array('Product', 'convertAndFormatPrice')); // used twice
|
||||
smartyRegisterFunction($smarty, 'function', 'getAdminToken', array('Tools', 'getAdminTokenLiteSmarty'));
|
||||
smartyRegisterFunction($smarty, 'function', 'displayAddressDetail', array('AddressFormat', 'generateAddressSmarty'));
|
||||
smartyRegisterFunction($smarty, 'function', 'getWidthSize', array('Image', 'getWidth'));
|
||||
smartyRegisterFunction($smarty, 'function', 'getHeightSize', array('Image', 'getHeight'));
|
||||
|
||||
|
||||
function smartyDieObject($params, &$smarty)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user