如何在header.tpl中添加新产品的通知(Prestashop)

时间:2013-07-24 14:34:53

标签: php header notifications admin prestashop

我有一个用Prestashop开发的新网站,用户可以将自己的产品添加到我的商店,我想在管理的同一通知系统中添加一个新图标:添加新产品的Header.tpl。

现在,当我查看Header.php时,我发现了一些我不知道的变量,它们是在哪个控制器中定义的,例如“show_new_messages”

{if {$show_new_messages} == 1}
                <div id="customer_messages_notif" class="notifs">
                        <span id="customer_messages_notif_number_wrapper" class="number_wrapper">
                            <span id="customer_messages_notif_value">0</span>
                        </span>
                    <div id="customer_messages_notif_wrapper" class="notifs_wrapper">
                        <h3>{l s='Last messages'}</h3>
                        <p class="no_notifs">{l s='No new messages posted on your shop'}</p>
                        <ul id="list_customer_messages_notif"></ul>
                        <p><a href="index.php?tab=AdminCustomerThreads&amp;token={getAdminToken tab='AdminCustomerThreads'}">{l s='Show all messages'}</a></p>
                    </div>
                </div>

有人可以帮助我吗?

0 个答案:

没有答案