https://github.com/jeroenboersma/jboersma_design
Magento Design depencies
https://github.com/jeroenboersma/jboersma_design
Last synced: 3 months ago
JSON representation
Magento Design depencies
- Host: GitHub
- URL: https://github.com/jeroenboersma/jboersma_design
- Owner: JeroenBoersma
- Created: 2014-04-30T10:09:59.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2014-04-30T12:26:39.000Z (about 11 years ago)
- Last Synced: 2025-02-10T00:47:00.351Z (4 months ago)
- Language: PHP
- Size: 172 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
Magento Design dependencies
============================Add depencies on packages you have downloaded from the internet.
It will automaticly add the Enterprise package if you use the Enterprise version of Magento.Other dependencies you can configure in the Magento Configuration.
Add these dependencies in System / Design / Dependencies in the backend of Magento.The problem
-----------You normally would need to copy everything from your downloaded or Enterprise package
to your site package.*Enterprise example*
Install store package
- /app/design/frontend/store/default
- /app/design/frontend/base/defaultWith this module, enterprise will be added
- /app/design/frontend/store/default
- /app/design/frontend/enterprise/default
- /app/design/frontend/base/default*External package example*
Download a external package(for example from Themeforest), install that package.
Normally you would need to copy the full package if you don't want to touch the original code.With this module, you can just copy the files needed and add a dependency on the external package.
The result could be:
- /app/design/frontend/store/view
- /app/design/frontend/store/default
- /app/design/frontend/external/default <-- Read in the downloaded package
- /app/design/frontend/enterprise/default <-- when running Enterprise
- /app/design/frontend/base/default*Module package example*
If you are creating modules, people move this into base/default.
Now you can create a package "modules" and add the dependency.The result could be:
- /app/design/frontend/store/default
- /app/design/frontend/modules/default
- /app/design/frontend/base/defaultOr:
- /app/design/frontend/store/default
- /app/design/frontend/external/default <-- External package
- /app/design/frontend/modules/default <-- modules
- /app/design/frontend/enterprise/default <-- If you are using Enterprise
- /app/design/frontend/base/default