Не, не помогает. При попытке вставить во вьюху товара строку
$catimg = $this->diafan->_images->get ($result["cat_id"]);
выдает простыню вида
Missing argument 2 for Images_inc::get(), called in D:\OpenServer\domains\zoo\custom\my\modules\shop\views\shop.view.id.php on line 38 and defined D:\OpenServer\domains\zoo\custom\my\modules\images\images.inc.php:58
Missing argument 3 for Images_inc::get(), called in D:\OpenServer\domains\zoo\custom\my\modules\shop\views\shop.view.id.php on line 38 and defined D:\OpenServer\domains\zoo\custom\my\modules\images\images.inc.php:58
Missing argument 4 for Images_inc::get(), called in D:\OpenServer\domains\zoo\custom\my\modules\shop\views\shop.view.id.php on line 38 and defined D:\OpenServer\domains\zoo\custom\my\modules\images\images.inc.php:58
Missing argument 5 for Images_inc::get(), called in D:\OpenServer\domains\zoo\custom\my\modules\shop\views\shop.view.id.php on line 38 and defined D:\OpenServer\domains\zoo\custom\my\modules\images\images.inc.php:58
Missing argument 6 for Images_inc::get(), called in D:\OpenServer\domains\zoo\custom\my\modules\shop\views\shop.view.id.php on line 38 and defined D:\OpenServer\domains\zoo\custom\my\modules\images\images.inc.php:58
Undefined variable: element_type D:\OpenServer\domains\zoo\custom\my\modules\images\images.inc.php:61
Некорректно задан тип элемента. D:\OpenServer\domains\zoo\custom\my\modules\images\images.inc.php:548
ob_start(): output handler 'ob_gzhandler' cannot be used twice
ob_start(): failed to create buffer
Если тупо скопипастить
get (string $variation, integer $element_id, string $module_name, string $element_type, integer $site_id, string $alt, [integer $param_id = 0], [integer $count = 0], [string $link_to = ''], [string $tmpcode = ''])
То начинает ругаться, что не хватает то ли кавычек, то ли скобок; если расставить скобки вокруг указателей типа переменных (получается такое)
$catimg = $this->diafan->_images->get ((string) $variation, (integer) $element_id, (string) $module_name, (string) $element_type, (integer) $site_id, (string) $alt, [(integer) $param_id = 0], [(integer) $count = 0], [(string) $link_to = ''], [(string) $tmpcode = '']);
То вываливает простыню
Undefined variable: variation D:\OpenServer\domains\zoo\custom\my\modules\shop\views\shop.view.id.php:38
Undefined variable: element_id D:\OpenServer\domains\zoo\custom\my\modules\shop\views\shop.view.id.php:38
Undefined variable: module_name D:\OpenServer\domains\zoo\custom\my\modules\shop\views\shop.view.id.php:38
Undefined variable: element_type D:\OpenServer\domains\zoo\custom\my\modules\shop\views\shop.view.id.php:38
Undefined variable: site_id D:\OpenServer\domains\zoo\custom\my\modules\shop\views\shop.view.id.php:38
Undefined variable: alt D:\OpenServer\domains\zoo\custom\my\modules\shop\views\shop.view.id.php:38
Некорректно задан тип элемента. D:\OpenServer\domains\zoo\custom\my\modules\images\images.inc.php:548
ob_start(): output handler 'ob_gzhandler' cannot be used twice
ob_start(): failed to create buffer
Смысл которой сводится к тому, как я понял, что "кто все эти переменные?".
В общем, не помогло пока.