Magento, как определить свою тему adminhtml
Создаем свой модуль..
app/etc/modules/Itrem_Adminhtml.xml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
<?xml version="1.0" encoding="UTF-8"?> <config> <modules> <Itrem_Adminhtml> <active>true</active> <codePool>community</codePool> <depends> <Mage_Adminhtml /> </depends> </Itrem_Adminhtml> </modules> </config> |
Теперь переопределяем стандартную админку:
/app/code/community/Itrem/Adminhtml/etc/config.xml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
<?xml version="1.0" encoding="UTF-8"?> <config> <modules> <Itrem_Adminhtml> <version>1.0.0.0</version> </Itrem_Adminhtml> </modules> <stores> <admin> <design> <package> <name>default</name> </package> <theme> <default>itrem</default> </theme> </design> </admin> </stores> </config> |
Тут в секции <design> мы можем переопределить package и тему админки.
Author: | Tags: /
| Rating:
Leave a Reply