This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{foreach from=$manufacturers item=manufacturer name=manufacturer_list} | |
{if isset($currentLetter) && $currentLetter != $manufacturer.name|substr:0:1} | |
</ul> | |
</div> | |
{/if} | |
{if !isset($currentLetter) OR isset($currentLetter) && $currentLetter != $manufacturer.name|substr:0:1} | |
{assign var=currentLetter value=$manufacturer.name|substr:0:1} | |
<div id="content-for-{$manufacturer.name|substr:0:1}"> | |
<ul> | |
{/if} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class Link extends LinkCore | |
{ | |
/** | |
* Returns a link to a product image for display | |
* Note: the new image filesystem stores product images in subdirectories of img/p/ | |
* | |
* @param string $name rewrite link of the image | |
* @param string $ids id part of the image filename - can be "id_product-id_image" (legacy support, recommended) or "id_image" (new) | |
* @param string $type |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class AdminXXXController extends AdminXXXControllerCore | |
{ | |
public function renderForm() | |
{ | |
$this->multiple_fieldsets = true; | |
$this->fields_form = array( | |
array( | |
'form' => array( |
NewerOlder