21 lines
459 B
PHP
21 lines
459 B
PHP
<?php
|
|
if (!defined('_PS_VERSION_')) {
|
|
exit;
|
|
}
|
|
class AdminImagesController extends AdminImagesControllerCore
|
|
{
|
|
/*
|
|
* module: anblog
|
|
* date: 2024-08-21 16:23:42
|
|
* version: 3.4.15
|
|
*/
|
|
public function initContent()
|
|
{
|
|
if ($this->display != 'edit' && $this->display != 'add') {
|
|
$module = Module::getInstanceByName('anblog');
|
|
$module->regenerateThumbs();
|
|
}
|
|
parent::initContent();
|
|
}
|
|
}
|