13 lines
237 B
PHP
13 lines
237 B
PHP
|
|
||
|
<?php
|
||
|
|
||
|
if (!defined('_PS_VERSION_')) {
|
||
|
exit;
|
||
|
}
|
||
|
|
||
|
class ProductCommentsOverride extends ProductComments {
|
||
|
|
||
|
public function hookDisplayBottomColumnProduct($params){
|
||
|
return $this->hookDisplayRightColumnProduct($params);
|
||
|
}
|
||
|
}
|