├── .env.dist ├── .gitignore ├── .htaccess ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── bin ├── console └── phpunit ├── composer.json ├── composer.lock ├── config ├── bundles.php ├── packages │ ├── dev │ │ ├── routing.yaml │ │ └── web_profiler.yaml │ ├── framework.yaml │ ├── routing.yaml │ ├── sensio_framework_extra.yaml │ ├── test │ │ ├── framework.yaml │ │ └── web_profiler.yaml │ ├── twig.yaml │ └── twig_extensions.yaml ├── routes │ ├── annotations.yaml │ └── dev │ │ └── web_profiler.yaml └── services.yaml ├── docker-compose.yml ├── index.php ├── phpunit.xml.dist └── src ├── Kernel.php └── Umc ├── CoreBundle ├── Config │ ├── FileLoader.php │ ├── Form │ │ ├── Config.php │ │ └── Modifier │ │ │ └── Tab.php │ ├── Loader.php │ ├── Loader │ │ └── PlatformAwareFactory.php │ ├── Modifier │ │ ├── Composite.php │ │ ├── ModifierInterface.php │ │ ├── Parameter.php │ │ ├── Remove.php │ │ └── Sort.php │ ├── ParamMerger.php │ ├── ProcessorFactory.php │ ├── Provider.php │ ├── Provider │ │ └── Factory.php │ └── Source │ │ └── Config.php ├── Controller │ ├── DownloadController.php │ ├── EditController.php │ ├── HelpController.php │ ├── IndexController.php │ ├── ListController.php │ ├── SaveController.php │ ├── SaveSettingsController.php │ └── SettingsController.php ├── DependencyInjection │ └── UmcCoreExtension.php ├── Model │ ├── Attribute.php │ ├── Attribute │ │ ├── Dynamic.php │ │ ├── Dynamic │ │ │ ├── Factory.php │ │ │ ├── Option.php │ │ │ ├── Option │ │ │ │ └── Factory.php │ │ │ └── Type │ │ │ │ ├── BaseType.php │ │ │ │ └── Factory.php │ │ ├── Factory.php │ │ ├── Option.php │ │ ├── Option │ │ │ └── Factory.php │ │ └── Type │ │ │ ├── BaseType.php │ │ │ └── Factory.php │ ├── Entity.php │ ├── Entity │ │ └── Factory.php │ ├── Module.php │ ├── Module │ │ ├── Factory.php │ │ └── Factory │ │ │ └── Locator.php │ ├── Platform.php │ ├── Platform │ │ ├── Builder.php │ │ ├── Config.php │ │ ├── ConfigException.php │ │ ├── Factory.php │ │ ├── Pool.php │ │ ├── Version.php │ │ └── Version │ │ │ └── Factory.php │ ├── Relation.php │ └── Relation │ │ └── Factory.php ├── Repository │ ├── Module.php │ ├── Settings.php │ └── Settings │ │ └── MissingSettingsFileException.php ├── Resources │ ├── config │ │ ├── extensible_parameters.yml │ │ ├── form │ │ │ ├── attribute.yml │ │ │ ├── dynamic.yml │ │ │ ├── entity.yml │ │ │ ├── module.yml │ │ │ ├── option.yml │ │ │ └── relation.yml │ │ └── services.xml │ ├── public │ │ ├── bootstrap │ │ │ ├── css │ │ │ │ ├── bootstrap-grid.css │ │ │ │ ├── bootstrap-grid.css.map │ │ │ │ ├── bootstrap-grid.min.css │ │ │ │ ├── bootstrap-grid.min.css.map │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ ├── bootstrap-reboot.css.map │ │ │ │ ├── bootstrap-reboot.min.css │ │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ ├── bootstrap.min.css │ │ │ │ └── bootstrap.min.css.map │ │ │ └── js │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ ├── bootstrap.bundle.js.map │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.js.map │ │ │ │ ├── bootstrap.min.js │ │ │ │ ├── bootstrap.min.js.map │ │ │ │ └── popper.js │ │ ├── font-awesome │ │ │ ├── css │ │ │ │ ├── font-awesome.css │ │ │ │ ├── font-awesome.css.map │ │ │ │ └── font-awesome.min.css │ │ │ ├── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ └── webfonts │ │ │ │ ├── fa-brands-400.eot │ │ │ │ ├── fa-brands-400.svg │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ ├── fa-brands-400.woff │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ ├── fa-regular-400.eot │ │ │ │ ├── fa-regular-400.svg │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ ├── fa-regular-400.woff │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ ├── fa-solid-900.eot │ │ │ │ ├── fa-solid-900.svg │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ ├── fa-solid-900.woff │ │ │ │ └── fa-solid-900.woff2 │ │ ├── jquery-ui │ │ │ ├── AUTHORS.txt │ │ │ ├── LICENSE.txt │ │ │ ├── external │ │ │ │ └── jquery │ │ │ │ │ └── jquery.js │ │ │ ├── font │ │ │ │ ├── jquery-ui.eot │ │ │ │ ├── jquery-ui.svg │ │ │ │ ├── jquery-ui.ttf │ │ │ │ ├── jquery-ui.woff │ │ │ │ └── jquery-ui.woff2 │ │ │ ├── images │ │ │ │ ├── ui-bg_glass_20_555555_1x400.png │ │ │ │ ├── ui-bg_glass_40_0078a3_1x400.png │ │ │ │ ├── ui-bg_glass_40_ffc73d_1x400.png │ │ │ │ ├── ui-bg_gloss-wave_25_333333_500x100.png │ │ │ │ ├── ui-bg_highlight-soft_80_eeeeee_1x100.png │ │ │ │ ├── ui-bg_inset-soft_25_000000_1x100.png │ │ │ │ ├── ui-bg_inset-soft_30_f58400_1x100.png │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ ├── ui-icons_4b8e0b_256x240.png │ │ │ │ ├── ui-icons_a83300_256x240.png │ │ │ │ ├── ui-icons_cccccc_256x240.png │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ ├── index.html │ │ │ ├── jquery-ui.css │ │ │ ├── jquery-ui.icon-font.css │ │ │ ├── jquery-ui.js │ │ │ ├── jquery-ui.min.css │ │ │ ├── jquery-ui.min.js │ │ │ ├── jquery-ui.structure.css │ │ │ ├── jquery-ui.structure.min.css │ │ │ ├── jquery-ui.theme.css │ │ │ ├── jquery-ui.theme.min.css │ │ │ └── package.json │ │ ├── jquery │ │ │ ├── form-validator.js │ │ │ ├── jquery.ajax-progress.js │ │ │ ├── jquery.js │ │ │ ├── jquery.min.js │ │ │ └── jquery.min.map │ │ ├── ko │ │ │ ├── ko.js │ │ │ └── ko.sortable.js │ │ ├── select2 │ │ │ ├── select2-bootstrap.css │ │ │ ├── select2.css │ │ │ └── select2.js │ │ └── umc │ │ │ ├── dark-mode.js │ │ │ ├── edit.js │ │ │ ├── info.js │ │ │ ├── settings.js │ │ │ ├── umc.css │ │ │ └── umc.js │ └── views │ │ ├── base.html.twig │ │ ├── edit.html.twig │ │ ├── edit │ │ ├── form.html.twig │ │ └── form │ │ │ ├── elements │ │ │ └── validation.html.twig │ │ │ └── field │ │ │ ├── checkbox.html.twig │ │ │ ├── choice.html.twig │ │ │ ├── radio.html.twig │ │ │ ├── text.html.twig │ │ │ ├── textarea.html.twig │ │ │ └── validation.html.twig │ │ ├── help.html.twig │ │ ├── index.html.twig │ │ ├── index │ │ └── menu.html.twig │ │ ├── list.html.twig │ │ ├── modal.html.twig │ │ ├── settings.html.twig │ │ └── settings │ │ └── form.html.twig ├── Service │ ├── Archiver.php │ ├── Builder.php │ ├── Cs │ │ ├── Executor.php │ │ └── ProcessFactory.php │ ├── FileFinderFactory.php │ ├── Generator │ │ ├── ContentProcessor.php │ │ ├── Entity.php │ │ ├── GeneratorInterface.php │ │ ├── Module.php │ │ ├── Pool.php │ │ └── Pool │ │ │ └── Locator.php │ ├── License │ │ ├── Pool.php │ │ └── Processor.php │ ├── Locator.php │ ├── Validator │ │ ├── Children.php │ │ ├── CompositeValidator.php │ │ ├── EntityName.php │ │ ├── Locator.php │ │ ├── NotSame.php │ │ ├── Pool.php │ │ ├── RestrictedWords.php │ │ ├── UniqueChildren.php │ │ ├── ValidationException.php │ │ └── ValidatorInterface.php │ └── ZipArchiveFactory.php ├── Tests │ └── Unit │ │ ├── Config │ │ ├── FileLoaderTest.php │ │ ├── Form │ │ │ └── Modifier │ │ │ │ └── TabTest.php │ │ ├── Loader │ │ │ └── PlatformAwareFactoryTest.php │ │ ├── LoaderTest.php │ │ ├── Modifier │ │ │ ├── CompositeTest.php │ │ │ ├── ParameterTest.php │ │ │ ├── RemoveTest.php │ │ │ └── SortTest.php │ │ ├── ParamMergerTest.php │ │ ├── ProcessorFactoryTest.php │ │ ├── Provider │ │ │ └── FactoryTest.php │ │ └── ProviderTest.php │ │ ├── Controller │ │ ├── DownloadControllerTest.php │ │ ├── EditControllerTest.php │ │ ├── HelpControllerTest.php │ │ ├── IndexControllerTest.php │ │ ├── ListControllerTest.php │ │ ├── SaveControllerTest.php │ │ ├── SaveSettingsControllerTest.php │ │ └── SettingsControllerTest.php │ │ ├── Model │ │ ├── Attribute │ │ │ ├── Dynamic │ │ │ │ ├── FactoryTest.php │ │ │ │ ├── Option │ │ │ │ │ └── FactoryTest.php │ │ │ │ ├── OptionTest.php │ │ │ │ └── Type │ │ │ │ │ ├── BaseTypeTest.php │ │ │ │ │ └── FactoryTest.php │ │ │ ├── DynamicTest.php │ │ │ ├── FactoryTest.php │ │ │ ├── Option │ │ │ │ └── FactoryTest.php │ │ │ ├── OptionTest.php │ │ │ └── Type │ │ │ │ ├── BaseTypeTest.php │ │ │ │ └── FactoryTest.php │ │ ├── AttributeTest.php │ │ ├── Entity │ │ │ └── FactoryTest.php │ │ ├── EntityTest.php │ │ ├── Module │ │ │ ├── Factory │ │ │ │ └── LocatorTest.php │ │ │ └── FactoryTest.php │ │ ├── ModuleTest.php │ │ ├── Platform │ │ │ ├── BuilderTest.php │ │ │ ├── FactoryTest.php │ │ │ ├── PoolTest.php │ │ │ ├── Version │ │ │ │ └── FactoryTest.php │ │ │ └── VersionTest.php │ │ ├── PlatformTest.php │ │ ├── Relation │ │ │ └── FactoryTest.php │ │ └── RelationTest.php │ │ ├── Repository │ │ ├── ModuleTest.php │ │ └── SettingsTest.php │ │ ├── Service │ │ ├── ArchiverTest.php │ │ ├── BuilderTest.php │ │ ├── Cs │ │ │ ├── ExecutorTest.php │ │ │ └── ProcessFactoryTest.php │ │ ├── FinderFactoryTest.php │ │ ├── Generator │ │ │ ├── ContentProcessorTest.php │ │ │ ├── EntityTest.php │ │ │ ├── ModuleTest.php │ │ │ ├── Pool │ │ │ │ └── LocatorTest.php │ │ │ └── PoolTest.php │ │ ├── License │ │ │ ├── PoolTest.php │ │ │ └── ProcessorTest.php │ │ ├── LocatorTest.php │ │ ├── Validator │ │ │ ├── ChildrenTest.php │ │ │ ├── CompositeValidatorTest.php │ │ │ ├── EntityNameTest.php │ │ │ ├── LocatorTest.php │ │ │ ├── NotSameTest.php │ │ │ ├── PoolTest.php │ │ │ ├── RestrictedWordsTest.php │ │ │ └── UniqueChildrenTest.php │ │ └── ZipArchiveFactoryTest.php │ │ ├── Twig │ │ ├── LicenseTest.php │ │ ├── ModifiersTest.php │ │ └── SortMarkupTest.php │ │ ├── Util │ │ ├── SorterTest.php │ │ └── StringUtilTest.php │ │ ├── VersionTest.php │ │ └── _fixtures │ │ ├── download.zip │ │ └── yaml │ │ ├── not-valid.yml │ │ └── valid.yml ├── Twig │ ├── License.php │ ├── Modifiers.php │ └── SortMarkup.php ├── UmcCoreBundle.php ├── Util │ ├── Sorter.php │ └── StringUtil.php └── Version.php ├── MagentoBundle ├── DependencyInjection │ └── UmcMagentoExtension.php ├── Model │ ├── Attribute.php │ ├── Attribute │ │ ├── Dynamic.php │ │ ├── Dynamic │ │ │ └── Type │ │ │ │ ├── BaseType.php │ │ │ │ ├── ProductAttribute.php │ │ │ │ └── ProductAttributeSet.php │ │ └── Type │ │ │ ├── BaseType.php │ │ │ ├── Dropdown.php │ │ │ ├── Dynamic.php │ │ │ ├── ProductAttribute.php │ │ │ └── ProductAttributeSet.php │ ├── Entity.php │ ├── Module.php │ └── Module │ │ └── Factory.php ├── Resources │ ├── config │ │ ├── extensible_parameters.yml │ │ ├── form │ │ │ ├── attribute.yml │ │ │ ├── entity.yml │ │ │ └── module.yml │ │ ├── platform.yml │ │ ├── services.xml │ │ └── source │ │ │ ├── entity.yml │ │ │ ├── entity_unit_tests.yml │ │ │ ├── module.yml │ │ │ └── module_unit_tests.yml │ ├── public │ │ └── logo │ │ │ └── magento.png │ └── views │ │ ├── attribute │ │ ├── form │ │ │ ├── date.html.twig │ │ │ ├── dynamic.html.twig │ │ │ ├── dynamic │ │ │ │ ├── date.html.twig │ │ │ │ ├── select.html.twig │ │ │ │ ├── text.html.twig │ │ │ │ ├── textarea.html.twig │ │ │ │ └── yesno.html.twig │ │ │ ├── file.html.twig │ │ │ ├── select.html.twig │ │ │ ├── text.html.twig │ │ │ ├── textarea.html.twig │ │ │ ├── wysiwyg.html.twig │ │ │ └── yesno.html.twig │ │ ├── frontend │ │ │ ├── country.html.twig │ │ │ ├── date.html.twig │ │ │ ├── dynamic.html.twig │ │ │ ├── dynamic │ │ │ │ ├── country.html.twig │ │ │ │ ├── date.html.twig │ │ │ │ ├── option.html.twig │ │ │ │ ├── product_attribute.html.twig │ │ │ │ ├── product_attribute_set.html.twig │ │ │ │ ├── text.html.twig │ │ │ │ └── yesno.html.twig │ │ │ ├── editor.html.twig │ │ │ ├── file.html.twig │ │ │ ├── image.html.twig │ │ │ ├── option.html.twig │ │ │ ├── product_attribute.html.twig │ │ │ ├── product_attribute_set.html.twig │ │ │ ├── text.html.twig │ │ │ └── yesno.html.twig │ │ ├── grid │ │ │ ├── date.html.twig │ │ │ ├── image.html.twig │ │ │ ├── select.html.twig │ │ │ └── text.html.twig │ │ ├── interface │ │ │ ├── array.html.twig │ │ │ └── default.html.twig │ │ ├── model │ │ │ ├── default.html.twig │ │ │ ├── dynamic.html.twig │ │ │ └── multiselect.html.twig │ │ ├── schema_fk │ │ │ └── product_attribute_set.html.twig │ │ └── unit_test │ │ │ ├── country.html.twig │ │ │ ├── country_multiple.html.twig │ │ │ ├── date.html.twig │ │ │ ├── decimal.html.twig │ │ │ ├── default.html.twig │ │ │ ├── dynamic.html.twig │ │ │ ├── integer.html.twig │ │ │ ├── multiple.html.twig │ │ │ └── yesno.html.twig │ │ ├── entity │ │ ├── adminhtml │ │ │ └── di │ │ │ │ ├── actions.html.twig │ │ │ │ ├── buttons.html.twig │ │ │ │ ├── controller.html.twig │ │ │ │ ├── processor │ │ │ │ ├── provider.html.twig │ │ │ │ ├── provider │ │ │ │ │ ├── dynamic_rows.html.twig │ │ │ │ │ ├── file.html.twig │ │ │ │ │ ├── image.html.twig │ │ │ │ │ └── multiselect.html.twig │ │ │ │ ├── save.html.twig │ │ │ │ └── save │ │ │ │ │ ├── date.html.twig │ │ │ │ │ ├── dynamic_rows.html.twig │ │ │ │ │ ├── file.html.twig │ │ │ │ │ ├── image.html.twig │ │ │ │ │ └── multiselect.html.twig │ │ │ │ └── ui-config.html.twig │ │ └── di │ │ │ ├── collection.html.twig │ │ │ ├── preference.html.twig │ │ │ ├── store-handlers.html.twig │ │ │ └── store-link.html.twig │ │ └── source │ │ ├── Api │ │ ├── Data │ │ │ ├── _Entity_Interface.php.html.twig │ │ │ └── _Entity_SearchResultsInterface.php.html.twig │ │ ├── _Entity_ListRepositoryInterface.php.html.twig │ │ └── _Entity_RepositoryInterface.php.html.twig │ │ ├── Block │ │ ├── Adminhtml │ │ │ └── Button │ │ │ │ ├── Back.php.html.twig │ │ │ │ ├── Delete.php.html.twig │ │ │ │ ├── Reset.php.html.twig │ │ │ │ └── Save.php.html.twig │ │ └── _Entity_ │ │ │ └── Name.php.html.twig │ │ ├── Controller │ │ ├── Adminhtml │ │ │ ├── Delete.php.html.twig │ │ │ ├── Edit.php.html.twig │ │ │ ├── Index.php.html.twig │ │ │ ├── InlineEdit.php.html.twig │ │ │ ├── MassDelete.php.html.twig │ │ │ ├── NewAction.php.html.twig │ │ │ ├── Save.php.html.twig │ │ │ ├── Upload.php.html.twig │ │ │ └── _Entity_ │ │ │ │ ├── Delete.php.html.twig │ │ │ │ ├── Edit.php.html.twig │ │ │ │ ├── File │ │ │ │ └── Upload.php.html.twig │ │ │ │ ├── Image │ │ │ │ └── Upload.php.html.twig │ │ │ │ ├── Index.php.html.twig │ │ │ │ ├── InlineEdit.php.html.twig │ │ │ │ ├── MassDelete.php.html.twig │ │ │ │ ├── NewAction.php.html.twig │ │ │ │ └── Save.php.html.twig │ │ └── _Entity_ │ │ │ ├── Index.php.html.twig │ │ │ └── View.php.html.twig │ │ ├── Model │ │ ├── FileChecker.php.html.twig │ │ ├── FileInfo.php.html.twig │ │ ├── ResourceModel │ │ │ ├── AbstractModel.php.html.twig │ │ │ ├── Collection │ │ │ │ ├── AbstractCollection.php.html.twig │ │ │ │ └── StoreAwareAbstractCollection.php.html.twig │ │ │ ├── Relation │ │ │ │ └── Store │ │ │ │ │ ├── ReadHandler.php.html.twig │ │ │ │ │ └── SaveHandler.php.html.twig │ │ │ ├── Store.php.html.twig │ │ │ ├── StoreAwareAbstractModel.php.html.twig │ │ │ ├── _Entity_.php.html.twig │ │ │ └── _Entity_ │ │ │ │ └── Collection.php.html.twig │ │ ├── Search │ │ │ └── _Entity_.php.html.twig │ │ ├── Uploader.php.html.twig │ │ ├── _Entity_.php.html.twig │ │ ├── _Entity_ListRepo.php.html.twig │ │ ├── _Entity_Repo.php.html.twig │ │ ├── _Entity_SearchResults.php.html.twig │ │ ├── _Entity_UiCollectionProvider.php.html.twig │ │ └── _Entity_UiManager.php.html.twig │ │ ├── Plugin │ │ └── Theme │ │ │ └── Block │ │ │ └── Html │ │ │ └── TopmenuPlugin.php.html.twig │ │ ├── README.md.html.twig │ │ ├── Source │ │ ├── Catalog │ │ │ ├── ProductAttribute.php.html.twig │ │ │ └── ProductAttributeSet.php.html.twig │ │ ├── Options.php.html.twig │ │ ├── StoreView.php.html.twig │ │ └── _Entity_.php.html.twig │ │ ├── Test │ │ └── Unit │ │ │ ├── Block │ │ │ ├── Adminhtml │ │ │ │ └── Button │ │ │ │ │ ├── BackTest.php.html.twig │ │ │ │ │ ├── DeleteTest.php.html.twig │ │ │ │ │ ├── ResetTest.php.html.twig │ │ │ │ │ └── SaveTest.php.html.twig │ │ │ └── _Entity_ │ │ │ │ └── NameTest.php.html.twig │ │ │ ├── Controller │ │ │ ├── Adminhtml │ │ │ │ ├── DeleteTest.php.html.twig │ │ │ │ ├── EditTest.php.html.twig │ │ │ │ ├── IndexTest.php.html.twig │ │ │ │ ├── InlineEditTest.php.html.twig │ │ │ │ ├── MassDeleteTest.php.html.twig │ │ │ │ ├── NewActionTest.php.html.twig │ │ │ │ ├── SaveTest.php.html.twig │ │ │ │ └── UploadTest.php.html.twig │ │ │ └── _Entity_ │ │ │ │ ├── IndexTest.php.html.twig │ │ │ │ └── ViewTest.php.html.twig │ │ │ ├── Model │ │ │ ├── FileCheckerTest.php.html.twig │ │ │ ├── FileInfoTest.php.html.twig │ │ │ ├── ResourceModel │ │ │ │ ├── AbstractModelTest.php.html.twig │ │ │ │ ├── Collection │ │ │ │ │ ├── AbstractCollectionTest.php.html.twig │ │ │ │ │ └── StoreAwareAbstractCollectionTest.php.html.twig │ │ │ │ ├── Relation │ │ │ │ │ └── Store │ │ │ │ │ │ ├── ReadHandlerTest.php.html.twig │ │ │ │ │ │ └── SaveHandlerTest.php.html.twig │ │ │ │ ├── StoreAwareAbstractModelTest.php.html.twig │ │ │ │ └── StoreTest.php.html.twig │ │ │ ├── Search │ │ │ │ └── _Entity_Test.php.html.twig │ │ │ ├── UploaderTest.php.html.twig │ │ │ ├── _Entity_ListRepoTest.php.html.twig │ │ │ ├── _Entity_RepoTest.php.html.twig │ │ │ ├── _Entity_Test.php.html.twig │ │ │ ├── _Entity_UiCollectionProviderTest.php.html.twig │ │ │ └── _Entity_UiManagerTest.php.html.twig │ │ │ ├── Plugin │ │ │ └── Theme │ │ │ │ └── Block │ │ │ │ └── Html │ │ │ │ └── TopmenuPluginTest.php.html.twig │ │ │ ├── Source │ │ │ ├── Catalog │ │ │ │ ├── ProductAttributeSetTest.php.html.twig │ │ │ │ └── ProductAttributeTest.php.html.twig │ │ │ ├── OptionsTest.php.html.twig │ │ │ ├── StoreViewTest.php.html.twig │ │ │ └── _Entity_Test.php.html.twig │ │ │ ├── Ui │ │ │ ├── Component │ │ │ │ └── Listing │ │ │ │ │ ├── ActionsColumnTest.php.html.twig │ │ │ │ │ └── ImageTest.php.html.twig │ │ │ ├── EntityUiConfigTest.php.html.twig │ │ │ ├── Form │ │ │ │ ├── DataModifier │ │ │ │ │ ├── CompositeDataModifierTest.php.html.twig │ │ │ │ │ ├── DynamicRowsTest.php.html.twig │ │ │ │ │ ├── MultiselectTest.php.html.twig │ │ │ │ │ ├── NullModifierTest.php.html.twig │ │ │ │ │ └── UploadTest.php.html.twig │ │ │ │ └── DataProviderTest.php.html.twig │ │ │ └── SaveDataProcessor │ │ │ │ ├── CompositeProcessorTest.php.html.twig │ │ │ │ ├── DateTest.php.html.twig │ │ │ │ ├── DynamicRowsTest.php.html.twig │ │ │ │ ├── MultiselectTest.php.html.twig │ │ │ │ ├── NullProcessorTest.php.html.twig │ │ │ │ └── UploadTest.php.html.twig │ │ │ └── ViewModel │ │ │ ├── Formatter │ │ │ ├── DateTest.php.html.twig │ │ │ ├── FileTest.php.html.twig │ │ │ ├── ImageTest.php.html.twig │ │ │ ├── OptionsTest.php.html.twig │ │ │ ├── TextTest.php.html.twig │ │ │ └── WysiwygTest.php.html.twig │ │ │ ├── FormatterTest.php.html.twig │ │ │ └── _Entity_ │ │ │ ├── List_Entity_Test.php.html.twig │ │ │ ├── UrlTest.php.html.twig │ │ │ └── ViewTest.php.html.twig │ │ ├── Ui │ │ ├── CollectionProviderInterface.php.html.twig │ │ ├── Component │ │ │ └── Listing │ │ │ │ ├── ActionsColumn.php.html.twig │ │ │ │ └── Image.php.html.twig │ │ ├── EntityUiConfig.php.html.twig │ │ ├── EntityUiManagerInterface.php.html.twig │ │ ├── Form │ │ │ ├── DataModifier │ │ │ │ ├── CompositeDataModifier.php.html.twig │ │ │ │ ├── DynamicRows.php.html.twig │ │ │ │ ├── Multiselect.php.html.twig │ │ │ │ ├── NullModifier.php.html.twig │ │ │ │ └── Upload.php.html.twig │ │ │ ├── DataModifierInterface.php.html.twig │ │ │ └── DataProvider.php.html.twig │ │ ├── SaveDataProcessor │ │ │ ├── CompositeProcessor.php.html.twig │ │ │ ├── Date.php.html.twig │ │ │ ├── DynamicRows.php.html.twig │ │ │ ├── Multiselect.php.html.twig │ │ │ ├── NullProcessor.php.html.twig │ │ │ └── Upload.php.html.twig │ │ └── SaveDataProcessorInterface.php.html.twig │ │ ├── ViewModel │ │ ├── Formatter.php.html.twig │ │ ├── Formatter │ │ │ ├── Date.php.html.twig │ │ │ ├── File.php.html.twig │ │ │ ├── FormatterInterface.php.html.twig │ │ │ ├── Image.php.html.twig │ │ │ ├── Options.php.html.twig │ │ │ ├── Text.php.html.twig │ │ │ └── Wysiwyg.php.html.twig │ │ └── _Entity_ │ │ │ ├── List_Entity_.php.html.twig │ │ │ ├── Url.php.html.twig │ │ │ └── View.php.html.twig │ │ ├── composer.json.html.twig │ │ ├── etc │ │ ├── acl.xml.html.twig │ │ ├── adminhtml │ │ │ ├── di.xml.html.twig │ │ │ ├── menu.xml.html.twig │ │ │ ├── routes.xml.html.twig │ │ │ └── system.xml.html.twig │ │ ├── config.xml.html.twig │ │ ├── db_schema.xml.html.twig │ │ ├── di.xml.html.twig │ │ ├── frontend │ │ │ ├── di.xml.html.twig │ │ │ └── routes.xml.html.twig │ │ ├── module.xml.html.twig │ │ └── webapi.xml.html.twig │ │ ├── registration.php.html.twig │ │ └── view │ │ ├── adminhtml │ │ ├── layout │ │ │ ├── _modulename___entity__edit.xml.html.twig │ │ │ └── _modulename___entity__index.xml.html.twig │ │ ├── ui_component │ │ │ ├── _modulename___entity__form.xml.html.twig │ │ │ └── _modulename___entity__listing.xml.html.twig │ │ └── web │ │ │ └── template │ │ │ └── preview.html.html.twig │ │ └── frontend │ │ ├── layout │ │ ├── _modulename___entity__index.xml.html.twig │ │ ├── _modulename___entity__view.xml.html.twig │ │ └── default.xml.html.twig │ │ └── templates │ │ └── _entity_ │ │ ├── list.phtml.html.twig │ │ ├── name.phtml.html.twig │ │ └── view.phtml.html.twig ├── Tests │ └── Unit │ │ └── Model │ │ ├── Attribute │ │ ├── Dynamic │ │ │ └── Type │ │ │ │ ├── BaseTypeTest.php │ │ │ │ ├── ProductAttributeSetTest.php │ │ │ │ └── ProductAttributeTest.php │ │ ├── DynamicTest.php │ │ └── Type │ │ │ ├── BaseTypeTest.php │ │ │ ├── DropdownTest.php │ │ │ ├── DynamicTest.php │ │ │ ├── ProductAttributeSetTest.php │ │ │ └── ProductAttributeTest.php │ │ ├── AttributeTest.php │ │ ├── EntityTest.php │ │ ├── Module │ │ └── FactoryTest.php │ │ └── ModuleTest.php └── UmcMagentoBundle.php ├── ShopwareBundle ├── DependencyInjection │ └── UmcShopwareExtension.php ├── Resources │ ├── config │ │ ├── platform.yml │ │ └── services.xml │ └── public │ │ └── logo │ │ └── shopware.png └── UmcShopwareBundle.php └── SyliusBundle ├── DependencyInjection └── UmcSyliusExtension.php ├── Model └── Entity.php ├── Resources ├── config │ ├── extensible_parameters.yml │ ├── form │ │ ├── attribute.yml │ │ ├── entity.yml │ │ └── module.yml │ ├── platform.yml │ ├── services.xml │ └── source │ │ ├── entity.yml │ │ └── module.yml ├── public │ └── logo │ │ └── sylius.png └── views │ ├── attribute │ ├── grid │ │ ├── date.html.twig │ │ ├── default.html.twig │ │ └── yesno.html.twig │ └── model │ │ ├── decimal.html.twig │ │ ├── default.html.twig │ │ └── yesno.html.twig │ └── source │ ├── config │ ├── packages │ │ └── _namespace___modulename_.yml.html.twig │ └── routes │ │ └── _namespace___modulename_.yml.html.twig │ └── src │ └── _Namespace_ │ └── Bundle │ └── _ModuleName_Bundle │ ├── Entity │ └── _Entity_.php.html.twig │ ├── Menu │ └── AdminMenuListener.php.html.twig │ ├── Resources │ ├── config │ │ ├── _namespace___modulename_.yml.html.twig │ │ ├── doctrine │ │ │ └── _Entity_.orm.xml.html.twig │ │ ├── grid │ │ │ └── _entity_.yml.html.twig │ │ ├── routing.yml.html.twig │ │ └── services.yml.html.twig │ └── translations │ │ └── messages.en.yml.html.twig │ ├── _Namespace__ModuleName_Bundle.php.html.twig │ └── composer.json.html.twig └── UmcSyliusBundle.php /.env.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/.env.dist -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/.gitignore -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/.htaccess -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/README.md -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/bin/console -------------------------------------------------------------------------------- /bin/phpunit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/bin/phpunit -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/composer.lock -------------------------------------------------------------------------------- /config/bundles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/config/bundles.php -------------------------------------------------------------------------------- /config/packages/dev/routing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/config/packages/dev/routing.yaml -------------------------------------------------------------------------------- /config/packages/dev/web_profiler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/config/packages/dev/web_profiler.yaml -------------------------------------------------------------------------------- /config/packages/framework.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/config/packages/framework.yaml -------------------------------------------------------------------------------- /config/packages/routing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/config/packages/routing.yaml -------------------------------------------------------------------------------- /config/packages/sensio_framework_extra.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/config/packages/sensio_framework_extra.yaml -------------------------------------------------------------------------------- /config/packages/test/framework.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/config/packages/test/framework.yaml -------------------------------------------------------------------------------- /config/packages/test/web_profiler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/config/packages/test/web_profiler.yaml -------------------------------------------------------------------------------- /config/packages/twig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/config/packages/twig.yaml -------------------------------------------------------------------------------- /config/packages/twig_extensions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/config/packages/twig_extensions.yaml -------------------------------------------------------------------------------- /config/routes/annotations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/config/routes/annotations.yaml -------------------------------------------------------------------------------- /config/routes/dev/web_profiler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/config/routes/dev/web_profiler.yaml -------------------------------------------------------------------------------- /config/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/config/services.yaml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/index.php -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Kernel.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Config/FileLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Config/FileLoader.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Config/Form/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Config/Form/Config.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Config/Form/Modifier/Tab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Config/Form/Modifier/Tab.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Config/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Config/Loader.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Config/Loader/PlatformAwareFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Config/Loader/PlatformAwareFactory.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Config/Modifier/Composite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Config/Modifier/Composite.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Config/Modifier/ModifierInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Config/Modifier/ModifierInterface.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Config/Modifier/Parameter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Config/Modifier/Parameter.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Config/Modifier/Remove.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Config/Modifier/Remove.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Config/Modifier/Sort.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Config/Modifier/Sort.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Config/ParamMerger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Config/ParamMerger.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Config/ProcessorFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Config/ProcessorFactory.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Config/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Config/Provider.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Config/Provider/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Config/Provider/Factory.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Config/Source/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Config/Source/Config.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Controller/DownloadController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Controller/DownloadController.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Controller/EditController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Controller/EditController.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Controller/HelpController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Controller/HelpController.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Controller/IndexController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Controller/IndexController.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Controller/ListController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Controller/ListController.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Controller/SaveController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Controller/SaveController.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Controller/SaveSettingsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Controller/SaveSettingsController.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Controller/SettingsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Controller/SettingsController.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/DependencyInjection/UmcCoreExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/DependencyInjection/UmcCoreExtension.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Model/Attribute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Model/Attribute.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Model/Attribute/Dynamic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Model/Attribute/Dynamic.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Model/Attribute/Dynamic/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Model/Attribute/Dynamic/Factory.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Model/Attribute/Dynamic/Option.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Model/Attribute/Dynamic/Option.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Model/Attribute/Dynamic/Option/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Model/Attribute/Dynamic/Option/Factory.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Model/Attribute/Dynamic/Type/BaseType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Model/Attribute/Dynamic/Type/BaseType.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Model/Attribute/Dynamic/Type/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Model/Attribute/Dynamic/Type/Factory.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Model/Attribute/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Model/Attribute/Factory.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Model/Attribute/Option.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Model/Attribute/Option.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Model/Attribute/Option/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Model/Attribute/Option/Factory.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Model/Attribute/Type/BaseType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Model/Attribute/Type/BaseType.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Model/Attribute/Type/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Model/Attribute/Type/Factory.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Model/Entity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Model/Entity.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Model/Entity/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Model/Entity/Factory.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Model/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Model/Module.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Model/Module/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Model/Module/Factory.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Model/Module/Factory/Locator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Model/Module/Factory/Locator.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Model/Platform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Model/Platform.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Model/Platform/Builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Model/Platform/Builder.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Model/Platform/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Model/Platform/Config.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Model/Platform/ConfigException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Model/Platform/ConfigException.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Model/Platform/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Model/Platform/Factory.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Model/Platform/Pool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Model/Platform/Pool.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Model/Platform/Version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Model/Platform/Version.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Model/Platform/Version/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Model/Platform/Version/Factory.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Model/Relation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Model/Relation.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Model/Relation/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Model/Relation/Factory.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Repository/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Repository/Module.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Repository/Settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Repository/Settings.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Repository/Settings/MissingSettingsFileException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Repository/Settings/MissingSettingsFileException.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/config/extensible_parameters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/config/extensible_parameters.yml -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/config/form/attribute.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/config/form/attribute.yml -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/config/form/dynamic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/config/form/dynamic.yml -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/config/form/entity.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/config/form/entity.yml -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/config/form/module.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/config/form/module.yml -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/config/form/option.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/config/form/option.yml -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/config/form/relation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/config/form/relation.yml -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/config/services.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/config/services.xml -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/bootstrap/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/bootstrap/css/bootstrap-grid.css -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/bootstrap/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/bootstrap/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/bootstrap/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/bootstrap/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/bootstrap/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/bootstrap/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/bootstrap/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/bootstrap/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/bootstrap/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/bootstrap/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/bootstrap/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/bootstrap/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/bootstrap/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/bootstrap/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/bootstrap/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/bootstrap/css/bootstrap.css.map -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/bootstrap/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/bootstrap/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/bootstrap/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/bootstrap/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/bootstrap/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/bootstrap/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/bootstrap/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/bootstrap/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/bootstrap/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/bootstrap/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/bootstrap/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/bootstrap/js/bootstrap.js.map -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/bootstrap/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/bootstrap/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/bootstrap/js/popper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/bootstrap/js/popper.js -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/font-awesome/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/font-awesome/css/font-awesome.css -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/font-awesome/css/font-awesome.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/font-awesome/css/font-awesome.css.map -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/font-awesome/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/font-awesome/css/font-awesome.min.css -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/font-awesome/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/font-awesome/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/font-awesome/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/font-awesome/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/font-awesome/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/font-awesome/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/font-awesome/webfonts/fa-brands-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/font-awesome/webfonts/fa-brands-400.svg -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/font-awesome/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/font-awesome/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/font-awesome/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/font-awesome/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/font-awesome/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/font-awesome/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/font-awesome/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/font-awesome/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/font-awesome/webfonts/fa-regular-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/font-awesome/webfonts/fa-regular-400.svg -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/font-awesome/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/font-awesome/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/font-awesome/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/font-awesome/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/font-awesome/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/font-awesome/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/font-awesome/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/font-awesome/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/font-awesome/webfonts/fa-solid-900.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/font-awesome/webfonts/fa-solid-900.svg -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/font-awesome/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/font-awesome/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/font-awesome/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/font-awesome/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/font-awesome/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/font-awesome/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/jquery-ui/AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/jquery-ui/AUTHORS.txt -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/jquery-ui/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/jquery-ui/LICENSE.txt -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/jquery-ui/external/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/jquery-ui/external/jquery/jquery.js -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/jquery-ui/font/jquery-ui.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/jquery-ui/font/jquery-ui.eot -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/jquery-ui/font/jquery-ui.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/jquery-ui/font/jquery-ui.svg -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/jquery-ui/font/jquery-ui.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/jquery-ui/font/jquery-ui.ttf -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/jquery-ui/font/jquery-ui.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/jquery-ui/font/jquery-ui.woff -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/jquery-ui/font/jquery-ui.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/jquery-ui/font/jquery-ui.woff2 -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/jquery-ui/images/ui-bg_glass_20_555555_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/jquery-ui/images/ui-bg_glass_20_555555_1x400.png -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/jquery-ui/images/ui-bg_glass_40_0078a3_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/jquery-ui/images/ui-bg_glass_40_0078a3_1x400.png -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/jquery-ui/images/ui-bg_glass_40_ffc73d_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/jquery-ui/images/ui-bg_glass_40_ffc73d_1x400.png -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/jquery-ui/images/ui-bg_gloss-wave_25_333333_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/jquery-ui/images/ui-bg_gloss-wave_25_333333_500x100.png -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/jquery-ui/images/ui-bg_highlight-soft_80_eeeeee_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/jquery-ui/images/ui-bg_highlight-soft_80_eeeeee_1x100.png -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/jquery-ui/images/ui-bg_inset-soft_25_000000_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/jquery-ui/images/ui-bg_inset-soft_25_000000_1x100.png -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/jquery-ui/images/ui-bg_inset-soft_30_f58400_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/jquery-ui/images/ui-bg_inset-soft_30_f58400_1x100.png -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/jquery-ui/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/jquery-ui/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/jquery-ui/images/ui-icons_4b8e0b_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/jquery-ui/images/ui-icons_4b8e0b_256x240.png -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/jquery-ui/images/ui-icons_a83300_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/jquery-ui/images/ui-icons_a83300_256x240.png -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/jquery-ui/images/ui-icons_cccccc_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/jquery-ui/images/ui-icons_cccccc_256x240.png -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/jquery-ui/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/jquery-ui/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/jquery-ui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/jquery-ui/index.html -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/jquery-ui/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/jquery-ui/jquery-ui.css -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/jquery-ui/jquery-ui.icon-font.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/jquery-ui/jquery-ui.icon-font.css -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/jquery-ui/jquery-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/jquery-ui/jquery-ui.js -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/jquery-ui/jquery-ui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/jquery-ui/jquery-ui.min.css -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/jquery-ui/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/jquery-ui/jquery-ui.min.js -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/jquery-ui/jquery-ui.structure.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/jquery-ui/jquery-ui.structure.css -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/jquery-ui/jquery-ui.structure.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/jquery-ui/jquery-ui.structure.min.css -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/jquery-ui/jquery-ui.theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/jquery-ui/jquery-ui.theme.css -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/jquery-ui/jquery-ui.theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/jquery-ui/jquery-ui.theme.min.css -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/jquery-ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/jquery-ui/package.json -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/jquery/form-validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/jquery/form-validator.js -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/jquery/jquery.ajax-progress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/jquery/jquery.ajax-progress.js -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/jquery/jquery.js -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/jquery/jquery.min.js -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/jquery/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/jquery/jquery.min.map -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/ko/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/ko/ko.js -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/ko/ko.sortable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/ko/ko.sortable.js -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/select2/select2-bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/select2/select2-bootstrap.css -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/select2/select2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/select2/select2.css -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/select2/select2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/select2/select2.js -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/umc/dark-mode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/umc/dark-mode.js -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/umc/edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/umc/edit.js -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/umc/info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/umc/info.js -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/umc/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/umc/settings.js -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/umc/umc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/umc/umc.css -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/public/umc/umc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/public/umc/umc.js -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/views/base.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/views/base.html.twig -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/views/edit.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/views/edit.html.twig -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/views/edit/form.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/views/edit/form.html.twig -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/views/edit/form/elements/validation.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/views/edit/form/elements/validation.html.twig -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/views/edit/form/field/checkbox.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/views/edit/form/field/checkbox.html.twig -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/views/edit/form/field/choice.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/views/edit/form/field/choice.html.twig -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/views/edit/form/field/radio.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/views/edit/form/field/radio.html.twig -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/views/edit/form/field/text.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/views/edit/form/field/text.html.twig -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/views/edit/form/field/textarea.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/views/edit/form/field/textarea.html.twig -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/views/edit/form/field/validation.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/views/edit/form/field/validation.html.twig -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/views/help.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/views/help.html.twig -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/views/index.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/views/index.html.twig -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/views/index/menu.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/views/index/menu.html.twig -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/views/list.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/views/list.html.twig -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/views/modal.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/views/modal.html.twig -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/views/settings.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/views/settings.html.twig -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Resources/views/settings/form.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Resources/views/settings/form.html.twig -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Service/Archiver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Service/Archiver.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Service/Builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Service/Builder.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Service/Cs/Executor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Service/Cs/Executor.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Service/Cs/ProcessFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Service/Cs/ProcessFactory.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Service/FileFinderFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Service/FileFinderFactory.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Service/Generator/ContentProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Service/Generator/ContentProcessor.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Service/Generator/Entity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Service/Generator/Entity.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Service/Generator/GeneratorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Service/Generator/GeneratorInterface.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Service/Generator/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Service/Generator/Module.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Service/Generator/Pool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Service/Generator/Pool.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Service/Generator/Pool/Locator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Service/Generator/Pool/Locator.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Service/License/Pool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Service/License/Pool.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Service/License/Processor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Service/License/Processor.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Service/Locator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Service/Locator.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Service/Validator/Children.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Service/Validator/Children.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Service/Validator/CompositeValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Service/Validator/CompositeValidator.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Service/Validator/EntityName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Service/Validator/EntityName.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Service/Validator/Locator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Service/Validator/Locator.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Service/Validator/NotSame.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Service/Validator/NotSame.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Service/Validator/Pool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Service/Validator/Pool.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Service/Validator/RestrictedWords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Service/Validator/RestrictedWords.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Service/Validator/UniqueChildren.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Service/Validator/UniqueChildren.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Service/Validator/ValidationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Service/Validator/ValidationException.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Service/Validator/ValidatorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Service/Validator/ValidatorInterface.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Service/ZipArchiveFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Service/ZipArchiveFactory.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Tests/Unit/Config/FileLoaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Tests/Unit/Config/FileLoaderTest.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Tests/Unit/Config/Form/Modifier/TabTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Tests/Unit/Config/Form/Modifier/TabTest.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Tests/Unit/Config/Loader/PlatformAwareFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Tests/Unit/Config/Loader/PlatformAwareFactoryTest.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Tests/Unit/Config/LoaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Tests/Unit/Config/LoaderTest.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Tests/Unit/Config/Modifier/CompositeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Tests/Unit/Config/Modifier/CompositeTest.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Tests/Unit/Config/Modifier/ParameterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Tests/Unit/Config/Modifier/ParameterTest.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Tests/Unit/Config/Modifier/RemoveTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Tests/Unit/Config/Modifier/RemoveTest.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Tests/Unit/Config/Modifier/SortTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Tests/Unit/Config/Modifier/SortTest.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Tests/Unit/Config/ParamMergerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Tests/Unit/Config/ParamMergerTest.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Tests/Unit/Config/ProcessorFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Tests/Unit/Config/ProcessorFactoryTest.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Tests/Unit/Config/Provider/FactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Tests/Unit/Config/Provider/FactoryTest.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Tests/Unit/Config/ProviderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Tests/Unit/Config/ProviderTest.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Tests/Unit/Controller/DownloadControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Tests/Unit/Controller/DownloadControllerTest.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Tests/Unit/Controller/EditControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Tests/Unit/Controller/EditControllerTest.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Tests/Unit/Controller/HelpControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Tests/Unit/Controller/HelpControllerTest.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Tests/Unit/Controller/IndexControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Tests/Unit/Controller/IndexControllerTest.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Tests/Unit/Controller/ListControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Tests/Unit/Controller/ListControllerTest.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Tests/Unit/Controller/SaveControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Tests/Unit/Controller/SaveControllerTest.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Tests/Unit/Controller/SaveSettingsControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Tests/Unit/Controller/SaveSettingsControllerTest.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Tests/Unit/Controller/SettingsControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Tests/Unit/Controller/SettingsControllerTest.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Tests/Unit/Model/Attribute/Dynamic/FactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Tests/Unit/Model/Attribute/Dynamic/FactoryTest.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Tests/Unit/Model/Attribute/Dynamic/Option/FactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Tests/Unit/Model/Attribute/Dynamic/Option/FactoryTest.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Tests/Unit/Model/Attribute/Dynamic/OptionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Tests/Unit/Model/Attribute/Dynamic/OptionTest.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Tests/Unit/Model/Attribute/Dynamic/Type/BaseTypeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Tests/Unit/Model/Attribute/Dynamic/Type/BaseTypeTest.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Tests/Unit/Model/Attribute/Dynamic/Type/FactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Tests/Unit/Model/Attribute/Dynamic/Type/FactoryTest.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Tests/Unit/Model/Attribute/DynamicTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Tests/Unit/Model/Attribute/DynamicTest.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Tests/Unit/Model/Attribute/FactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Tests/Unit/Model/Attribute/FactoryTest.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Tests/Unit/Model/Attribute/Option/FactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Tests/Unit/Model/Attribute/Option/FactoryTest.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Tests/Unit/Model/Attribute/OptionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Tests/Unit/Model/Attribute/OptionTest.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Tests/Unit/Model/Attribute/Type/BaseTypeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Tests/Unit/Model/Attribute/Type/BaseTypeTest.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Tests/Unit/Model/Attribute/Type/FactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Tests/Unit/Model/Attribute/Type/FactoryTest.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Tests/Unit/Model/AttributeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Tests/Unit/Model/AttributeTest.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Tests/Unit/Model/Entity/FactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Tests/Unit/Model/Entity/FactoryTest.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Tests/Unit/Model/EntityTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Tests/Unit/Model/EntityTest.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Tests/Unit/Model/Module/Factory/LocatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Tests/Unit/Model/Module/Factory/LocatorTest.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Tests/Unit/Model/Module/FactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Tests/Unit/Model/Module/FactoryTest.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Tests/Unit/Model/ModuleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Tests/Unit/Model/ModuleTest.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Tests/Unit/Model/Platform/BuilderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Tests/Unit/Model/Platform/BuilderTest.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Tests/Unit/Model/Platform/FactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Tests/Unit/Model/Platform/FactoryTest.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Tests/Unit/Model/Platform/PoolTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Tests/Unit/Model/Platform/PoolTest.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Tests/Unit/Model/Platform/Version/FactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Tests/Unit/Model/Platform/Version/FactoryTest.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Tests/Unit/Model/Platform/VersionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Tests/Unit/Model/Platform/VersionTest.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Tests/Unit/Model/PlatformTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Tests/Unit/Model/PlatformTest.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Tests/Unit/Model/Relation/FactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Tests/Unit/Model/Relation/FactoryTest.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Tests/Unit/Model/RelationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Tests/Unit/Model/RelationTest.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Tests/Unit/Repository/ModuleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Tests/Unit/Repository/ModuleTest.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Tests/Unit/Repository/SettingsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Tests/Unit/Repository/SettingsTest.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Tests/Unit/Service/ArchiverTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Tests/Unit/Service/ArchiverTest.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Tests/Unit/Service/BuilderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Tests/Unit/Service/BuilderTest.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Tests/Unit/Service/Cs/ExecutorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Tests/Unit/Service/Cs/ExecutorTest.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Tests/Unit/Service/Cs/ProcessFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Tests/Unit/Service/Cs/ProcessFactoryTest.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Tests/Unit/Service/FinderFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Tests/Unit/Service/FinderFactoryTest.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Tests/Unit/Service/Generator/ContentProcessorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Tests/Unit/Service/Generator/ContentProcessorTest.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Tests/Unit/Service/Generator/EntityTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Tests/Unit/Service/Generator/EntityTest.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Tests/Unit/Service/Generator/ModuleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Tests/Unit/Service/Generator/ModuleTest.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Tests/Unit/Service/Generator/Pool/LocatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Tests/Unit/Service/Generator/Pool/LocatorTest.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Tests/Unit/Service/Generator/PoolTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Tests/Unit/Service/Generator/PoolTest.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Tests/Unit/Service/License/PoolTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Tests/Unit/Service/License/PoolTest.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Tests/Unit/Service/License/ProcessorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Tests/Unit/Service/License/ProcessorTest.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Tests/Unit/Service/LocatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Tests/Unit/Service/LocatorTest.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Tests/Unit/Service/Validator/ChildrenTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Tests/Unit/Service/Validator/ChildrenTest.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Tests/Unit/Service/Validator/CompositeValidatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Tests/Unit/Service/Validator/CompositeValidatorTest.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Tests/Unit/Service/Validator/EntityNameTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Tests/Unit/Service/Validator/EntityNameTest.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Tests/Unit/Service/Validator/LocatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Tests/Unit/Service/Validator/LocatorTest.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Tests/Unit/Service/Validator/NotSameTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Tests/Unit/Service/Validator/NotSameTest.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Tests/Unit/Service/Validator/PoolTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Tests/Unit/Service/Validator/PoolTest.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Tests/Unit/Service/Validator/RestrictedWordsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Tests/Unit/Service/Validator/RestrictedWordsTest.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Tests/Unit/Service/Validator/UniqueChildrenTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Tests/Unit/Service/Validator/UniqueChildrenTest.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Tests/Unit/Service/ZipArchiveFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Tests/Unit/Service/ZipArchiveFactoryTest.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Tests/Unit/Twig/LicenseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Tests/Unit/Twig/LicenseTest.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Tests/Unit/Twig/ModifiersTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Tests/Unit/Twig/ModifiersTest.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Tests/Unit/Twig/SortMarkupTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Tests/Unit/Twig/SortMarkupTest.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Tests/Unit/Util/SorterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Tests/Unit/Util/SorterTest.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Tests/Unit/Util/StringUtilTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Tests/Unit/Util/StringUtilTest.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Tests/Unit/VersionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Tests/Unit/VersionTest.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Tests/Unit/_fixtures/download.zip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Tests/Unit/_fixtures/yaml/not-valid.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Tests/Unit/_fixtures/yaml/not-valid.yml -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Tests/Unit/_fixtures/yaml/valid.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Tests/Unit/_fixtures/yaml/valid.yml -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Twig/License.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Twig/License.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Twig/Modifiers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Twig/Modifiers.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Twig/SortMarkup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Twig/SortMarkup.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/UmcCoreBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/UmcCoreBundle.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Util/Sorter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Util/Sorter.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Util/StringUtil.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Util/StringUtil.php -------------------------------------------------------------------------------- /src/Umc/CoreBundle/Version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/CoreBundle/Version.php -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/DependencyInjection/UmcMagentoExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/DependencyInjection/UmcMagentoExtension.php -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Model/Attribute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Model/Attribute.php -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Model/Attribute/Dynamic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Model/Attribute/Dynamic.php -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Model/Attribute/Dynamic/Type/BaseType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Model/Attribute/Dynamic/Type/BaseType.php -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Model/Attribute/Dynamic/Type/ProductAttribute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Model/Attribute/Dynamic/Type/ProductAttribute.php -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Model/Attribute/Dynamic/Type/ProductAttributeSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Model/Attribute/Dynamic/Type/ProductAttributeSet.php -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Model/Attribute/Type/BaseType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Model/Attribute/Type/BaseType.php -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Model/Attribute/Type/Dropdown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Model/Attribute/Type/Dropdown.php -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Model/Attribute/Type/Dynamic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Model/Attribute/Type/Dynamic.php -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Model/Attribute/Type/ProductAttribute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Model/Attribute/Type/ProductAttribute.php -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Model/Attribute/Type/ProductAttributeSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Model/Attribute/Type/ProductAttributeSet.php -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Model/Entity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Model/Entity.php -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Model/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Model/Module.php -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Model/Module/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Model/Module/Factory.php -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/config/extensible_parameters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/config/extensible_parameters.yml -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/config/form/attribute.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/config/form/attribute.yml -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/config/form/entity.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/config/form/entity.yml -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/config/form/module.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/config/form/module.yml -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/config/platform.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/config/platform.yml -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/config/services.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/config/services.xml -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/config/source/entity.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/config/source/entity.yml -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/config/source/entity_unit_tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/config/source/entity_unit_tests.yml -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/config/source/module.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/config/source/module.yml -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/config/source/module_unit_tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/config/source/module_unit_tests.yml -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/public/logo/magento.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/public/logo/magento.png -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/attribute/form/date.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/attribute/form/date.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/attribute/form/dynamic.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/attribute/form/dynamic.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/attribute/form/dynamic/date.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/attribute/form/dynamic/date.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/attribute/form/dynamic/select.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/attribute/form/dynamic/select.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/attribute/form/dynamic/text.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/attribute/form/dynamic/text.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/attribute/form/dynamic/textarea.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/attribute/form/dynamic/textarea.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/attribute/form/dynamic/yesno.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/attribute/form/dynamic/yesno.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/attribute/form/file.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/attribute/form/file.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/attribute/form/select.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/attribute/form/select.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/attribute/form/text.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/attribute/form/text.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/attribute/form/textarea.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/attribute/form/textarea.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/attribute/form/wysiwyg.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/attribute/form/wysiwyg.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/attribute/form/yesno.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/attribute/form/yesno.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/attribute/frontend/country.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/attribute/frontend/country.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/attribute/frontend/date.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/attribute/frontend/date.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/attribute/frontend/dynamic.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/attribute/frontend/dynamic.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/attribute/frontend/dynamic/country.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/attribute/frontend/dynamic/country.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/attribute/frontend/dynamic/date.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/attribute/frontend/dynamic/date.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/attribute/frontend/dynamic/option.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/attribute/frontend/dynamic/option.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/attribute/frontend/dynamic/product_attribute.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/attribute/frontend/dynamic/product_attribute.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/attribute/frontend/dynamic/product_attribute_set.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/attribute/frontend/dynamic/product_attribute_set.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/attribute/frontend/dynamic/text.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/attribute/frontend/dynamic/text.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/attribute/frontend/dynamic/yesno.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/attribute/frontend/dynamic/yesno.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/attribute/frontend/editor.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/attribute/frontend/editor.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/attribute/frontend/file.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/attribute/frontend/file.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/attribute/frontend/image.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/attribute/frontend/image.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/attribute/frontend/option.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/attribute/frontend/option.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/attribute/frontend/product_attribute.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/attribute/frontend/product_attribute.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/attribute/frontend/product_attribute_set.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/attribute/frontend/product_attribute_set.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/attribute/frontend/text.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/attribute/frontend/text.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/attribute/frontend/yesno.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/attribute/frontend/yesno.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/attribute/grid/date.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/attribute/grid/date.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/attribute/grid/image.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/attribute/grid/image.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/attribute/grid/select.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/attribute/grid/select.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/attribute/grid/text.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/attribute/grid/text.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/attribute/interface/array.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/attribute/interface/array.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/attribute/interface/default.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/attribute/interface/default.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/attribute/model/default.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/attribute/model/default.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/attribute/model/dynamic.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/attribute/model/dynamic.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/attribute/model/multiselect.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/attribute/model/multiselect.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/attribute/schema_fk/product_attribute_set.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/attribute/schema_fk/product_attribute_set.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/attribute/unit_test/country.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/attribute/unit_test/country.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/attribute/unit_test/country_multiple.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/attribute/unit_test/country_multiple.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/attribute/unit_test/date.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/attribute/unit_test/date.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/attribute/unit_test/decimal.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/attribute/unit_test/decimal.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/attribute/unit_test/default.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/attribute/unit_test/default.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/attribute/unit_test/dynamic.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/attribute/unit_test/dynamic.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/attribute/unit_test/integer.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/attribute/unit_test/integer.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/attribute/unit_test/multiple.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/attribute/unit_test/multiple.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/attribute/unit_test/yesno.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/attribute/unit_test/yesno.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/entity/adminhtml/di/actions.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/entity/adminhtml/di/actions.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/entity/adminhtml/di/buttons.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/entity/adminhtml/di/buttons.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/entity/adminhtml/di/controller.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/entity/adminhtml/di/controller.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/entity/adminhtml/di/processor/provider.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/entity/adminhtml/di/processor/provider.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/entity/adminhtml/di/processor/provider/dynamic_rows.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/entity/adminhtml/di/processor/provider/dynamic_rows.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/entity/adminhtml/di/processor/provider/file.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/entity/adminhtml/di/processor/provider/file.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/entity/adminhtml/di/processor/provider/image.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/entity/adminhtml/di/processor/provider/image.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/entity/adminhtml/di/processor/provider/multiselect.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/entity/adminhtml/di/processor/provider/multiselect.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/entity/adminhtml/di/processor/save.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/entity/adminhtml/di/processor/save.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/entity/adminhtml/di/processor/save/date.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/entity/adminhtml/di/processor/save/date.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/entity/adminhtml/di/processor/save/dynamic_rows.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/entity/adminhtml/di/processor/save/dynamic_rows.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/entity/adminhtml/di/processor/save/file.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/entity/adminhtml/di/processor/save/file.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/entity/adminhtml/di/processor/save/image.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/entity/adminhtml/di/processor/save/image.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/entity/adminhtml/di/processor/save/multiselect.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/entity/adminhtml/di/processor/save/multiselect.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/entity/adminhtml/di/ui-config.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/entity/adminhtml/di/ui-config.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/entity/di/collection.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/entity/di/collection.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/entity/di/preference.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/entity/di/preference.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/entity/di/store-handlers.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/entity/di/store-handlers.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/entity/di/store-link.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/entity/di/store-link.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Api/Data/_Entity_Interface.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Api/Data/_Entity_Interface.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Api/Data/_Entity_SearchResultsInterface.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Api/Data/_Entity_SearchResultsInterface.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Api/_Entity_ListRepositoryInterface.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Api/_Entity_ListRepositoryInterface.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Api/_Entity_RepositoryInterface.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Api/_Entity_RepositoryInterface.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Block/Adminhtml/Button/Back.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Block/Adminhtml/Button/Back.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Block/Adminhtml/Button/Delete.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Block/Adminhtml/Button/Delete.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Block/Adminhtml/Button/Reset.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Block/Adminhtml/Button/Reset.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Block/Adminhtml/Button/Save.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Block/Adminhtml/Button/Save.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Block/_Entity_/Name.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Block/_Entity_/Name.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Controller/Adminhtml/Delete.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Controller/Adminhtml/Delete.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Controller/Adminhtml/Edit.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Controller/Adminhtml/Edit.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Controller/Adminhtml/Index.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Controller/Adminhtml/Index.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Controller/Adminhtml/InlineEdit.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Controller/Adminhtml/InlineEdit.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Controller/Adminhtml/MassDelete.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Controller/Adminhtml/MassDelete.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Controller/Adminhtml/NewAction.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Controller/Adminhtml/NewAction.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Controller/Adminhtml/Save.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Controller/Adminhtml/Save.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Controller/Adminhtml/Upload.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Controller/Adminhtml/Upload.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Controller/Adminhtml/_Entity_/Delete.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Controller/Adminhtml/_Entity_/Delete.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Controller/Adminhtml/_Entity_/Edit.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Controller/Adminhtml/_Entity_/Edit.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Controller/Adminhtml/_Entity_/File/Upload.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Controller/Adminhtml/_Entity_/File/Upload.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Controller/Adminhtml/_Entity_/Image/Upload.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Controller/Adminhtml/_Entity_/Image/Upload.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Controller/Adminhtml/_Entity_/Index.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Controller/Adminhtml/_Entity_/Index.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Controller/Adminhtml/_Entity_/InlineEdit.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Controller/Adminhtml/_Entity_/InlineEdit.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Controller/Adminhtml/_Entity_/MassDelete.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Controller/Adminhtml/_Entity_/MassDelete.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Controller/Adminhtml/_Entity_/NewAction.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Controller/Adminhtml/_Entity_/NewAction.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Controller/Adminhtml/_Entity_/Save.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Controller/Adminhtml/_Entity_/Save.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Controller/_Entity_/Index.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Controller/_Entity_/Index.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Controller/_Entity_/View.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Controller/_Entity_/View.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Model/FileChecker.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Model/FileChecker.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Model/FileInfo.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Model/FileInfo.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Model/ResourceModel/AbstractModel.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Model/ResourceModel/AbstractModel.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Model/ResourceModel/Collection/AbstractCollection.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Model/ResourceModel/Collection/AbstractCollection.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Model/ResourceModel/Collection/StoreAwareAbstractCollection.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Model/ResourceModel/Collection/StoreAwareAbstractCollection.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Model/ResourceModel/Relation/Store/ReadHandler.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Model/ResourceModel/Relation/Store/ReadHandler.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Model/ResourceModel/Relation/Store/SaveHandler.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Model/ResourceModel/Relation/Store/SaveHandler.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Model/ResourceModel/Store.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Model/ResourceModel/Store.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Model/ResourceModel/StoreAwareAbstractModel.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Model/ResourceModel/StoreAwareAbstractModel.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Model/ResourceModel/_Entity_.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Model/ResourceModel/_Entity_.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Model/ResourceModel/_Entity_/Collection.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Model/ResourceModel/_Entity_/Collection.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Model/Search/_Entity_.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Model/Search/_Entity_.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Model/Uploader.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Model/Uploader.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Model/_Entity_.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Model/_Entity_.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Model/_Entity_ListRepo.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Model/_Entity_ListRepo.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Model/_Entity_Repo.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Model/_Entity_Repo.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Model/_Entity_SearchResults.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Model/_Entity_SearchResults.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Model/_Entity_UiCollectionProvider.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Model/_Entity_UiCollectionProvider.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Model/_Entity_UiManager.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Model/_Entity_UiManager.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Plugin/Theme/Block/Html/TopmenuPlugin.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Plugin/Theme/Block/Html/TopmenuPlugin.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/README.md.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/README.md.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Source/Catalog/ProductAttribute.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Source/Catalog/ProductAttribute.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Source/Catalog/ProductAttributeSet.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Source/Catalog/ProductAttributeSet.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Source/Options.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Source/Options.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Source/StoreView.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Source/StoreView.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Source/_Entity_.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Source/_Entity_.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Block/Adminhtml/Button/BackTest.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Block/Adminhtml/Button/BackTest.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Block/Adminhtml/Button/DeleteTest.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Block/Adminhtml/Button/DeleteTest.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Block/Adminhtml/Button/ResetTest.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Block/Adminhtml/Button/ResetTest.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Block/Adminhtml/Button/SaveTest.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Block/Adminhtml/Button/SaveTest.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Block/_Entity_/NameTest.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Block/_Entity_/NameTest.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Controller/Adminhtml/DeleteTest.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Controller/Adminhtml/DeleteTest.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Controller/Adminhtml/EditTest.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Controller/Adminhtml/EditTest.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Controller/Adminhtml/IndexTest.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Controller/Adminhtml/IndexTest.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Controller/Adminhtml/InlineEditTest.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Controller/Adminhtml/InlineEditTest.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Controller/Adminhtml/MassDeleteTest.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Controller/Adminhtml/MassDeleteTest.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Controller/Adminhtml/NewActionTest.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Controller/Adminhtml/NewActionTest.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Controller/Adminhtml/SaveTest.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Controller/Adminhtml/SaveTest.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Controller/Adminhtml/UploadTest.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Controller/Adminhtml/UploadTest.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Controller/_Entity_/IndexTest.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Controller/_Entity_/IndexTest.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Controller/_Entity_/ViewTest.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Controller/_Entity_/ViewTest.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Model/FileCheckerTest.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Model/FileCheckerTest.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Model/FileInfoTest.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Model/FileInfoTest.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Model/ResourceModel/AbstractModelTest.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Model/ResourceModel/AbstractModelTest.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Model/ResourceModel/Collection/AbstractCollectionTest.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Model/ResourceModel/Collection/AbstractCollectionTest.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Model/ResourceModel/Collection/StoreAwareAbstractCollectionTest.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Model/ResourceModel/Collection/StoreAwareAbstractCollectionTest.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Model/ResourceModel/Relation/Store/ReadHandlerTest.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Model/ResourceModel/Relation/Store/ReadHandlerTest.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Model/ResourceModel/Relation/Store/SaveHandlerTest.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Model/ResourceModel/Relation/Store/SaveHandlerTest.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Model/ResourceModel/StoreAwareAbstractModelTest.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Model/ResourceModel/StoreAwareAbstractModelTest.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Model/ResourceModel/StoreTest.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Model/ResourceModel/StoreTest.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Model/Search/_Entity_Test.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Model/Search/_Entity_Test.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Model/UploaderTest.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Model/UploaderTest.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Model/_Entity_ListRepoTest.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Model/_Entity_ListRepoTest.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Model/_Entity_RepoTest.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Model/_Entity_RepoTest.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Model/_Entity_Test.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Model/_Entity_Test.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Model/_Entity_UiCollectionProviderTest.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Model/_Entity_UiCollectionProviderTest.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Model/_Entity_UiManagerTest.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Model/_Entity_UiManagerTest.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Plugin/Theme/Block/Html/TopmenuPluginTest.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Plugin/Theme/Block/Html/TopmenuPluginTest.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Source/Catalog/ProductAttributeSetTest.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Source/Catalog/ProductAttributeSetTest.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Source/Catalog/ProductAttributeTest.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Source/Catalog/ProductAttributeTest.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Source/OptionsTest.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Source/OptionsTest.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Source/StoreViewTest.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Source/StoreViewTest.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Source/_Entity_Test.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Source/_Entity_Test.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Ui/Component/Listing/ActionsColumnTest.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Ui/Component/Listing/ActionsColumnTest.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Ui/Component/Listing/ImageTest.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Ui/Component/Listing/ImageTest.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Ui/EntityUiConfigTest.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Ui/EntityUiConfigTest.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Ui/Form/DataModifier/CompositeDataModifierTest.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Ui/Form/DataModifier/CompositeDataModifierTest.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Ui/Form/DataModifier/DynamicRowsTest.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Ui/Form/DataModifier/DynamicRowsTest.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Ui/Form/DataModifier/MultiselectTest.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Ui/Form/DataModifier/MultiselectTest.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Ui/Form/DataModifier/NullModifierTest.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Ui/Form/DataModifier/NullModifierTest.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Ui/Form/DataModifier/UploadTest.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Ui/Form/DataModifier/UploadTest.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Ui/Form/DataProviderTest.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Ui/Form/DataProviderTest.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Ui/SaveDataProcessor/CompositeProcessorTest.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Ui/SaveDataProcessor/CompositeProcessorTest.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Ui/SaveDataProcessor/DateTest.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Ui/SaveDataProcessor/DateTest.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Ui/SaveDataProcessor/DynamicRowsTest.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Ui/SaveDataProcessor/DynamicRowsTest.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Ui/SaveDataProcessor/MultiselectTest.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Ui/SaveDataProcessor/MultiselectTest.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Ui/SaveDataProcessor/NullProcessorTest.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Ui/SaveDataProcessor/NullProcessorTest.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Ui/SaveDataProcessor/UploadTest.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Test/Unit/Ui/SaveDataProcessor/UploadTest.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Test/Unit/ViewModel/Formatter/DateTest.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Test/Unit/ViewModel/Formatter/DateTest.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Test/Unit/ViewModel/Formatter/FileTest.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Test/Unit/ViewModel/Formatter/FileTest.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Test/Unit/ViewModel/Formatter/ImageTest.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Test/Unit/ViewModel/Formatter/ImageTest.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Test/Unit/ViewModel/Formatter/OptionsTest.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Test/Unit/ViewModel/Formatter/OptionsTest.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Test/Unit/ViewModel/Formatter/TextTest.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Test/Unit/ViewModel/Formatter/TextTest.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Test/Unit/ViewModel/Formatter/WysiwygTest.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Test/Unit/ViewModel/Formatter/WysiwygTest.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Test/Unit/ViewModel/FormatterTest.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Test/Unit/ViewModel/FormatterTest.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Test/Unit/ViewModel/_Entity_/List_Entity_Test.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Test/Unit/ViewModel/_Entity_/List_Entity_Test.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Test/Unit/ViewModel/_Entity_/UrlTest.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Test/Unit/ViewModel/_Entity_/UrlTest.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Test/Unit/ViewModel/_Entity_/ViewTest.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Test/Unit/ViewModel/_Entity_/ViewTest.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Ui/CollectionProviderInterface.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Ui/CollectionProviderInterface.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Ui/Component/Listing/ActionsColumn.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Ui/Component/Listing/ActionsColumn.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Ui/Component/Listing/Image.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Ui/Component/Listing/Image.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Ui/EntityUiConfig.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Ui/EntityUiConfig.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Ui/EntityUiManagerInterface.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Ui/EntityUiManagerInterface.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Ui/Form/DataModifier/CompositeDataModifier.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Ui/Form/DataModifier/CompositeDataModifier.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Ui/Form/DataModifier/DynamicRows.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Ui/Form/DataModifier/DynamicRows.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Ui/Form/DataModifier/Multiselect.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Ui/Form/DataModifier/Multiselect.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Ui/Form/DataModifier/NullModifier.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Ui/Form/DataModifier/NullModifier.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Ui/Form/DataModifier/Upload.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Ui/Form/DataModifier/Upload.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Ui/Form/DataModifierInterface.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Ui/Form/DataModifierInterface.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Ui/Form/DataProvider.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Ui/Form/DataProvider.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Ui/SaveDataProcessor/CompositeProcessor.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Ui/SaveDataProcessor/CompositeProcessor.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Ui/SaveDataProcessor/Date.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Ui/SaveDataProcessor/Date.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Ui/SaveDataProcessor/DynamicRows.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Ui/SaveDataProcessor/DynamicRows.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Ui/SaveDataProcessor/Multiselect.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Ui/SaveDataProcessor/Multiselect.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Ui/SaveDataProcessor/NullProcessor.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Ui/SaveDataProcessor/NullProcessor.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Ui/SaveDataProcessor/Upload.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Ui/SaveDataProcessor/Upload.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/Ui/SaveDataProcessorInterface.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/Ui/SaveDataProcessorInterface.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/ViewModel/Formatter.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/ViewModel/Formatter.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/ViewModel/Formatter/Date.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/ViewModel/Formatter/Date.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/ViewModel/Formatter/File.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/ViewModel/Formatter/File.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/ViewModel/Formatter/FormatterInterface.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/ViewModel/Formatter/FormatterInterface.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/ViewModel/Formatter/Image.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/ViewModel/Formatter/Image.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/ViewModel/Formatter/Options.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/ViewModel/Formatter/Options.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/ViewModel/Formatter/Text.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/ViewModel/Formatter/Text.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/ViewModel/Formatter/Wysiwyg.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/ViewModel/Formatter/Wysiwyg.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/ViewModel/_Entity_/List_Entity_.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/ViewModel/_Entity_/List_Entity_.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/ViewModel/_Entity_/Url.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/ViewModel/_Entity_/Url.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/ViewModel/_Entity_/View.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/ViewModel/_Entity_/View.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/composer.json.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/composer.json.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/etc/acl.xml.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/etc/acl.xml.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/etc/adminhtml/di.xml.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/etc/adminhtml/di.xml.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/etc/adminhtml/menu.xml.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/etc/adminhtml/menu.xml.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/etc/adminhtml/routes.xml.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/etc/adminhtml/routes.xml.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/etc/adminhtml/system.xml.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/etc/adminhtml/system.xml.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/etc/config.xml.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/etc/config.xml.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/etc/db_schema.xml.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/etc/db_schema.xml.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/etc/di.xml.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/etc/di.xml.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/etc/frontend/di.xml.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/etc/frontend/di.xml.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/etc/frontend/routes.xml.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/etc/frontend/routes.xml.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/etc/module.xml.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/etc/module.xml.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/etc/webapi.xml.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/etc/webapi.xml.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/registration.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/registration.php.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/view/adminhtml/layout/_modulename___entity__edit.xml.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/view/adminhtml/layout/_modulename___entity__edit.xml.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/view/adminhtml/layout/_modulename___entity__index.xml.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/view/adminhtml/layout/_modulename___entity__index.xml.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/view/adminhtml/ui_component/_modulename___entity__form.xml.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/view/adminhtml/ui_component/_modulename___entity__form.xml.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/view/adminhtml/ui_component/_modulename___entity__listing.xml.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/view/adminhtml/ui_component/_modulename___entity__listing.xml.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/view/adminhtml/web/template/preview.html.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/view/adminhtml/web/template/preview.html.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/view/frontend/layout/_modulename___entity__index.xml.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/view/frontend/layout/_modulename___entity__index.xml.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/view/frontend/layout/_modulename___entity__view.xml.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/view/frontend/layout/_modulename___entity__view.xml.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/view/frontend/layout/default.xml.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/view/frontend/layout/default.xml.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/view/frontend/templates/_entity_/list.phtml.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/view/frontend/templates/_entity_/list.phtml.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/view/frontend/templates/_entity_/name.phtml.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/view/frontend/templates/_entity_/name.phtml.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Resources/views/source/view/frontend/templates/_entity_/view.phtml.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Resources/views/source/view/frontend/templates/_entity_/view.phtml.html.twig -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Tests/Unit/Model/Attribute/Dynamic/Type/BaseTypeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Tests/Unit/Model/Attribute/Dynamic/Type/BaseTypeTest.php -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Tests/Unit/Model/Attribute/Dynamic/Type/ProductAttributeSetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Tests/Unit/Model/Attribute/Dynamic/Type/ProductAttributeSetTest.php -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Tests/Unit/Model/Attribute/Dynamic/Type/ProductAttributeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Tests/Unit/Model/Attribute/Dynamic/Type/ProductAttributeTest.php -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Tests/Unit/Model/Attribute/DynamicTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Tests/Unit/Model/Attribute/DynamicTest.php -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Tests/Unit/Model/Attribute/Type/BaseTypeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Tests/Unit/Model/Attribute/Type/BaseTypeTest.php -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Tests/Unit/Model/Attribute/Type/DropdownTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Tests/Unit/Model/Attribute/Type/DropdownTest.php -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Tests/Unit/Model/Attribute/Type/DynamicTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Tests/Unit/Model/Attribute/Type/DynamicTest.php -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Tests/Unit/Model/Attribute/Type/ProductAttributeSetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Tests/Unit/Model/Attribute/Type/ProductAttributeSetTest.php -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Tests/Unit/Model/Attribute/Type/ProductAttributeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Tests/Unit/Model/Attribute/Type/ProductAttributeTest.php -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Tests/Unit/Model/AttributeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Tests/Unit/Model/AttributeTest.php -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Tests/Unit/Model/EntityTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Tests/Unit/Model/EntityTest.php -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Tests/Unit/Model/Module/FactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Tests/Unit/Model/Module/FactoryTest.php -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/Tests/Unit/Model/ModuleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/Tests/Unit/Model/ModuleTest.php -------------------------------------------------------------------------------- /src/Umc/MagentoBundle/UmcMagentoBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/MagentoBundle/UmcMagentoBundle.php -------------------------------------------------------------------------------- /src/Umc/ShopwareBundle/DependencyInjection/UmcShopwareExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/ShopwareBundle/DependencyInjection/UmcShopwareExtension.php -------------------------------------------------------------------------------- /src/Umc/ShopwareBundle/Resources/config/platform.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/ShopwareBundle/Resources/config/platform.yml -------------------------------------------------------------------------------- /src/Umc/ShopwareBundle/Resources/config/services.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/ShopwareBundle/Resources/config/services.xml -------------------------------------------------------------------------------- /src/Umc/ShopwareBundle/Resources/public/logo/shopware.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/ShopwareBundle/Resources/public/logo/shopware.png -------------------------------------------------------------------------------- /src/Umc/ShopwareBundle/UmcShopwareBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/ShopwareBundle/UmcShopwareBundle.php -------------------------------------------------------------------------------- /src/Umc/SyliusBundle/DependencyInjection/UmcSyliusExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/SyliusBundle/DependencyInjection/UmcSyliusExtension.php -------------------------------------------------------------------------------- /src/Umc/SyliusBundle/Model/Entity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/SyliusBundle/Model/Entity.php -------------------------------------------------------------------------------- /src/Umc/SyliusBundle/Resources/config/extensible_parameters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/SyliusBundle/Resources/config/extensible_parameters.yml -------------------------------------------------------------------------------- /src/Umc/SyliusBundle/Resources/config/form/attribute.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/SyliusBundle/Resources/config/form/attribute.yml -------------------------------------------------------------------------------- /src/Umc/SyliusBundle/Resources/config/form/entity.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/SyliusBundle/Resources/config/form/entity.yml -------------------------------------------------------------------------------- /src/Umc/SyliusBundle/Resources/config/form/module.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/SyliusBundle/Resources/config/form/module.yml -------------------------------------------------------------------------------- /src/Umc/SyliusBundle/Resources/config/platform.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/SyliusBundle/Resources/config/platform.yml -------------------------------------------------------------------------------- /src/Umc/SyliusBundle/Resources/config/services.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/SyliusBundle/Resources/config/services.xml -------------------------------------------------------------------------------- /src/Umc/SyliusBundle/Resources/config/source/entity.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/SyliusBundle/Resources/config/source/entity.yml -------------------------------------------------------------------------------- /src/Umc/SyliusBundle/Resources/config/source/module.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/SyliusBundle/Resources/config/source/module.yml -------------------------------------------------------------------------------- /src/Umc/SyliusBundle/Resources/public/logo/sylius.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/SyliusBundle/Resources/public/logo/sylius.png -------------------------------------------------------------------------------- /src/Umc/SyliusBundle/Resources/views/attribute/grid/date.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/SyliusBundle/Resources/views/attribute/grid/date.html.twig -------------------------------------------------------------------------------- /src/Umc/SyliusBundle/Resources/views/attribute/grid/default.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/SyliusBundle/Resources/views/attribute/grid/default.html.twig -------------------------------------------------------------------------------- /src/Umc/SyliusBundle/Resources/views/attribute/grid/yesno.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/SyliusBundle/Resources/views/attribute/grid/yesno.html.twig -------------------------------------------------------------------------------- /src/Umc/SyliusBundle/Resources/views/attribute/model/decimal.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/SyliusBundle/Resources/views/attribute/model/decimal.html.twig -------------------------------------------------------------------------------- /src/Umc/SyliusBundle/Resources/views/attribute/model/default.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/SyliusBundle/Resources/views/attribute/model/default.html.twig -------------------------------------------------------------------------------- /src/Umc/SyliusBundle/Resources/views/attribute/model/yesno.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/SyliusBundle/Resources/views/attribute/model/yesno.html.twig -------------------------------------------------------------------------------- /src/Umc/SyliusBundle/Resources/views/source/config/packages/_namespace___modulename_.yml.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/SyliusBundle/Resources/views/source/config/packages/_namespace___modulename_.yml.html.twig -------------------------------------------------------------------------------- /src/Umc/SyliusBundle/Resources/views/source/config/routes/_namespace___modulename_.yml.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/SyliusBundle/Resources/views/source/config/routes/_namespace___modulename_.yml.html.twig -------------------------------------------------------------------------------- /src/Umc/SyliusBundle/Resources/views/source/src/_Namespace_/Bundle/_ModuleName_Bundle/Entity/_Entity_.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/SyliusBundle/Resources/views/source/src/_Namespace_/Bundle/_ModuleName_Bundle/Entity/_Entity_.php.html.twig -------------------------------------------------------------------------------- /src/Umc/SyliusBundle/Resources/views/source/src/_Namespace_/Bundle/_ModuleName_Bundle/Menu/AdminMenuListener.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/SyliusBundle/Resources/views/source/src/_Namespace_/Bundle/_ModuleName_Bundle/Menu/AdminMenuListener.php.html.twig -------------------------------------------------------------------------------- /src/Umc/SyliusBundle/Resources/views/source/src/_Namespace_/Bundle/_ModuleName_Bundle/Resources/config/_namespace___modulename_.yml.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/SyliusBundle/Resources/views/source/src/_Namespace_/Bundle/_ModuleName_Bundle/Resources/config/_namespace___modulename_.yml.html.twig -------------------------------------------------------------------------------- /src/Umc/SyliusBundle/Resources/views/source/src/_Namespace_/Bundle/_ModuleName_Bundle/Resources/config/doctrine/_Entity_.orm.xml.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/SyliusBundle/Resources/views/source/src/_Namespace_/Bundle/_ModuleName_Bundle/Resources/config/doctrine/_Entity_.orm.xml.html.twig -------------------------------------------------------------------------------- /src/Umc/SyliusBundle/Resources/views/source/src/_Namespace_/Bundle/_ModuleName_Bundle/Resources/config/grid/_entity_.yml.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/SyliusBundle/Resources/views/source/src/_Namespace_/Bundle/_ModuleName_Bundle/Resources/config/grid/_entity_.yml.html.twig -------------------------------------------------------------------------------- /src/Umc/SyliusBundle/Resources/views/source/src/_Namespace_/Bundle/_ModuleName_Bundle/Resources/config/routing.yml.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/SyliusBundle/Resources/views/source/src/_Namespace_/Bundle/_ModuleName_Bundle/Resources/config/routing.yml.html.twig -------------------------------------------------------------------------------- /src/Umc/SyliusBundle/Resources/views/source/src/_Namespace_/Bundle/_ModuleName_Bundle/Resources/config/services.yml.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/SyliusBundle/Resources/views/source/src/_Namespace_/Bundle/_ModuleName_Bundle/Resources/config/services.yml.html.twig -------------------------------------------------------------------------------- /src/Umc/SyliusBundle/Resources/views/source/src/_Namespace_/Bundle/_ModuleName_Bundle/Resources/translations/messages.en.yml.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/SyliusBundle/Resources/views/source/src/_Namespace_/Bundle/_ModuleName_Bundle/Resources/translations/messages.en.yml.html.twig -------------------------------------------------------------------------------- /src/Umc/SyliusBundle/Resources/views/source/src/_Namespace_/Bundle/_ModuleName_Bundle/_Namespace__ModuleName_Bundle.php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/SyliusBundle/Resources/views/source/src/_Namespace_/Bundle/_ModuleName_Bundle/_Namespace__ModuleName_Bundle.php.html.twig -------------------------------------------------------------------------------- /src/Umc/SyliusBundle/Resources/views/source/src/_Namespace_/Bundle/_ModuleName_Bundle/composer.json.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/SyliusBundle/Resources/views/source/src/_Namespace_/Bundle/_ModuleName_Bundle/composer.json.html.twig -------------------------------------------------------------------------------- /src/Umc/SyliusBundle/UmcSyliusBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UltimateModuleCreator/umc/HEAD/src/Umc/SyliusBundle/UmcSyliusBundle.php --------------------------------------------------------------------------------