4. Provide Folder structure of the Prestashop 1.7

devquora
devquora

Posted On: Feb 22, 2018

 

The folder structure of the Prestashop 1.7
├── CONTRIBUTING.md
├── README.md
├── _dev
│   ├── css
│   │   └── ...
│   ├── js
│   │   └── ...
│   ├── package.json
│   └── webpack.config.js
├── assets
│   ├── css
│   │   ├── ...
│   ├── img
│   │   └── ...
│   └── js
│       └── ...
├── composer.json
├── config
│   └── theme.yml
├── modules
│   └── ...
├── plugins
│   └── ...
├── preview.png
└── templates
    ├── _partials
    │   └── ...
    ├── catalog
    │   ├── _partials
    │   │   └── ...
    │   ├── listing
    │   │   └── ...
    │   └── ...
    ├── checkout
    │   ├── _partials
    │   │   └── ...
    │   └── ...
    ├── cms
    │   ├── _partials
    │   │   └── ...
    │   └── ...
    ├── contact.tpl
    ├── customer
    │   ├── _partials
    │   │   └── ...
    │   └── ...
    ├── errors
    │   ├── ...
    │   └── static
    │       └── ...
    ├── index.tpl
    ├── layouts
    │   ├── layout-both-columns.tpl
    │   ├── layout-content-only.tpl
    │   ├── layout-error.tpl
    │   ├── layout-full-width.tpl
    │   ├── layout-left-side-column.tpl
    │   └── layout-right-side-column.tpl
    ├── page.tpl
    └── wrapper.tpl
Source: http://developers.prestashop.com/themes/gettingstarted/index.html

    Related Questions

    Please Login or Register to leave a response.

    Related Questions

    PrestaShop Interview Questions

    What is Prestashop?

    Prestashop is free rich featured open source e-commerce solution published under Open Software License (OSL). It allows..

    PrestaShop Interview Questions

    List out some features of Prestashop?

    Below are the list features supported Prestashop:- Hundreds of Store Templates Inbuilt Website Builder Mobile Responsiv..

    PrestaShop Interview Questions

    On what architecture Prestashop is based?

    PrestaShop is based on a 3-tier architecture:Object/data. Database access is controlled through files in the “class..