├── .codeclimate.yml ├── .editorconfig ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE.md ├── PHPMD_custom.xml ├── Plugin.php ├── README.md ├── assets └── images │ ├── logo.svg │ └── toolbox-banner.png ├── classes ├── collection │ ├── CollectionStore.php │ ├── ElementCollection.php │ └── TestCollection.php ├── component │ ├── ComponentSubmitForm.php │ ├── ElementData.php │ ├── ElementPage.php │ └── SortingElementList.php ├── console │ ├── CommonCreateFile.php │ ├── CreateAll.php │ ├── CreateCollection.php │ ├── CreateComponentData.php │ ├── CreateComponentList.php │ ├── CreateComponentPage.php │ ├── CreateController.php │ ├── CreateEventModel.php │ ├── CreateExtendBackendMenuHandler.php │ ├── CreateExtendModelColumnsHandler.php │ ├── CreateExtendModelFieldsHandler.php │ ├── CreateItem.php │ ├── CreateMigration.php │ ├── CreateModel.php │ ├── CreateModelColumn.php │ ├── CreateModelField.php │ ├── CreatePlugin.php │ ├── CreateStore.php │ └── ToolBoxHelper.php ├── event │ ├── AbstractBackendColumnHandler.php │ ├── AbstractBackendFieldHandler.php │ ├── AbstractBackendMenuHandler.php │ ├── AbstractExtendRelationConfigHandler.php │ ├── AbstractModelRelationHandler.php │ └── ModelHandler.php ├── helper │ ├── AbstractImportModel.php │ ├── AbstractImportModelFromCSV.php │ ├── AbstractImportModelFromXML.php │ ├── ImportXMLNode.php │ ├── PageHelper.php │ ├── ParseXMLNode.php │ ├── PriceHelper.php │ ├── SendMailHelper.php │ ├── UserHelper.php │ └── users │ │ ├── AbstractUserHelper.php │ │ ├── BuddiesUserHelper.php │ │ └── RainLabUserHelper.php ├── item │ ├── ElementItem.php │ ├── ItemStorage.php │ ├── MainItem.php │ └── TestItem.php ├── parser │ ├── create │ │ ├── ActiveListStoreCreateFile.php │ │ ├── CollectionCreateFile.php │ │ ├── CommonCreateFile.php │ │ ├── ComponentDataCreateFile.php │ │ ├── ComponentListCreateFile.php │ │ ├── ComponentPageCreateFile.php │ │ ├── ControllerConfigImportExportCreateFile.php │ │ ├── ControllerConfigReorderCreateFile.php │ │ ├── ControllerConfirmFilterCreateFile.php │ │ ├── ControllerConfirmFormCreateFile.php │ │ ├── ControllerConfirmListCreateFile.php │ │ ├── ControllerCreateCreateFile.php │ │ ├── ControllerCreateFile.php │ │ ├── ControllerExportCreateFile.php │ │ ├── ControllerImportCreateFile.php │ │ ├── ControllerIndexCreateFile.php │ │ ├── ControllerListToolbarCreateFile.php │ │ ├── ControllerPreviewCreateFile.php │ │ ├── ControllerReorderCreateFile.php │ │ ├── ControllerUpdateCreateFile.php │ │ ├── EventModelCreateFile.php │ │ ├── ExtendBackendMenuHandlerCreateFile.php │ │ ├── ExtendModelColumnsHandlerCreateFile.php │ │ ├── ExtendModelFieldsHandlerCreateFile.php │ │ ├── ItemCreateFile.php │ │ ├── ListStoreCreateFile.php │ │ ├── MigrationCreateFile.php │ │ ├── ModelColumnCreateFile.php │ │ ├── ModelCreateFile.php │ │ ├── ModelFieldCreateFile.php │ │ ├── PluginLangCreateFile.php │ │ ├── PluginPHPCreateFile.php │ │ ├── PluginVersionCreateFile.php │ │ ├── PluginYAMLCreateFile.php │ │ ├── SortingListStoreCreateFile.php │ │ └── TopLevelListStoreCreateFile.php │ ├── templates │ │ ├── active_list_store.stub │ │ ├── collection.stub │ │ ├── columns.stub │ │ ├── component_data.stub │ │ ├── component_list.stub │ │ ├── component_page.stub │ │ ├── controller.stub │ │ ├── controller_config_filter.stub │ │ ├── controller_config_form.stub │ │ ├── controller_config_import_export.stub │ │ ├── controller_config_list.stub │ │ ├── controller_config_reorder.stub │ │ ├── controller_create.stub │ │ ├── controller_export.stub │ │ ├── controller_import.stub │ │ ├── controller_index.stub │ │ ├── controller_list_toolbar.stub │ │ ├── controller_preview.stub │ │ ├── controller_reorder.stub │ │ ├── controller_update.stub │ │ ├── event_model.stub │ │ ├── extend_backend_menu_handler.stub │ │ ├── extend_model_columns_handler.stub │ │ ├── extend_model_fields_handler.stub │ │ ├── fields.stub │ │ ├── item.stub │ │ ├── lang.stub │ │ ├── list_store.stub │ │ ├── migration.stub │ │ ├── model.stub │ │ ├── plugin_php.stub │ │ ├── plugin_yaml.stub │ │ ├── sorting_list_store.stub │ │ ├── sorting_top_level_list_store.stub │ │ └── version.stub │ └── update │ │ ├── CommonUpdateFile.php │ │ ├── PluginLangUpdateFile.php │ │ ├── PluginVersionYAMLUpdateFile.php │ │ └── PluginYAMLUpdateFile.php ├── queue │ └── ImportItemQueue.php ├── storage │ ├── AbstractUserStorage.php │ ├── CookieUserStorage.php │ ├── SessionUserStorage.php │ └── UserStorage.php └── store │ ├── AbstractListStore.php │ ├── AbstractStore.php │ ├── AbstractStoreWithParam.php │ ├── AbstractStoreWithTwoParam.php │ └── AbstractStoreWithoutParam.php ├── components └── Pagination.php ├── composer.json ├── crowdin.yml ├── lang ├── ar │ └── lang.php ├── be │ └── lang.php ├── bg │ └── lang.php ├── ca │ └── lang.php ├── cs │ └── lang.php ├── da │ └── lang.php ├── de │ └── lang.php ├── el │ └── lang.php ├── en │ └── lang.php ├── es │ └── lang.php ├── et │ └── lang.php ├── fa │ └── lang.php ├── fi │ └── lang.php ├── fr │ └── lang.php ├── hu │ └── lang.php ├── id │ └── lang.php ├── it │ └── lang.php ├── ja │ └── lang.php ├── kk │ └── lang.php ├── ko │ └── lang.php ├── ky │ └── lang.php ├── lt │ └── lang.php ├── lv │ └── lang.php ├── nb │ └── lang.php ├── nl │ └── lang.php ├── pl │ └── lang.php ├── pt │ └── lang.php ├── ro │ └── lang.php ├── ru │ └── lang.php ├── sk │ └── lang.php ├── sv │ └── lang.php ├── tr │ └── lang.php ├── uk │ └── lang.php ├── vi │ └── lang.php └── zh │ └── lang.php ├── models ├── CommonProperty.php ├── CommonSettings.php ├── Settings.php └── settings │ └── fields.yaml ├── phpunit.xml ├── plugin.yaml ├── tests ├── CommonTest.php └── unit │ ├── CollectionStoreTest.php │ ├── CollectionTest.php │ └── ItemTest.php ├── traits ├── console │ ├── LogoTrait.php │ └── UpdateLangFile.php ├── helpers │ ├── PriceHelperTrait.php │ ├── TraitCached.php │ ├── TraitComponentNotFoundResponse.php │ ├── TraitInitActiveLang.php │ └── TraitValidationHelper.php ├── models │ ├── MultisiteHelperTrait.php │ └── SetPropertyAttributeTrait.php ├── parse │ └── ParseByPatternTrait.php └── tests │ ├── TestModelHasImages.php │ ├── TestModelHasPreviewImage.php │ ├── TestModelValidationNameField.php │ └── TestModelValidationSlugField.php └── updates └── version.yaml /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/LICENSE.md -------------------------------------------------------------------------------- /PHPMD_custom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/PHPMD_custom.xml -------------------------------------------------------------------------------- /Plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/Plugin.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/README.md -------------------------------------------------------------------------------- /assets/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/assets/images/logo.svg -------------------------------------------------------------------------------- /assets/images/toolbox-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/assets/images/toolbox-banner.png -------------------------------------------------------------------------------- /classes/collection/CollectionStore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/collection/CollectionStore.php -------------------------------------------------------------------------------- /classes/collection/ElementCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/collection/ElementCollection.php -------------------------------------------------------------------------------- /classes/collection/TestCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/collection/TestCollection.php -------------------------------------------------------------------------------- /classes/component/ComponentSubmitForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/component/ComponentSubmitForm.php -------------------------------------------------------------------------------- /classes/component/ElementData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/component/ElementData.php -------------------------------------------------------------------------------- /classes/component/ElementPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/component/ElementPage.php -------------------------------------------------------------------------------- /classes/component/SortingElementList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/component/SortingElementList.php -------------------------------------------------------------------------------- /classes/console/CommonCreateFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/console/CommonCreateFile.php -------------------------------------------------------------------------------- /classes/console/CreateAll.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/console/CreateAll.php -------------------------------------------------------------------------------- /classes/console/CreateCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/console/CreateCollection.php -------------------------------------------------------------------------------- /classes/console/CreateComponentData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/console/CreateComponentData.php -------------------------------------------------------------------------------- /classes/console/CreateComponentList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/console/CreateComponentList.php -------------------------------------------------------------------------------- /classes/console/CreateComponentPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/console/CreateComponentPage.php -------------------------------------------------------------------------------- /classes/console/CreateController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/console/CreateController.php -------------------------------------------------------------------------------- /classes/console/CreateEventModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/console/CreateEventModel.php -------------------------------------------------------------------------------- /classes/console/CreateExtendBackendMenuHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/console/CreateExtendBackendMenuHandler.php -------------------------------------------------------------------------------- /classes/console/CreateExtendModelColumnsHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/console/CreateExtendModelColumnsHandler.php -------------------------------------------------------------------------------- /classes/console/CreateExtendModelFieldsHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/console/CreateExtendModelFieldsHandler.php -------------------------------------------------------------------------------- /classes/console/CreateItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/console/CreateItem.php -------------------------------------------------------------------------------- /classes/console/CreateMigration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/console/CreateMigration.php -------------------------------------------------------------------------------- /classes/console/CreateModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/console/CreateModel.php -------------------------------------------------------------------------------- /classes/console/CreateModelColumn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/console/CreateModelColumn.php -------------------------------------------------------------------------------- /classes/console/CreateModelField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/console/CreateModelField.php -------------------------------------------------------------------------------- /classes/console/CreatePlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/console/CreatePlugin.php -------------------------------------------------------------------------------- /classes/console/CreateStore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/console/CreateStore.php -------------------------------------------------------------------------------- /classes/console/ToolBoxHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/console/ToolBoxHelper.php -------------------------------------------------------------------------------- /classes/event/AbstractBackendColumnHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/event/AbstractBackendColumnHandler.php -------------------------------------------------------------------------------- /classes/event/AbstractBackendFieldHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/event/AbstractBackendFieldHandler.php -------------------------------------------------------------------------------- /classes/event/AbstractBackendMenuHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/event/AbstractBackendMenuHandler.php -------------------------------------------------------------------------------- /classes/event/AbstractExtendRelationConfigHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/event/AbstractExtendRelationConfigHandler.php -------------------------------------------------------------------------------- /classes/event/AbstractModelRelationHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/event/AbstractModelRelationHandler.php -------------------------------------------------------------------------------- /classes/event/ModelHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/event/ModelHandler.php -------------------------------------------------------------------------------- /classes/helper/AbstractImportModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/helper/AbstractImportModel.php -------------------------------------------------------------------------------- /classes/helper/AbstractImportModelFromCSV.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/helper/AbstractImportModelFromCSV.php -------------------------------------------------------------------------------- /classes/helper/AbstractImportModelFromXML.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/helper/AbstractImportModelFromXML.php -------------------------------------------------------------------------------- /classes/helper/ImportXMLNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/helper/ImportXMLNode.php -------------------------------------------------------------------------------- /classes/helper/PageHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/helper/PageHelper.php -------------------------------------------------------------------------------- /classes/helper/ParseXMLNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/helper/ParseXMLNode.php -------------------------------------------------------------------------------- /classes/helper/PriceHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/helper/PriceHelper.php -------------------------------------------------------------------------------- /classes/helper/SendMailHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/helper/SendMailHelper.php -------------------------------------------------------------------------------- /classes/helper/UserHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/helper/UserHelper.php -------------------------------------------------------------------------------- /classes/helper/users/AbstractUserHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/helper/users/AbstractUserHelper.php -------------------------------------------------------------------------------- /classes/helper/users/BuddiesUserHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/helper/users/BuddiesUserHelper.php -------------------------------------------------------------------------------- /classes/helper/users/RainLabUserHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/helper/users/RainLabUserHelper.php -------------------------------------------------------------------------------- /classes/item/ElementItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/item/ElementItem.php -------------------------------------------------------------------------------- /classes/item/ItemStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/item/ItemStorage.php -------------------------------------------------------------------------------- /classes/item/MainItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/item/MainItem.php -------------------------------------------------------------------------------- /classes/item/TestItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/item/TestItem.php -------------------------------------------------------------------------------- /classes/parser/create/ActiveListStoreCreateFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/parser/create/ActiveListStoreCreateFile.php -------------------------------------------------------------------------------- /classes/parser/create/CollectionCreateFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/parser/create/CollectionCreateFile.php -------------------------------------------------------------------------------- /classes/parser/create/CommonCreateFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/parser/create/CommonCreateFile.php -------------------------------------------------------------------------------- /classes/parser/create/ComponentDataCreateFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/parser/create/ComponentDataCreateFile.php -------------------------------------------------------------------------------- /classes/parser/create/ComponentListCreateFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/parser/create/ComponentListCreateFile.php -------------------------------------------------------------------------------- /classes/parser/create/ComponentPageCreateFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/parser/create/ComponentPageCreateFile.php -------------------------------------------------------------------------------- /classes/parser/create/ControllerConfigImportExportCreateFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/parser/create/ControllerConfigImportExportCreateFile.php -------------------------------------------------------------------------------- /classes/parser/create/ControllerConfigReorderCreateFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/parser/create/ControllerConfigReorderCreateFile.php -------------------------------------------------------------------------------- /classes/parser/create/ControllerConfirmFilterCreateFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/parser/create/ControllerConfirmFilterCreateFile.php -------------------------------------------------------------------------------- /classes/parser/create/ControllerConfirmFormCreateFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/parser/create/ControllerConfirmFormCreateFile.php -------------------------------------------------------------------------------- /classes/parser/create/ControllerConfirmListCreateFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/parser/create/ControllerConfirmListCreateFile.php -------------------------------------------------------------------------------- /classes/parser/create/ControllerCreateCreateFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/parser/create/ControllerCreateCreateFile.php -------------------------------------------------------------------------------- /classes/parser/create/ControllerCreateFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/parser/create/ControllerCreateFile.php -------------------------------------------------------------------------------- /classes/parser/create/ControllerExportCreateFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/parser/create/ControllerExportCreateFile.php -------------------------------------------------------------------------------- /classes/parser/create/ControllerImportCreateFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/parser/create/ControllerImportCreateFile.php -------------------------------------------------------------------------------- /classes/parser/create/ControllerIndexCreateFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/parser/create/ControllerIndexCreateFile.php -------------------------------------------------------------------------------- /classes/parser/create/ControllerListToolbarCreateFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/parser/create/ControllerListToolbarCreateFile.php -------------------------------------------------------------------------------- /classes/parser/create/ControllerPreviewCreateFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/parser/create/ControllerPreviewCreateFile.php -------------------------------------------------------------------------------- /classes/parser/create/ControllerReorderCreateFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/parser/create/ControllerReorderCreateFile.php -------------------------------------------------------------------------------- /classes/parser/create/ControllerUpdateCreateFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/parser/create/ControllerUpdateCreateFile.php -------------------------------------------------------------------------------- /classes/parser/create/EventModelCreateFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/parser/create/EventModelCreateFile.php -------------------------------------------------------------------------------- /classes/parser/create/ExtendBackendMenuHandlerCreateFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/parser/create/ExtendBackendMenuHandlerCreateFile.php -------------------------------------------------------------------------------- /classes/parser/create/ExtendModelColumnsHandlerCreateFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/parser/create/ExtendModelColumnsHandlerCreateFile.php -------------------------------------------------------------------------------- /classes/parser/create/ExtendModelFieldsHandlerCreateFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/parser/create/ExtendModelFieldsHandlerCreateFile.php -------------------------------------------------------------------------------- /classes/parser/create/ItemCreateFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/parser/create/ItemCreateFile.php -------------------------------------------------------------------------------- /classes/parser/create/ListStoreCreateFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/parser/create/ListStoreCreateFile.php -------------------------------------------------------------------------------- /classes/parser/create/MigrationCreateFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/parser/create/MigrationCreateFile.php -------------------------------------------------------------------------------- /classes/parser/create/ModelColumnCreateFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/parser/create/ModelColumnCreateFile.php -------------------------------------------------------------------------------- /classes/parser/create/ModelCreateFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/parser/create/ModelCreateFile.php -------------------------------------------------------------------------------- /classes/parser/create/ModelFieldCreateFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/parser/create/ModelFieldCreateFile.php -------------------------------------------------------------------------------- /classes/parser/create/PluginLangCreateFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/parser/create/PluginLangCreateFile.php -------------------------------------------------------------------------------- /classes/parser/create/PluginPHPCreateFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/parser/create/PluginPHPCreateFile.php -------------------------------------------------------------------------------- /classes/parser/create/PluginVersionCreateFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/parser/create/PluginVersionCreateFile.php -------------------------------------------------------------------------------- /classes/parser/create/PluginYAMLCreateFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/parser/create/PluginYAMLCreateFile.php -------------------------------------------------------------------------------- /classes/parser/create/SortingListStoreCreateFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/parser/create/SortingListStoreCreateFile.php -------------------------------------------------------------------------------- /classes/parser/create/TopLevelListStoreCreateFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/parser/create/TopLevelListStoreCreateFile.php -------------------------------------------------------------------------------- /classes/parser/templates/active_list_store.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/parser/templates/active_list_store.stub -------------------------------------------------------------------------------- /classes/parser/templates/collection.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/parser/templates/collection.stub -------------------------------------------------------------------------------- /classes/parser/templates/columns.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/parser/templates/columns.stub -------------------------------------------------------------------------------- /classes/parser/templates/component_data.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/parser/templates/component_data.stub -------------------------------------------------------------------------------- /classes/parser/templates/component_list.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/parser/templates/component_list.stub -------------------------------------------------------------------------------- /classes/parser/templates/component_page.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/parser/templates/component_page.stub -------------------------------------------------------------------------------- /classes/parser/templates/controller.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/parser/templates/controller.stub -------------------------------------------------------------------------------- /classes/parser/templates/controller_config_filter.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/parser/templates/controller_config_filter.stub -------------------------------------------------------------------------------- /classes/parser/templates/controller_config_form.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/parser/templates/controller_config_form.stub -------------------------------------------------------------------------------- /classes/parser/templates/controller_config_import_export.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/parser/templates/controller_config_import_export.stub -------------------------------------------------------------------------------- /classes/parser/templates/controller_config_list.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/parser/templates/controller_config_list.stub -------------------------------------------------------------------------------- /classes/parser/templates/controller_config_reorder.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/parser/templates/controller_config_reorder.stub -------------------------------------------------------------------------------- /classes/parser/templates/controller_create.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/parser/templates/controller_create.stub -------------------------------------------------------------------------------- /classes/parser/templates/controller_export.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/parser/templates/controller_export.stub -------------------------------------------------------------------------------- /classes/parser/templates/controller_import.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/parser/templates/controller_import.stub -------------------------------------------------------------------------------- /classes/parser/templates/controller_index.stub: -------------------------------------------------------------------------------- 1 | listRender() ?> 2 | -------------------------------------------------------------------------------- /classes/parser/templates/controller_list_toolbar.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/parser/templates/controller_list_toolbar.stub -------------------------------------------------------------------------------- /classes/parser/templates/controller_preview.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/parser/templates/controller_preview.stub -------------------------------------------------------------------------------- /classes/parser/templates/controller_reorder.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/parser/templates/controller_reorder.stub -------------------------------------------------------------------------------- /classes/parser/templates/controller_update.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/parser/templates/controller_update.stub -------------------------------------------------------------------------------- /classes/parser/templates/event_model.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/parser/templates/event_model.stub -------------------------------------------------------------------------------- /classes/parser/templates/extend_backend_menu_handler.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/parser/templates/extend_backend_menu_handler.stub -------------------------------------------------------------------------------- /classes/parser/templates/extend_model_columns_handler.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/parser/templates/extend_model_columns_handler.stub -------------------------------------------------------------------------------- /classes/parser/templates/extend_model_fields_handler.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/parser/templates/extend_model_fields_handler.stub -------------------------------------------------------------------------------- /classes/parser/templates/fields.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/parser/templates/fields.stub -------------------------------------------------------------------------------- /classes/parser/templates/item.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/parser/templates/item.stub -------------------------------------------------------------------------------- /classes/parser/templates/lang.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/parser/templates/lang.stub -------------------------------------------------------------------------------- /classes/parser/templates/list_store.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/parser/templates/list_store.stub -------------------------------------------------------------------------------- /classes/parser/templates/migration.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/parser/templates/migration.stub -------------------------------------------------------------------------------- /classes/parser/templates/model.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/parser/templates/model.stub -------------------------------------------------------------------------------- /classes/parser/templates/plugin_php.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/parser/templates/plugin_php.stub -------------------------------------------------------------------------------- /classes/parser/templates/plugin_yaml.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/parser/templates/plugin_yaml.stub -------------------------------------------------------------------------------- /classes/parser/templates/sorting_list_store.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/parser/templates/sorting_list_store.stub -------------------------------------------------------------------------------- /classes/parser/templates/sorting_top_level_list_store.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/parser/templates/sorting_top_level_list_store.stub -------------------------------------------------------------------------------- /classes/parser/templates/version.stub: -------------------------------------------------------------------------------- 1 | 1.0.0: 2 | - 'Init plugin' 3 | -------------------------------------------------------------------------------- /classes/parser/update/CommonUpdateFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/parser/update/CommonUpdateFile.php -------------------------------------------------------------------------------- /classes/parser/update/PluginLangUpdateFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/parser/update/PluginLangUpdateFile.php -------------------------------------------------------------------------------- /classes/parser/update/PluginVersionYAMLUpdateFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/parser/update/PluginVersionYAMLUpdateFile.php -------------------------------------------------------------------------------- /classes/parser/update/PluginYAMLUpdateFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/parser/update/PluginYAMLUpdateFile.php -------------------------------------------------------------------------------- /classes/queue/ImportItemQueue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/queue/ImportItemQueue.php -------------------------------------------------------------------------------- /classes/storage/AbstractUserStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/storage/AbstractUserStorage.php -------------------------------------------------------------------------------- /classes/storage/CookieUserStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/storage/CookieUserStorage.php -------------------------------------------------------------------------------- /classes/storage/SessionUserStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/storage/SessionUserStorage.php -------------------------------------------------------------------------------- /classes/storage/UserStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/storage/UserStorage.php -------------------------------------------------------------------------------- /classes/store/AbstractListStore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/store/AbstractListStore.php -------------------------------------------------------------------------------- /classes/store/AbstractStore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/store/AbstractStore.php -------------------------------------------------------------------------------- /classes/store/AbstractStoreWithParam.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/store/AbstractStoreWithParam.php -------------------------------------------------------------------------------- /classes/store/AbstractStoreWithTwoParam.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/store/AbstractStoreWithTwoParam.php -------------------------------------------------------------------------------- /classes/store/AbstractStoreWithoutParam.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/classes/store/AbstractStoreWithoutParam.php -------------------------------------------------------------------------------- /components/Pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/components/Pagination.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/composer.json -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/crowdin.yml -------------------------------------------------------------------------------- /lang/ar/lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/lang/ar/lang.php -------------------------------------------------------------------------------- /lang/be/lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/lang/be/lang.php -------------------------------------------------------------------------------- /lang/bg/lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/lang/bg/lang.php -------------------------------------------------------------------------------- /lang/ca/lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/lang/ca/lang.php -------------------------------------------------------------------------------- /lang/cs/lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/lang/cs/lang.php -------------------------------------------------------------------------------- /lang/da/lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/lang/da/lang.php -------------------------------------------------------------------------------- /lang/de/lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/lang/de/lang.php -------------------------------------------------------------------------------- /lang/el/lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/lang/el/lang.php -------------------------------------------------------------------------------- /lang/en/lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/lang/en/lang.php -------------------------------------------------------------------------------- /lang/es/lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/lang/es/lang.php -------------------------------------------------------------------------------- /lang/et/lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/lang/et/lang.php -------------------------------------------------------------------------------- /lang/fa/lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/lang/fa/lang.php -------------------------------------------------------------------------------- /lang/fi/lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/lang/fi/lang.php -------------------------------------------------------------------------------- /lang/fr/lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/lang/fr/lang.php -------------------------------------------------------------------------------- /lang/hu/lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/lang/hu/lang.php -------------------------------------------------------------------------------- /lang/id/lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/lang/id/lang.php -------------------------------------------------------------------------------- /lang/it/lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/lang/it/lang.php -------------------------------------------------------------------------------- /lang/ja/lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/lang/ja/lang.php -------------------------------------------------------------------------------- /lang/kk/lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/lang/kk/lang.php -------------------------------------------------------------------------------- /lang/ko/lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/lang/ko/lang.php -------------------------------------------------------------------------------- /lang/ky/lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/lang/ky/lang.php -------------------------------------------------------------------------------- /lang/lt/lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/lang/lt/lang.php -------------------------------------------------------------------------------- /lang/lv/lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/lang/lv/lang.php -------------------------------------------------------------------------------- /lang/nb/lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/lang/nb/lang.php -------------------------------------------------------------------------------- /lang/nl/lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/lang/nl/lang.php -------------------------------------------------------------------------------- /lang/pl/lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/lang/pl/lang.php -------------------------------------------------------------------------------- /lang/pt/lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/lang/pt/lang.php -------------------------------------------------------------------------------- /lang/ro/lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/lang/ro/lang.php -------------------------------------------------------------------------------- /lang/ru/lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/lang/ru/lang.php -------------------------------------------------------------------------------- /lang/sk/lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/lang/sk/lang.php -------------------------------------------------------------------------------- /lang/sv/lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/lang/sv/lang.php -------------------------------------------------------------------------------- /lang/tr/lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/lang/tr/lang.php -------------------------------------------------------------------------------- /lang/uk/lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/lang/uk/lang.php -------------------------------------------------------------------------------- /lang/vi/lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/lang/vi/lang.php -------------------------------------------------------------------------------- /lang/zh/lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/lang/zh/lang.php -------------------------------------------------------------------------------- /models/CommonProperty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/models/CommonProperty.php -------------------------------------------------------------------------------- /models/CommonSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/models/CommonSettings.php -------------------------------------------------------------------------------- /models/Settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/models/Settings.php -------------------------------------------------------------------------------- /models/settings/fields.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/models/settings/fields.yaml -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/phpunit.xml -------------------------------------------------------------------------------- /plugin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/plugin.yaml -------------------------------------------------------------------------------- /tests/CommonTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/tests/CommonTest.php -------------------------------------------------------------------------------- /tests/unit/CollectionStoreTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/tests/unit/CollectionStoreTest.php -------------------------------------------------------------------------------- /tests/unit/CollectionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/tests/unit/CollectionTest.php -------------------------------------------------------------------------------- /tests/unit/ItemTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/tests/unit/ItemTest.php -------------------------------------------------------------------------------- /traits/console/LogoTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/traits/console/LogoTrait.php -------------------------------------------------------------------------------- /traits/console/UpdateLangFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/traits/console/UpdateLangFile.php -------------------------------------------------------------------------------- /traits/helpers/PriceHelperTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/traits/helpers/PriceHelperTrait.php -------------------------------------------------------------------------------- /traits/helpers/TraitCached.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/traits/helpers/TraitCached.php -------------------------------------------------------------------------------- /traits/helpers/TraitComponentNotFoundResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/traits/helpers/TraitComponentNotFoundResponse.php -------------------------------------------------------------------------------- /traits/helpers/TraitInitActiveLang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/traits/helpers/TraitInitActiveLang.php -------------------------------------------------------------------------------- /traits/helpers/TraitValidationHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/traits/helpers/TraitValidationHelper.php -------------------------------------------------------------------------------- /traits/models/MultisiteHelperTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/traits/models/MultisiteHelperTrait.php -------------------------------------------------------------------------------- /traits/models/SetPropertyAttributeTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/traits/models/SetPropertyAttributeTrait.php -------------------------------------------------------------------------------- /traits/parse/ParseByPatternTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/traits/parse/ParseByPatternTrait.php -------------------------------------------------------------------------------- /traits/tests/TestModelHasImages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/traits/tests/TestModelHasImages.php -------------------------------------------------------------------------------- /traits/tests/TestModelHasPreviewImage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/traits/tests/TestModelHasPreviewImage.php -------------------------------------------------------------------------------- /traits/tests/TestModelValidationNameField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/traits/tests/TestModelValidationNameField.php -------------------------------------------------------------------------------- /traits/tests/TestModelValidationSlugField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/traits/tests/TestModelValidationSlugField.php -------------------------------------------------------------------------------- /updates/version.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-shopaholic/oc-toolbox-plugin/HEAD/updates/version.yaml --------------------------------------------------------------------------------