├── CHANGELOG ├── LICENSE.md ├── README.md ├── composer.json ├── controllers └── DynamicdropdownController.php ├── docs ├── DynamicDropdown.png ├── datacomponent_dynamicdropdown.png ├── itemselector_example.png ├── multiselect_example.png ├── options.png ├── singleselect_example.png └── superboxselect_example.png ├── lib └── DynamicDropdown │ └── Plugin.php ├── models └── Pimcore │ └── Model │ └── Object │ └── ClassDefinition │ └── Data │ ├── DynamicDropdown.php │ ├── DynamicDropdownMultiple.php │ ├── Itemselector.php │ └── Superboxselect.php ├── plugin.xml ├── static ├── css │ └── admin.css ├── img │ ├── dynamicdropdown-logo.png │ └── itemselector.png └── js │ └── DynamicDropdown │ ├── data │ ├── dynamicDropdown.js │ ├── dynamicDropdownMultiple.js │ ├── itemselector.js │ └── superboxselect.js │ └── tags │ ├── dynamicDropdown.js │ ├── dynamicDropdownMultiple.js │ ├── itemselector.js │ └── superboxselect.js ├── static6 ├── css │ └── admin.css ├── img │ ├── dynamicdropdown-logo.svg │ ├── dynamicdropdownitemselector-logo.svg │ ├── dynamicdropdownmultiple-logo.svg │ └── dynamicdropdowntag-logo.svg └── js │ └── DynamicDropdown │ ├── data │ ├── dynamicDropdown.js │ ├── dynamicDropdownMultiple.js │ ├── itemselector.js │ └── superboxselect.js │ └── tags │ ├── dynamicDropdown.js │ ├── dynamicDropdownMultiple.js │ ├── itemselector.js │ └── superboxselect.js └── texts ├── de.csv └── en.csv /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasKeil/pimcore-plugin-DynamicDropdown/HEAD/CHANGELOG -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasKeil/pimcore-plugin-DynamicDropdown/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasKeil/pimcore-plugin-DynamicDropdown/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasKeil/pimcore-plugin-DynamicDropdown/HEAD/composer.json -------------------------------------------------------------------------------- /controllers/DynamicdropdownController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasKeil/pimcore-plugin-DynamicDropdown/HEAD/controllers/DynamicdropdownController.php -------------------------------------------------------------------------------- /docs/DynamicDropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasKeil/pimcore-plugin-DynamicDropdown/HEAD/docs/DynamicDropdown.png -------------------------------------------------------------------------------- /docs/datacomponent_dynamicdropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasKeil/pimcore-plugin-DynamicDropdown/HEAD/docs/datacomponent_dynamicdropdown.png -------------------------------------------------------------------------------- /docs/itemselector_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasKeil/pimcore-plugin-DynamicDropdown/HEAD/docs/itemselector_example.png -------------------------------------------------------------------------------- /docs/multiselect_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasKeil/pimcore-plugin-DynamicDropdown/HEAD/docs/multiselect_example.png -------------------------------------------------------------------------------- /docs/options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasKeil/pimcore-plugin-DynamicDropdown/HEAD/docs/options.png -------------------------------------------------------------------------------- /docs/singleselect_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasKeil/pimcore-plugin-DynamicDropdown/HEAD/docs/singleselect_example.png -------------------------------------------------------------------------------- /docs/superboxselect_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasKeil/pimcore-plugin-DynamicDropdown/HEAD/docs/superboxselect_example.png -------------------------------------------------------------------------------- /lib/DynamicDropdown/Plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasKeil/pimcore-plugin-DynamicDropdown/HEAD/lib/DynamicDropdown/Plugin.php -------------------------------------------------------------------------------- /models/Pimcore/Model/Object/ClassDefinition/Data/DynamicDropdown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasKeil/pimcore-plugin-DynamicDropdown/HEAD/models/Pimcore/Model/Object/ClassDefinition/Data/DynamicDropdown.php -------------------------------------------------------------------------------- /models/Pimcore/Model/Object/ClassDefinition/Data/DynamicDropdownMultiple.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasKeil/pimcore-plugin-DynamicDropdown/HEAD/models/Pimcore/Model/Object/ClassDefinition/Data/DynamicDropdownMultiple.php -------------------------------------------------------------------------------- /models/Pimcore/Model/Object/ClassDefinition/Data/Itemselector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasKeil/pimcore-plugin-DynamicDropdown/HEAD/models/Pimcore/Model/Object/ClassDefinition/Data/Itemselector.php -------------------------------------------------------------------------------- /models/Pimcore/Model/Object/ClassDefinition/Data/Superboxselect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasKeil/pimcore-plugin-DynamicDropdown/HEAD/models/Pimcore/Model/Object/ClassDefinition/Data/Superboxselect.php -------------------------------------------------------------------------------- /plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasKeil/pimcore-plugin-DynamicDropdown/HEAD/plugin.xml -------------------------------------------------------------------------------- /static/css/admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasKeil/pimcore-plugin-DynamicDropdown/HEAD/static/css/admin.css -------------------------------------------------------------------------------- /static/img/dynamicdropdown-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasKeil/pimcore-plugin-DynamicDropdown/HEAD/static/img/dynamicdropdown-logo.png -------------------------------------------------------------------------------- /static/img/itemselector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasKeil/pimcore-plugin-DynamicDropdown/HEAD/static/img/itemselector.png -------------------------------------------------------------------------------- /static/js/DynamicDropdown/data/dynamicDropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasKeil/pimcore-plugin-DynamicDropdown/HEAD/static/js/DynamicDropdown/data/dynamicDropdown.js -------------------------------------------------------------------------------- /static/js/DynamicDropdown/data/dynamicDropdownMultiple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasKeil/pimcore-plugin-DynamicDropdown/HEAD/static/js/DynamicDropdown/data/dynamicDropdownMultiple.js -------------------------------------------------------------------------------- /static/js/DynamicDropdown/data/itemselector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasKeil/pimcore-plugin-DynamicDropdown/HEAD/static/js/DynamicDropdown/data/itemselector.js -------------------------------------------------------------------------------- /static/js/DynamicDropdown/data/superboxselect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasKeil/pimcore-plugin-DynamicDropdown/HEAD/static/js/DynamicDropdown/data/superboxselect.js -------------------------------------------------------------------------------- /static/js/DynamicDropdown/tags/dynamicDropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasKeil/pimcore-plugin-DynamicDropdown/HEAD/static/js/DynamicDropdown/tags/dynamicDropdown.js -------------------------------------------------------------------------------- /static/js/DynamicDropdown/tags/dynamicDropdownMultiple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasKeil/pimcore-plugin-DynamicDropdown/HEAD/static/js/DynamicDropdown/tags/dynamicDropdownMultiple.js -------------------------------------------------------------------------------- /static/js/DynamicDropdown/tags/itemselector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasKeil/pimcore-plugin-DynamicDropdown/HEAD/static/js/DynamicDropdown/tags/itemselector.js -------------------------------------------------------------------------------- /static/js/DynamicDropdown/tags/superboxselect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasKeil/pimcore-plugin-DynamicDropdown/HEAD/static/js/DynamicDropdown/tags/superboxselect.js -------------------------------------------------------------------------------- /static6/css/admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasKeil/pimcore-plugin-DynamicDropdown/HEAD/static6/css/admin.css -------------------------------------------------------------------------------- /static6/img/dynamicdropdown-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasKeil/pimcore-plugin-DynamicDropdown/HEAD/static6/img/dynamicdropdown-logo.svg -------------------------------------------------------------------------------- /static6/img/dynamicdropdownitemselector-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasKeil/pimcore-plugin-DynamicDropdown/HEAD/static6/img/dynamicdropdownitemselector-logo.svg -------------------------------------------------------------------------------- /static6/img/dynamicdropdownmultiple-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasKeil/pimcore-plugin-DynamicDropdown/HEAD/static6/img/dynamicdropdownmultiple-logo.svg -------------------------------------------------------------------------------- /static6/img/dynamicdropdowntag-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasKeil/pimcore-plugin-DynamicDropdown/HEAD/static6/img/dynamicdropdowntag-logo.svg -------------------------------------------------------------------------------- /static6/js/DynamicDropdown/data/dynamicDropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasKeil/pimcore-plugin-DynamicDropdown/HEAD/static6/js/DynamicDropdown/data/dynamicDropdown.js -------------------------------------------------------------------------------- /static6/js/DynamicDropdown/data/dynamicDropdownMultiple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasKeil/pimcore-plugin-DynamicDropdown/HEAD/static6/js/DynamicDropdown/data/dynamicDropdownMultiple.js -------------------------------------------------------------------------------- /static6/js/DynamicDropdown/data/itemselector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasKeil/pimcore-plugin-DynamicDropdown/HEAD/static6/js/DynamicDropdown/data/itemselector.js -------------------------------------------------------------------------------- /static6/js/DynamicDropdown/data/superboxselect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasKeil/pimcore-plugin-DynamicDropdown/HEAD/static6/js/DynamicDropdown/data/superboxselect.js -------------------------------------------------------------------------------- /static6/js/DynamicDropdown/tags/dynamicDropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasKeil/pimcore-plugin-DynamicDropdown/HEAD/static6/js/DynamicDropdown/tags/dynamicDropdown.js -------------------------------------------------------------------------------- /static6/js/DynamicDropdown/tags/dynamicDropdownMultiple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasKeil/pimcore-plugin-DynamicDropdown/HEAD/static6/js/DynamicDropdown/tags/dynamicDropdownMultiple.js -------------------------------------------------------------------------------- /static6/js/DynamicDropdown/tags/itemselector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasKeil/pimcore-plugin-DynamicDropdown/HEAD/static6/js/DynamicDropdown/tags/itemselector.js -------------------------------------------------------------------------------- /static6/js/DynamicDropdown/tags/superboxselect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasKeil/pimcore-plugin-DynamicDropdown/HEAD/static6/js/DynamicDropdown/tags/superboxselect.js -------------------------------------------------------------------------------- /texts/de.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasKeil/pimcore-plugin-DynamicDropdown/HEAD/texts/de.csv -------------------------------------------------------------------------------- /texts/en.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasKeil/pimcore-plugin-DynamicDropdown/HEAD/texts/en.csv --------------------------------------------------------------------------------