I need to achieve this
{{skin url="img/logo.png" _area="frontend" _package="my-package" _theme="default"}}
via PHP. The reason is, rewriting email templates and extracting common templates of headers and footers into PHP part, leaving only text and simple HTML of emails in Magento's admin panel.
Asked
Active
Viewed 34 times
1
Marecky
- 113
- 6
-
Which is your Magento version? – Khoa TruongDinh Dec 13 '16 at 15:46
-
Version is 1.12 – Marecky Dec 14 '16 at 06:38
1 Answers
3
In a theme template you could use for example
$this->getSkinUrl('img/logo.png', [
'_area' => 'frontend',
'_package' => 'my-package',
'_theme' => 'default',
]);
fmrng
- 3,398
- 19
- 19