File and folder structure
Module structure in OXID eShop
All modules exist in the OXID eShop modules directory.
- To separate modules it is:
Recommended to group them by a unique vendor directory
Required to give them a unique id.
Required to store module files in a directory with a name equal to module_id.
So the final structure of a module should be:
.
└── source
└── modules
└── <vendor>
└── <module_id>
├── composer.json
├── Controller
├── metadata.php
├── Model
├── README.md
├── ...
└── tests
Module structure in module repository
In the repository it is recommended to keep module files without vendor or module directory. This allows to clone and use module directly in OXID eShop modules directory. Possible structure of the module in the repository:
.
├── composer.json
├── Controller
├── metadata.php
├── Model
├── README.md
├── ...
└── tests
Module transformation
OXID Composer Plugin could be used in order to create vendor and module_id directories
Language files
Language files are not specified inside the metadata.php but searched by naming conventions inside the module directory.
Example language file:
<?php
$sLangName = 'English';
$aLang = array(
'charset' => 'UTF-8',
'VENDORMYMODULEIDLANGUAGEKEY' => 'my translation of VENDORMYMODULEIDLANGUAGEKEY',
);
UTF-8 is the only possible charset for language files as the OXID eShop runs by default with UTF-8 itself and does not convert charsets. If you use any other charset for your language files, you have to use html codes for special characters.
Frontend
Translation files can be placed in the folders
Application/translations
application/translations
translations
inside your module directory.
If you have a folder Application
or application
inside your module, translation files are searched
inside this directory. Otherwise, they are searched inside the folder translations
.
Inside these directory, you have to create a directory for the specific language, e.g. de
or en
.
Inside the language specific, directory, the filename has to be _lang.php.
Example:
.
└── source
└── modules
└── <vendor>
└── <module_id>
└── translations
└── de
└── myvendormymodule_de_lang.php
└── en
└── myvendormymodule_en_lang.php
Admin
Translation files can be placed in
Application/views/admin/
application/views/admin/
views/admin/
Example:
.
└── source
└── modules
└── <vendor>
└── <module_id>
└── Application
└── views
└── admin
└── de
└── module_options.php
└── myvendormymodule_admin_de_lang.php
└── en
└── module_options.php
└── myvendormymodule_admin_en_lang.php
Note
In order to use translation files in your module, you have to specify at least one class inside the section extend
in your metadata.php.
Custom JavaScript / CSS / Images
Create out/src/js/, out/src/img/ and out/src/css/ directories so it fit Shop structure and would be easier to debug for other people. You can use something like this to include your scripts in to templates:
[{oxscript include=$oViewConf->getModuleUrl("{moduleID}", "out/src/js/{js_fle_name}.js")}]
Vendor directory
All modules can be placed not directly in shop modules directory, but also in vendor directory. In this case the vendormetadata.php
file must be placed in the vendor directory root. If the modules handler finds this file on scanning the shop modules directory, it knows that this is vendor directory and all subdirectories in this directory should be scanned also. Currently the vendormetadata.php
file can be empty, in future here will be added some additional information about the module vendor.
Vendor directory structure example:
modules
oxid
module1
module1 files
module2
module2 files
module3
module3 files
In case of using a vendor directory you still need to describe file paths relatively to the modules directory:
'extend' => array(
'some_class' => 'oxid/module1/my_class'
),
'templates' => array(
'my_template.tpl' => 'oxid/module1/my_template.tpl'
)