├── .github └── FUNDING.yml ├── .travis.yml ├── LICENSE ├── README.md ├── app ├── code │ └── community │ │ └── CustomGento │ │ └── ConfigurableTierPrices │ │ ├── Helper │ │ └── Data.php │ │ ├── Model │ │ ├── Observer.php │ │ └── System │ │ │ └── Config │ │ │ └── Source │ │ │ └── Category.php │ │ ├── Test │ │ ├── Config │ │ │ ├── Main.php │ │ │ └── Main │ │ │ │ └── expectations │ │ │ │ └── testModuleConfig.yaml │ │ └── Model │ │ │ ├── ObserverTest.php │ │ │ └── ObserverTest │ │ │ └── fixtures │ │ │ └── createProducts.yaml │ │ ├── etc │ │ ├── adminhtml.xml │ │ ├── config.xml │ │ └── system.xml │ │ └── sql │ │ └── customgento_configurabletierprices_setup │ │ └── upgrade-2.0.0-2.1.0.php ├── etc │ └── modules │ │ └── CustomGento_ConfigurableTierPrices.xml └── locale │ ├── de_AT │ └── CustomGento_ConfigurableTierPrices.csv │ ├── de_CH │ └── CustomGento_ConfigurableTierPrices.csv │ ├── de_DE │ └── CustomGento_ConfigurableTierPrices.csv │ └── en_US │ └── CustomGento_ConfigurableTierPrices.csv ├── composer.json ├── modman └── package.xml /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [customgento] 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customgento/CustomGento_ConfigurableTierPrices/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customgento/CustomGento_ConfigurableTierPrices/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customgento/CustomGento_ConfigurableTierPrices/HEAD/README.md -------------------------------------------------------------------------------- /app/code/community/CustomGento/ConfigurableTierPrices/Helper/Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customgento/CustomGento_ConfigurableTierPrices/HEAD/app/code/community/CustomGento/ConfigurableTierPrices/Helper/Data.php -------------------------------------------------------------------------------- /app/code/community/CustomGento/ConfigurableTierPrices/Model/Observer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customgento/CustomGento_ConfigurableTierPrices/HEAD/app/code/community/CustomGento/ConfigurableTierPrices/Model/Observer.php -------------------------------------------------------------------------------- /app/code/community/CustomGento/ConfigurableTierPrices/Model/System/Config/Source/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customgento/CustomGento_ConfigurableTierPrices/HEAD/app/code/community/CustomGento/ConfigurableTierPrices/Model/System/Config/Source/Category.php -------------------------------------------------------------------------------- /app/code/community/CustomGento/ConfigurableTierPrices/Test/Config/Main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customgento/CustomGento_ConfigurableTierPrices/HEAD/app/code/community/CustomGento/ConfigurableTierPrices/Test/Config/Main.php -------------------------------------------------------------------------------- /app/code/community/CustomGento/ConfigurableTierPrices/Test/Config/Main/expectations/testModuleConfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customgento/CustomGento_ConfigurableTierPrices/HEAD/app/code/community/CustomGento/ConfigurableTierPrices/Test/Config/Main/expectations/testModuleConfig.yaml -------------------------------------------------------------------------------- /app/code/community/CustomGento/ConfigurableTierPrices/Test/Model/ObserverTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customgento/CustomGento_ConfigurableTierPrices/HEAD/app/code/community/CustomGento/ConfigurableTierPrices/Test/Model/ObserverTest.php -------------------------------------------------------------------------------- /app/code/community/CustomGento/ConfigurableTierPrices/Test/Model/ObserverTest/fixtures/createProducts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customgento/CustomGento_ConfigurableTierPrices/HEAD/app/code/community/CustomGento/ConfigurableTierPrices/Test/Model/ObserverTest/fixtures/createProducts.yaml -------------------------------------------------------------------------------- /app/code/community/CustomGento/ConfigurableTierPrices/etc/adminhtml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customgento/CustomGento_ConfigurableTierPrices/HEAD/app/code/community/CustomGento/ConfigurableTierPrices/etc/adminhtml.xml -------------------------------------------------------------------------------- /app/code/community/CustomGento/ConfigurableTierPrices/etc/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customgento/CustomGento_ConfigurableTierPrices/HEAD/app/code/community/CustomGento/ConfigurableTierPrices/etc/config.xml -------------------------------------------------------------------------------- /app/code/community/CustomGento/ConfigurableTierPrices/etc/system.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customgento/CustomGento_ConfigurableTierPrices/HEAD/app/code/community/CustomGento/ConfigurableTierPrices/etc/system.xml -------------------------------------------------------------------------------- /app/code/community/CustomGento/ConfigurableTierPrices/sql/customgento_configurabletierprices_setup/upgrade-2.0.0-2.1.0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customgento/CustomGento_ConfigurableTierPrices/HEAD/app/code/community/CustomGento/ConfigurableTierPrices/sql/customgento_configurabletierprices_setup/upgrade-2.0.0-2.1.0.php -------------------------------------------------------------------------------- /app/etc/modules/CustomGento_ConfigurableTierPrices.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customgento/CustomGento_ConfigurableTierPrices/HEAD/app/etc/modules/CustomGento_ConfigurableTierPrices.xml -------------------------------------------------------------------------------- /app/locale/de_AT/CustomGento_ConfigurableTierPrices.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customgento/CustomGento_ConfigurableTierPrices/HEAD/app/locale/de_AT/CustomGento_ConfigurableTierPrices.csv -------------------------------------------------------------------------------- /app/locale/de_CH/CustomGento_ConfigurableTierPrices.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customgento/CustomGento_ConfigurableTierPrices/HEAD/app/locale/de_CH/CustomGento_ConfigurableTierPrices.csv -------------------------------------------------------------------------------- /app/locale/de_DE/CustomGento_ConfigurableTierPrices.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customgento/CustomGento_ConfigurableTierPrices/HEAD/app/locale/de_DE/CustomGento_ConfigurableTierPrices.csv -------------------------------------------------------------------------------- /app/locale/en_US/CustomGento_ConfigurableTierPrices.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customgento/CustomGento_ConfigurableTierPrices/HEAD/app/locale/en_US/CustomGento_ConfigurableTierPrices.csv -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customgento/CustomGento_ConfigurableTierPrices/HEAD/composer.json -------------------------------------------------------------------------------- /modman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customgento/CustomGento_ConfigurableTierPrices/HEAD/modman -------------------------------------------------------------------------------- /package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customgento/CustomGento_ConfigurableTierPrices/HEAD/package.xml --------------------------------------------------------------------------------