├── .gitignore ├── .travis.yml ├── README.md ├── app ├── code │ └── community │ │ └── Hackathon │ │ └── Layeredlanding │ │ ├── Block │ │ ├── Adminhtml │ │ │ ├── Layeredlanding.php │ │ │ └── Layeredlanding │ │ │ │ ├── Edit.php │ │ │ │ ├── Edit │ │ │ │ ├── Form.php │ │ │ │ ├── Renderer │ │ │ │ │ └── Attributes.php │ │ │ │ ├── Tab │ │ │ │ │ ├── Conditions.php │ │ │ │ │ ├── Content.php │ │ │ │ │ └── Design.php │ │ │ │ └── Tabs.php │ │ │ │ ├── Grid.php │ │ │ │ └── Renderers │ │ │ │ ├── Categoryids.php │ │ │ │ └── Storeids.php │ │ ├── Canonical.php │ │ ├── Layer │ │ │ └── State.php │ │ ├── Leftnav.php │ │ └── Widget │ │ │ └── Link.php │ │ ├── Controller │ │ └── Router.php │ │ ├── Helper │ │ └── Data.php │ │ ├── Model │ │ ├── Attributes.php │ │ ├── Catalog │ │ │ └── Layer │ │ │ │ └── Filter │ │ │ │ └── Item.php │ │ ├── Design.php │ │ ├── Layeredlanding.php │ │ ├── Mysql4 │ │ │ ├── Attributes.php │ │ │ ├── Attributes │ │ │ │ └── Collection.php │ │ │ ├── Layeredlanding.php │ │ │ └── Layeredlanding │ │ │ │ └── Collection.php │ │ ├── Observer.php │ │ ├── Options │ │ │ ├── Attributes.php │ │ │ ├── Boolean.php │ │ │ ├── Categories.php │ │ │ ├── Landingpages.php │ │ │ └── Layout.php │ │ └── Sitemap.php │ │ ├── Test │ │ ├── ConfigTest.php │ │ └── Model │ │ │ └── Observer.php │ │ ├── controllers │ │ ├── Adminhtml │ │ │ └── LayeredlandingController.php │ │ └── IndexController.php │ │ ├── etc │ │ ├── adminhtml.xml │ │ ├── config.xml │ │ ├── system.xml │ │ └── widget.xml │ │ └── sql │ │ └── layeredlanding_setup │ │ ├── mysql4-install-0.1.0.php │ │ ├── mysql4-upgrade-0.1.0-0.2.0.php │ │ ├── mysql4-upgrade-0.2.0-0.3.0.php │ │ ├── mysql4-upgrade-0.3.0-0.4.0.php │ │ └── mysql4-upgrade-0.4.0-0.5.0.php ├── design │ ├── adminhtml │ │ └── default │ │ │ └── default │ │ │ ├── layout │ │ │ └── layeredlanding.xml │ │ │ └── template │ │ │ └── layeredlanding │ │ │ └── attributes.phtml │ └── frontend │ │ └── base │ │ └── default │ │ ├── layout │ │ └── layeredlanding.xml │ │ └── template │ │ └── layeredlanding │ │ ├── canonical.phtml │ │ ├── catalog │ │ └── layer │ │ │ ├── state.phtml │ │ │ └── view.phtml │ │ └── leftnav.phtml ├── etc │ └── modules │ │ └── Hackathon_Layeredlanding.xml └── locale │ ├── en_US │ └── Hackathon_Layeredlanding.csv │ └── nl_NL │ └── Hackathon_Layeredlanding.csv ├── composer.json └── modman /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/layered-landing/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/layered-landing/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/layered-landing/HEAD/README.md -------------------------------------------------------------------------------- /app/code/community/Hackathon/Layeredlanding/Block/Adminhtml/Layeredlanding.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/layered-landing/HEAD/app/code/community/Hackathon/Layeredlanding/Block/Adminhtml/Layeredlanding.php -------------------------------------------------------------------------------- /app/code/community/Hackathon/Layeredlanding/Block/Adminhtml/Layeredlanding/Edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/layered-landing/HEAD/app/code/community/Hackathon/Layeredlanding/Block/Adminhtml/Layeredlanding/Edit.php -------------------------------------------------------------------------------- /app/code/community/Hackathon/Layeredlanding/Block/Adminhtml/Layeredlanding/Edit/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/layered-landing/HEAD/app/code/community/Hackathon/Layeredlanding/Block/Adminhtml/Layeredlanding/Edit/Form.php -------------------------------------------------------------------------------- /app/code/community/Hackathon/Layeredlanding/Block/Adminhtml/Layeredlanding/Edit/Renderer/Attributes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/layered-landing/HEAD/app/code/community/Hackathon/Layeredlanding/Block/Adminhtml/Layeredlanding/Edit/Renderer/Attributes.php -------------------------------------------------------------------------------- /app/code/community/Hackathon/Layeredlanding/Block/Adminhtml/Layeredlanding/Edit/Tab/Conditions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/layered-landing/HEAD/app/code/community/Hackathon/Layeredlanding/Block/Adminhtml/Layeredlanding/Edit/Tab/Conditions.php -------------------------------------------------------------------------------- /app/code/community/Hackathon/Layeredlanding/Block/Adminhtml/Layeredlanding/Edit/Tab/Content.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/layered-landing/HEAD/app/code/community/Hackathon/Layeredlanding/Block/Adminhtml/Layeredlanding/Edit/Tab/Content.php -------------------------------------------------------------------------------- /app/code/community/Hackathon/Layeredlanding/Block/Adminhtml/Layeredlanding/Edit/Tab/Design.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/layered-landing/HEAD/app/code/community/Hackathon/Layeredlanding/Block/Adminhtml/Layeredlanding/Edit/Tab/Design.php -------------------------------------------------------------------------------- /app/code/community/Hackathon/Layeredlanding/Block/Adminhtml/Layeredlanding/Edit/Tabs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/layered-landing/HEAD/app/code/community/Hackathon/Layeredlanding/Block/Adminhtml/Layeredlanding/Edit/Tabs.php -------------------------------------------------------------------------------- /app/code/community/Hackathon/Layeredlanding/Block/Adminhtml/Layeredlanding/Grid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/layered-landing/HEAD/app/code/community/Hackathon/Layeredlanding/Block/Adminhtml/Layeredlanding/Grid.php -------------------------------------------------------------------------------- /app/code/community/Hackathon/Layeredlanding/Block/Adminhtml/Layeredlanding/Renderers/Categoryids.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/layered-landing/HEAD/app/code/community/Hackathon/Layeredlanding/Block/Adminhtml/Layeredlanding/Renderers/Categoryids.php -------------------------------------------------------------------------------- /app/code/community/Hackathon/Layeredlanding/Block/Adminhtml/Layeredlanding/Renderers/Storeids.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/layered-landing/HEAD/app/code/community/Hackathon/Layeredlanding/Block/Adminhtml/Layeredlanding/Renderers/Storeids.php -------------------------------------------------------------------------------- /app/code/community/Hackathon/Layeredlanding/Block/Canonical.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/layered-landing/HEAD/app/code/community/Hackathon/Layeredlanding/Block/Canonical.php -------------------------------------------------------------------------------- /app/code/community/Hackathon/Layeredlanding/Block/Layer/State.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/layered-landing/HEAD/app/code/community/Hackathon/Layeredlanding/Block/Layer/State.php -------------------------------------------------------------------------------- /app/code/community/Hackathon/Layeredlanding/Block/Leftnav.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/layered-landing/HEAD/app/code/community/Hackathon/Layeredlanding/Block/Leftnav.php -------------------------------------------------------------------------------- /app/code/community/Hackathon/Layeredlanding/Block/Widget/Link.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/layered-landing/HEAD/app/code/community/Hackathon/Layeredlanding/Block/Widget/Link.php -------------------------------------------------------------------------------- /app/code/community/Hackathon/Layeredlanding/Controller/Router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/layered-landing/HEAD/app/code/community/Hackathon/Layeredlanding/Controller/Router.php -------------------------------------------------------------------------------- /app/code/community/Hackathon/Layeredlanding/Helper/Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/layered-landing/HEAD/app/code/community/Hackathon/Layeredlanding/Helper/Data.php -------------------------------------------------------------------------------- /app/code/community/Hackathon/Layeredlanding/Model/Attributes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/layered-landing/HEAD/app/code/community/Hackathon/Layeredlanding/Model/Attributes.php -------------------------------------------------------------------------------- /app/code/community/Hackathon/Layeredlanding/Model/Catalog/Layer/Filter/Item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/layered-landing/HEAD/app/code/community/Hackathon/Layeredlanding/Model/Catalog/Layer/Filter/Item.php -------------------------------------------------------------------------------- /app/code/community/Hackathon/Layeredlanding/Model/Design.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/layered-landing/HEAD/app/code/community/Hackathon/Layeredlanding/Model/Design.php -------------------------------------------------------------------------------- /app/code/community/Hackathon/Layeredlanding/Model/Layeredlanding.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/layered-landing/HEAD/app/code/community/Hackathon/Layeredlanding/Model/Layeredlanding.php -------------------------------------------------------------------------------- /app/code/community/Hackathon/Layeredlanding/Model/Mysql4/Attributes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/layered-landing/HEAD/app/code/community/Hackathon/Layeredlanding/Model/Mysql4/Attributes.php -------------------------------------------------------------------------------- /app/code/community/Hackathon/Layeredlanding/Model/Mysql4/Attributes/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/layered-landing/HEAD/app/code/community/Hackathon/Layeredlanding/Model/Mysql4/Attributes/Collection.php -------------------------------------------------------------------------------- /app/code/community/Hackathon/Layeredlanding/Model/Mysql4/Layeredlanding.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/layered-landing/HEAD/app/code/community/Hackathon/Layeredlanding/Model/Mysql4/Layeredlanding.php -------------------------------------------------------------------------------- /app/code/community/Hackathon/Layeredlanding/Model/Mysql4/Layeredlanding/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/layered-landing/HEAD/app/code/community/Hackathon/Layeredlanding/Model/Mysql4/Layeredlanding/Collection.php -------------------------------------------------------------------------------- /app/code/community/Hackathon/Layeredlanding/Model/Observer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/layered-landing/HEAD/app/code/community/Hackathon/Layeredlanding/Model/Observer.php -------------------------------------------------------------------------------- /app/code/community/Hackathon/Layeredlanding/Model/Options/Attributes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/layered-landing/HEAD/app/code/community/Hackathon/Layeredlanding/Model/Options/Attributes.php -------------------------------------------------------------------------------- /app/code/community/Hackathon/Layeredlanding/Model/Options/Boolean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/layered-landing/HEAD/app/code/community/Hackathon/Layeredlanding/Model/Options/Boolean.php -------------------------------------------------------------------------------- /app/code/community/Hackathon/Layeredlanding/Model/Options/Categories.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/layered-landing/HEAD/app/code/community/Hackathon/Layeredlanding/Model/Options/Categories.php -------------------------------------------------------------------------------- /app/code/community/Hackathon/Layeredlanding/Model/Options/Landingpages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/layered-landing/HEAD/app/code/community/Hackathon/Layeredlanding/Model/Options/Landingpages.php -------------------------------------------------------------------------------- /app/code/community/Hackathon/Layeredlanding/Model/Options/Layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/layered-landing/HEAD/app/code/community/Hackathon/Layeredlanding/Model/Options/Layout.php -------------------------------------------------------------------------------- /app/code/community/Hackathon/Layeredlanding/Model/Sitemap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/layered-landing/HEAD/app/code/community/Hackathon/Layeredlanding/Model/Sitemap.php -------------------------------------------------------------------------------- /app/code/community/Hackathon/Layeredlanding/Test/ConfigTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/layered-landing/HEAD/app/code/community/Hackathon/Layeredlanding/Test/ConfigTest.php -------------------------------------------------------------------------------- /app/code/community/Hackathon/Layeredlanding/Test/Model/Observer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/layered-landing/HEAD/app/code/community/Hackathon/Layeredlanding/Test/Model/Observer.php -------------------------------------------------------------------------------- /app/code/community/Hackathon/Layeredlanding/controllers/Adminhtml/LayeredlandingController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/layered-landing/HEAD/app/code/community/Hackathon/Layeredlanding/controllers/Adminhtml/LayeredlandingController.php -------------------------------------------------------------------------------- /app/code/community/Hackathon/Layeredlanding/controllers/IndexController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/layered-landing/HEAD/app/code/community/Hackathon/Layeredlanding/controllers/IndexController.php -------------------------------------------------------------------------------- /app/code/community/Hackathon/Layeredlanding/etc/adminhtml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/layered-landing/HEAD/app/code/community/Hackathon/Layeredlanding/etc/adminhtml.xml -------------------------------------------------------------------------------- /app/code/community/Hackathon/Layeredlanding/etc/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/layered-landing/HEAD/app/code/community/Hackathon/Layeredlanding/etc/config.xml -------------------------------------------------------------------------------- /app/code/community/Hackathon/Layeredlanding/etc/system.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/layered-landing/HEAD/app/code/community/Hackathon/Layeredlanding/etc/system.xml -------------------------------------------------------------------------------- /app/code/community/Hackathon/Layeredlanding/etc/widget.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/layered-landing/HEAD/app/code/community/Hackathon/Layeredlanding/etc/widget.xml -------------------------------------------------------------------------------- /app/code/community/Hackathon/Layeredlanding/sql/layeredlanding_setup/mysql4-install-0.1.0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/layered-landing/HEAD/app/code/community/Hackathon/Layeredlanding/sql/layeredlanding_setup/mysql4-install-0.1.0.php -------------------------------------------------------------------------------- /app/code/community/Hackathon/Layeredlanding/sql/layeredlanding_setup/mysql4-upgrade-0.1.0-0.2.0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/layered-landing/HEAD/app/code/community/Hackathon/Layeredlanding/sql/layeredlanding_setup/mysql4-upgrade-0.1.0-0.2.0.php -------------------------------------------------------------------------------- /app/code/community/Hackathon/Layeredlanding/sql/layeredlanding_setup/mysql4-upgrade-0.2.0-0.3.0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/layered-landing/HEAD/app/code/community/Hackathon/Layeredlanding/sql/layeredlanding_setup/mysql4-upgrade-0.2.0-0.3.0.php -------------------------------------------------------------------------------- /app/code/community/Hackathon/Layeredlanding/sql/layeredlanding_setup/mysql4-upgrade-0.3.0-0.4.0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/layered-landing/HEAD/app/code/community/Hackathon/Layeredlanding/sql/layeredlanding_setup/mysql4-upgrade-0.3.0-0.4.0.php -------------------------------------------------------------------------------- /app/code/community/Hackathon/Layeredlanding/sql/layeredlanding_setup/mysql4-upgrade-0.4.0-0.5.0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/layered-landing/HEAD/app/code/community/Hackathon/Layeredlanding/sql/layeredlanding_setup/mysql4-upgrade-0.4.0-0.5.0.php -------------------------------------------------------------------------------- /app/design/adminhtml/default/default/layout/layeredlanding.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/layered-landing/HEAD/app/design/adminhtml/default/default/layout/layeredlanding.xml -------------------------------------------------------------------------------- /app/design/adminhtml/default/default/template/layeredlanding/attributes.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/layered-landing/HEAD/app/design/adminhtml/default/default/template/layeredlanding/attributes.phtml -------------------------------------------------------------------------------- /app/design/frontend/base/default/layout/layeredlanding.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/layered-landing/HEAD/app/design/frontend/base/default/layout/layeredlanding.xml -------------------------------------------------------------------------------- /app/design/frontend/base/default/template/layeredlanding/canonical.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/layered-landing/HEAD/app/design/frontend/base/default/template/layeredlanding/canonical.phtml -------------------------------------------------------------------------------- /app/design/frontend/base/default/template/layeredlanding/catalog/layer/state.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/layered-landing/HEAD/app/design/frontend/base/default/template/layeredlanding/catalog/layer/state.phtml -------------------------------------------------------------------------------- /app/design/frontend/base/default/template/layeredlanding/catalog/layer/view.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/layered-landing/HEAD/app/design/frontend/base/default/template/layeredlanding/catalog/layer/view.phtml -------------------------------------------------------------------------------- /app/design/frontend/base/default/template/layeredlanding/leftnav.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/layered-landing/HEAD/app/design/frontend/base/default/template/layeredlanding/leftnav.phtml -------------------------------------------------------------------------------- /app/etc/modules/Hackathon_Layeredlanding.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/layered-landing/HEAD/app/etc/modules/Hackathon_Layeredlanding.xml -------------------------------------------------------------------------------- /app/locale/en_US/Hackathon_Layeredlanding.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/layered-landing/HEAD/app/locale/en_US/Hackathon_Layeredlanding.csv -------------------------------------------------------------------------------- /app/locale/nl_NL/Hackathon_Layeredlanding.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/layered-landing/HEAD/app/locale/nl_NL/Hackathon_Layeredlanding.csv -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/layered-landing/HEAD/composer.json -------------------------------------------------------------------------------- /modman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/layered-landing/HEAD/modman --------------------------------------------------------------------------------