├── .gitignore ├── README.md ├── app ├── code │ └── community │ │ └── MKleine │ │ └── Categorymerge │ │ ├── Block │ │ └── Catalog │ │ │ └── Category │ │ │ └── Tab │ │ │ └── Categorymerge.php │ │ ├── Helper │ │ └── Data.php │ │ ├── Model │ │ ├── Merge.php │ │ └── Observer.php │ │ ├── controllers │ │ └── Catalog │ │ │ └── CategoryController.php │ │ └── etc │ │ └── config.xml ├── design │ └── adminhtml │ │ └── default │ │ └── default │ │ └── layout │ │ └── mkleine │ │ └── category_merge.xml ├── etc │ └── modules │ │ └── MKleine_Categorymerge.xml └── locale │ ├── de_DE │ └── MKleine_Categorymerge.csv │ ├── en_US │ └── MKleine_Categorymerge.csv │ └── ru_RU │ └── MKleine_Categorymerge.csv ├── composer.json └── modman /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klein0r/magento-category-merge/HEAD/README.md -------------------------------------------------------------------------------- /app/code/community/MKleine/Categorymerge/Block/Catalog/Category/Tab/Categorymerge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klein0r/magento-category-merge/HEAD/app/code/community/MKleine/Categorymerge/Block/Catalog/Category/Tab/Categorymerge.php -------------------------------------------------------------------------------- /app/code/community/MKleine/Categorymerge/Helper/Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klein0r/magento-category-merge/HEAD/app/code/community/MKleine/Categorymerge/Helper/Data.php -------------------------------------------------------------------------------- /app/code/community/MKleine/Categorymerge/Model/Merge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klein0r/magento-category-merge/HEAD/app/code/community/MKleine/Categorymerge/Model/Merge.php -------------------------------------------------------------------------------- /app/code/community/MKleine/Categorymerge/Model/Observer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klein0r/magento-category-merge/HEAD/app/code/community/MKleine/Categorymerge/Model/Observer.php -------------------------------------------------------------------------------- /app/code/community/MKleine/Categorymerge/controllers/Catalog/CategoryController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klein0r/magento-category-merge/HEAD/app/code/community/MKleine/Categorymerge/controllers/Catalog/CategoryController.php -------------------------------------------------------------------------------- /app/code/community/MKleine/Categorymerge/etc/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klein0r/magento-category-merge/HEAD/app/code/community/MKleine/Categorymerge/etc/config.xml -------------------------------------------------------------------------------- /app/design/adminhtml/default/default/layout/mkleine/category_merge.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klein0r/magento-category-merge/HEAD/app/design/adminhtml/default/default/layout/mkleine/category_merge.xml -------------------------------------------------------------------------------- /app/etc/modules/MKleine_Categorymerge.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klein0r/magento-category-merge/HEAD/app/etc/modules/MKleine_Categorymerge.xml -------------------------------------------------------------------------------- /app/locale/de_DE/MKleine_Categorymerge.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klein0r/magento-category-merge/HEAD/app/locale/de_DE/MKleine_Categorymerge.csv -------------------------------------------------------------------------------- /app/locale/en_US/MKleine_Categorymerge.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klein0r/magento-category-merge/HEAD/app/locale/en_US/MKleine_Categorymerge.csv -------------------------------------------------------------------------------- /app/locale/ru_RU/MKleine_Categorymerge.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klein0r/magento-category-merge/HEAD/app/locale/ru_RU/MKleine_Categorymerge.csv -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klein0r/magento-category-merge/HEAD/composer.json -------------------------------------------------------------------------------- /modman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klein0r/magento-category-merge/HEAD/modman --------------------------------------------------------------------------------