I'm working with custom module which should show latest (defined count) added attachments. I see this piece of code in class/Attachment.php
public static function getAttachments($id_lang, $id_product, $include = true)
{
return Db::getInstance()->executeS('
SELECT *
FROM '._DB_PREFIX_.'attachment a
LEFT JOIN '._DB_PREFIX_.'attachment_lang al
ON (a.id_attachment = al.id_attachment AND al.id_lang = '.(int)$id_lang.')
WHERE a.id_attachment '.($include ? 'IN' : 'NOT IN').' (
SELECT pa.id_attachment
FROM '._DB_PREFIX_.'product_attachment pa
WHERE id_product = '.(int)$id_product.'
)'
);
}
So far i know i dont need this $include check so i need to make custom static function like getAllattachments or new class? Any ideas much appreciated.
In module i have this
public function hookLeftColumn($params)
{
if (!$this->isCached('blockattachment.tpl', $this->getCacheId()))
{
$attachments = Attachment::getAttachments();
foreach ($attachments as &$attachment)
{
$attachment['image'] = $this->context->language->iso_code.'-default';
if (file_exists(_PS_MANU_IMG_DIR_.$attachment['id_manufacturer'].'-'.ImageType::getFormatedName('medium').'.jpg'))
$attachment['image'] = $attachment['id_manufacturer'];
}
$this->smarty->assign(array(
'attachments' => $attachments,
'text_list' => Configuration::get('ATTACHMENT_DISPLAY_TEXT'),
'text_list_nb' => Configuration::get('ATTACHMENT_DISPLAY_TEXT_NB'),
'form_list' => Configuration::get('ATTACHMENT_DISPLAY_FORM'),
'display_link_manufacturer' => Configuration::get('PS_DISPLAY_SUPPLIERS'),
));
}
return $this->display(__FILE__, 'blockattachment.tpl', $this->getCacheId());
}
and in tpl this one
{if $attachments}
{if $text_list}
<ul class="bullet">
{foreach from=$attachments item=attachment name=attachment_list}
{if $smarty.foreach.attachment_list.iteration <= $text_list_nb}
<li><a href="{$link->getAttachmentLink($attachment.id_attachment, $attachment.link_rewrite)|escape:'html'}" title="{l s='More about %s' sprintf=[$attachment.name] mod='blockattachment'}">{$attachment.name|escape:'html':'UTF-8'}</a></li>
{/if}
{/foreach}
</ul>
{/if}
{else}
<p>{l s='No new attachments' mod='blockattachment'}</p>
{/if}
This all from blockmanufacturer module which was duplicated with changed GetManufacturer function.