├── .gitignore ├── plugins ├── selectize │ ├── assets │ │ ├── selectize │ │ │ ├── CONTRIBUTING.md │ │ │ ├── .gitignore │ │ │ ├── docs │ │ │ │ ├── selectize-logo.png │ │ │ │ ├── selectize-wordmark.png │ │ │ │ ├── plugins.md │ │ │ │ └── events.md │ │ │ ├── examples │ │ │ │ ├── images │ │ │ │ │ ├── bg.png │ │ │ │ │ ├── check@2x.png │ │ │ │ │ ├── spinner.gif │ │ │ │ │ ├── repo-forked.png │ │ │ │ │ └── repo-source.png │ │ │ │ ├── confirm.html │ │ │ │ ├── js │ │ │ │ │ └── index.js │ │ │ │ ├── dynamic.html │ │ │ │ ├── required.html │ │ │ │ ├── performance.html │ │ │ │ ├── rtl.html │ │ │ │ ├── create-filter.html │ │ │ │ ├── lock.html │ │ │ │ ├── customization.html │ │ │ │ ├── css │ │ │ │ │ └── stylesheet.css │ │ │ │ ├── api.html │ │ │ │ ├── events.html │ │ │ │ ├── github.html │ │ │ │ └── movies.html │ │ │ ├── .browserslistrc │ │ │ ├── .editorconfig │ │ │ ├── dist │ │ │ │ ├── less │ │ │ │ │ ├── plugins │ │ │ │ │ │ ├── optgroup_columns.less │ │ │ │ │ │ ├── drag_drop.less │ │ │ │ │ │ ├── dropdown_header.less │ │ │ │ │ │ └── remove_button.less │ │ │ │ │ ├── selectize.default.less │ │ │ │ │ ├── selectize.legacy.less │ │ │ │ │ └── selectize.bootstrap3.less │ │ │ │ └── scss │ │ │ │ │ ├── plugins │ │ │ │ │ ├── optgroup_columns.scss │ │ │ │ │ ├── drag_drop.scss │ │ │ │ │ ├── dropdown_header.scss │ │ │ │ │ └── remove_button.scss │ │ │ │ │ ├── selectize.default.scss │ │ │ │ │ └── selectize.bootstrap3.scss │ │ │ ├── src │ │ │ │ ├── plugins │ │ │ │ │ ├── optgroup_columns │ │ │ │ │ │ ├── plugin.less │ │ │ │ │ │ ├── plugin.scss │ │ │ │ │ │ └── plugin.js │ │ │ │ │ ├── drag_drop │ │ │ │ │ │ ├── plugin.less │ │ │ │ │ │ ├── plugin.scss │ │ │ │ │ │ └── plugin.js │ │ │ │ │ ├── auto_select_on_type │ │ │ │ │ │ └── plugin.js │ │ │ │ │ ├── dropdown_header │ │ │ │ │ │ ├── plugin.less │ │ │ │ │ │ ├── plugin.scss │ │ │ │ │ │ └── plugin.js │ │ │ │ │ ├── remove_button │ │ │ │ │ │ ├── plugin.scss │ │ │ │ │ │ ├── plugin.less │ │ │ │ │ │ └── plugin.js │ │ │ │ │ ├── select_on_focus │ │ │ │ │ │ └── plugin.js │ │ │ │ │ ├── autofill_disable │ │ │ │ │ │ └── plugin.js │ │ │ │ │ ├── tag_limit │ │ │ │ │ │ └── plugin.js │ │ │ │ │ ├── auto_position │ │ │ │ │ │ └── plugin.js │ │ │ │ │ └── restore_on_backspace │ │ │ │ │ │ └── plugin.js │ │ │ │ ├── constants.js │ │ │ │ ├── less │ │ │ │ │ ├── .wrapper.css │ │ │ │ │ ├── selectize.default.less │ │ │ │ │ ├── selectize.legacy.less │ │ │ │ │ └── selectize.bootstrap3.less │ │ │ │ ├── .wrapper.js │ │ │ │ ├── contrib │ │ │ │ │ ├── microevent.js │ │ │ │ │ └── highlight.js │ │ │ │ ├── scss │ │ │ │ │ ├── selectize.default.scss │ │ │ │ │ └── selectize.bootstrap3.scss │ │ │ │ ├── defaults.js │ │ │ │ └── selectize.jquery.js │ │ │ ├── SECURITY.md │ │ │ ├── .github │ │ │ │ ├── dependabot.yml │ │ │ │ ├── workflows │ │ │ │ │ ├── UpdateContributors.yml │ │ │ │ │ ├── node.js.yml │ │ │ │ │ ├── stale.yml │ │ │ │ │ └── codeql-analysis.yml │ │ │ │ ├── FUNDING.yml │ │ │ │ └── ISSUE_TEMPLATE.md │ │ │ ├── test │ │ │ │ ├── support │ │ │ │ │ └── base.js │ │ │ │ ├── events_dom.js │ │ │ │ └── xss.js │ │ │ ├── selectize.jquery.json │ │ │ ├── Makefile │ │ │ ├── CONTRIBUTORS.md │ │ │ ├── CHANGELOG.md │ │ │ ├── karma.conf.js │ │ │ └── CODE_OF_CONDUCT.md │ │ └── rex_selectize.js │ ├── lang │ │ └── de_de.lang │ ├── boot.php │ ├── help.php │ ├── pages │ │ ├── index.php │ │ ├── selectize_readme.php │ │ ├── selectize_license.php │ │ └── selectize_changelog.php │ └── package.yml ├── jquery-minicolors │ ├── assets │ │ └── jquery-minicolors │ │ │ ├── .github │ │ │ └── FUNDING.yml │ │ │ ├── jquery.minicolors.png │ │ │ ├── .editorconfig │ │ │ ├── bower.json │ │ │ ├── component.json │ │ │ ├── .eslintrc │ │ │ ├── composer.json │ │ │ ├── README.md │ │ │ ├── jquery-minicolors.js │ │ │ ├── package.json │ │ │ ├── gulpfile.js │ │ │ └── LICENSE.md │ ├── install.php │ ├── boot.php │ ├── help.php │ ├── package.yml │ ├── pages │ │ ├── jquery-minicolors_readme.php │ │ ├── jquery-minicolors_license.php │ │ └── index.php │ └── lang │ │ └── de_de.lang └── bootstrap-datetimepicker │ ├── lang │ └── de_de.lang │ ├── help.php │ ├── assets │ └── bootstrap-datetimepicker │ │ ├── rex_bootstrap-datetimepicker.js │ │ ├── README.md │ │ ├── LICENSE │ │ └── css │ │ └── bootstrap-datetimepicker-standalone.css │ ├── pages │ ├── bootstrap-datetimepicker_less.php │ ├── bootstrap-datetimepicker_scss.php │ ├── bootstrap-datetimepicker_readme.php │ ├── bootstrap-datetimepicker_license.php │ └── index.php │ ├── boot.php │ ├── package.yml │ ├── ytemplates │ └── bootstrap │ │ └── value.datepicker.tpl.php │ └── lib │ └── yform │ └── value │ └── datepicker.php ├── assets └── css │ └── styles.css ├── lang └── de_de.lang ├── boot.php ├── pages ├── info.info.php ├── info.lizenz.php ├── info.changelog.php └── index.php ├── .github └── workflows │ └── publish-to-redaxo.yml ├── package.yml ├── help.php ├── README.md ├── LICENSE.md └── CHANGELOG.md /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | plugins/.DS_Store 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /plugins/selectize/assets/selectize/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /assets/css/styles.css: -------------------------------------------------------------------------------- 1 | #ui_tools{border:1px solid transparent} 2 | -------------------------------------------------------------------------------- /plugins/jquery-minicolors/assets/jquery-minicolors/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [claviska] 2 | -------------------------------------------------------------------------------- /plugins/selectize/assets/selectize/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .DAV 3 | node_modules 4 | bower_components 5 | *.log 6 | .vscode 7 | build -------------------------------------------------------------------------------- /plugins/jquery-minicolors/install.php: -------------------------------------------------------------------------------- 1 | hasConfig()) { 4 | $this->setConfig('for-customizer', 1); 5 | } 6 | -------------------------------------------------------------------------------- /lang/de_de.lang: -------------------------------------------------------------------------------- 1 | ui_tools_title = UI Tools 2 | ui_tools_general_dummy[] = Rechte für UI Tools-Addon 3 | 4 | ui_tools_changelog = Changelog 5 | ui_tools_license = Lizenz 6 | -------------------------------------------------------------------------------- /plugins/selectize/assets/selectize/docs/selectize-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfREDAXO/ui_tools/HEAD/plugins/selectize/assets/selectize/docs/selectize-logo.png -------------------------------------------------------------------------------- /plugins/selectize/assets/selectize/examples/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfREDAXO/ui_tools/HEAD/plugins/selectize/assets/selectize/examples/images/bg.png -------------------------------------------------------------------------------- /plugins/selectize/assets/selectize/docs/selectize-wordmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfREDAXO/ui_tools/HEAD/plugins/selectize/assets/selectize/docs/selectize-wordmark.png -------------------------------------------------------------------------------- /plugins/selectize/assets/selectize/examples/images/check@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfREDAXO/ui_tools/HEAD/plugins/selectize/assets/selectize/examples/images/check@2x.png -------------------------------------------------------------------------------- /plugins/selectize/assets/selectize/examples/images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfREDAXO/ui_tools/HEAD/plugins/selectize/assets/selectize/examples/images/spinner.gif -------------------------------------------------------------------------------- /plugins/selectize/assets/selectize/examples/images/repo-forked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfREDAXO/ui_tools/HEAD/plugins/selectize/assets/selectize/examples/images/repo-forked.png -------------------------------------------------------------------------------- /plugins/selectize/assets/selectize/examples/images/repo-source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfREDAXO/ui_tools/HEAD/plugins/selectize/assets/selectize/examples/images/repo-source.png -------------------------------------------------------------------------------- /plugins/selectize/assets/selectize/.browserslistrc: -------------------------------------------------------------------------------- 1 | [production] 2 | defaults 3 | > 5% in US 4 | last 2 versions 5 | Firefox ESR 6 | iOS >= 12 7 | 8 | [development] 9 | last 1 version 10 | -------------------------------------------------------------------------------- /plugins/jquery-minicolors/assets/jquery-minicolors/jquery.minicolors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfREDAXO/ui_tools/HEAD/plugins/jquery-minicolors/assets/jquery-minicolors/jquery.minicolors.png -------------------------------------------------------------------------------- /plugins/selectize/lang/de_de.lang: -------------------------------------------------------------------------------- 1 | selectize_menu_entry = selectize 2 | selectize_config_title = Einstellungen 3 | selectize_info = Info 4 | selectize_readme = Info 5 | selectize_license = Lizenz 6 | selectize_changelog = Changelog -------------------------------------------------------------------------------- /plugins/jquery-minicolors/assets/jquery-minicolors/.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | indent_style = space 5 | indent_size = 2 6 | end_of_line = lf 7 | charset = utf-8 8 | trim_trailing_whitespace = true 9 | insert_final_newline = true 10 | -------------------------------------------------------------------------------- /boot.php: -------------------------------------------------------------------------------- 1 | setProperty('author', 'Friends Of REDAXO'); 4 | 5 | if (rex::isBackend() && rex::getUser()) { 6 | rex_perm::register('ui_tools[]'); 7 | rex_view::addCssFile($this->getAssetsUrl('css/styles.css')); 8 | } 9 | 10 | -------------------------------------------------------------------------------- /plugins/selectize/assets/selectize/.editorconfig: -------------------------------------------------------------------------------- 1 | # editorconfig.org 2 | 3 | root = true 4 | 5 | [*] 6 | charset = utf-8 7 | end_of_line = lf 8 | indent_size = 2 9 | indent_style = space 10 | insert_final_newline = true 11 | trim_trailing_whitespace = true 12 | -------------------------------------------------------------------------------- /plugins/selectize/assets/rex_selectize.js: -------------------------------------------------------------------------------- 1 | $(document).on('rex:ready', function() { 2 | $('.selectize').selectize({ 3 | delimiter: ',', 4 | persist: false, 5 | create: function(input) { 6 | return { 7 | value: input, 8 | text: input 9 | } 10 | } 11 | }); 12 | }); 13 | -------------------------------------------------------------------------------- /pages/info.info.php: -------------------------------------------------------------------------------- 1 | '.$Parsedown->text($file); 6 | 7 | 8 | $fragment = new rex_fragment(); 9 | $fragment->setVar('title', 'Info'); 10 | $fragment->setVar('body', $content, false); 11 | echo $fragment->parse('core/page/section.php'); 12 | -------------------------------------------------------------------------------- /pages/info.lizenz.php: -------------------------------------------------------------------------------- 1 | '.$Parsedown->text($file).''; 6 | 7 | $fragment = new rex_fragment(); 8 | $fragment->setVar('title', 'Lizenz'); 9 | $fragment->setVar('body', $content, false); 10 | echo $fragment->parse('core/page/section.php'); 11 | -------------------------------------------------------------------------------- /plugins/bootstrap-datetimepicker/lang/de_de.lang: -------------------------------------------------------------------------------- 1 | bootstrap-datetimepicker_menu_entry = Date/Time Picker 2 | bootstrap-datetimepicker_info = Info 3 | bootstrap-datetimepicker_config_title = Einstellungen Bootstrap 3 Date/Time Picker 4 | bootstrap-datetimepicker_readme = Info 5 | bootstrap-datetimepicker_license = Lizenz 6 | bootstrap-datetimepicker_less = LESS 7 | bootstrap-datetimepicker_scss = SCSS 8 | -------------------------------------------------------------------------------- /plugins/selectize/boot.php: -------------------------------------------------------------------------------- 1 | getAssetsUrl('selectize/dist/css/selectize.css')); 5 | rex_view::addCssFile($this->getAssetsUrl('selectize/dist/css/selectize.bootstrap3.css')); 6 | rex_view::addJsFile($this->getAssetsUrl('selectize/dist/js/standalone/selectize.min.js')); 7 | rex_view::addJsFile($this->getAssetsUrl('rex_selectize.js')); 8 | } -------------------------------------------------------------------------------- /pages/info.changelog.php: -------------------------------------------------------------------------------- 1 | '.$Parsedown->text($file).''; 7 | 8 | $fragment = new rex_fragment(); 9 | $fragment->setVar('title', 'Changelog'); 10 | $fragment->setVar('body', $content, false); 11 | echo $fragment->parse('core/page/section.php'); 12 | 13 | 14 | -------------------------------------------------------------------------------- /plugins/selectize/help.php: -------------------------------------------------------------------------------- 1 | 12 |
15 | Dieses Plugin bindet selectize.js (https://github.com/selectize/selectize.js) ein. 16 |
17 | 18 | -------------------------------------------------------------------------------- /plugins/jquery-minicolors/boot.php: -------------------------------------------------------------------------------- 1 | getConfig(); 5 | 6 | rex_view::addCssFile($this->getAssetsUrl('jquery-minicolors/jquery.minicolors.css')); 7 | rex_view::addJsFile($this->getAssetsUrl('jquery-minicolors/jquery.minicolors.min.js')); 8 | rex_view::addJsFile($this->getAssetsUrl('jquery-minicolors/jquery-minicolors.js')); 9 | } 10 | -------------------------------------------------------------------------------- /plugins/jquery-minicolors/help.php: -------------------------------------------------------------------------------- 1 | 12 |15 | Dieses Plugin bindet die jQuery minicolors (https://github.com/claviska/jquery-minicolors) ein. 16 |
17 | 18 | -------------------------------------------------------------------------------- /plugins/selectize/assets/selectize/dist/less/plugins/optgroup_columns.less: -------------------------------------------------------------------------------- 1 | .selectize-dropdown.plugin-optgroup_columns { 2 | .optgroup { 3 | border-right: 1px solid #f2f2f2; 4 | border-top: 0 none; 5 | float: left; 6 | .selectize-box-sizing(border-box); 7 | } 8 | .optgroup:last-child { 9 | border-right: 0 none; 10 | } 11 | .optgroup:before { 12 | display: none; 13 | } 14 | .optgroup-header { 15 | border-top: 0 none; 16 | } 17 | } -------------------------------------------------------------------------------- /plugins/selectize/assets/selectize/src/plugins/optgroup_columns/plugin.less: -------------------------------------------------------------------------------- 1 | .selectize-dropdown.plugin-optgroup_columns { 2 | .optgroup { 3 | border-right: 1px solid #f2f2f2; 4 | border-top: 0 none; 5 | float: left; 6 | .selectize-box-sizing(border-box); 7 | } 8 | .optgroup:last-child { 9 | border-right: 0 none; 10 | } 11 | .optgroup:before { 12 | display: none; 13 | } 14 | .optgroup-header { 15 | border-top: 0 none; 16 | } 17 | } -------------------------------------------------------------------------------- /plugins/bootstrap-datetimepicker/help.php: -------------------------------------------------------------------------------- 1 | 12 |15 | Dieses Plugin bindet den Bootstrap Datetimepicker (https://github.com/Eonasdan/bootstrap-datetimepicker) ein. 16 |
17 | 18 | -------------------------------------------------------------------------------- /plugins/bootstrap-datetimepicker/assets/bootstrap-datetimepicker/rex_bootstrap-datetimepicker.js: -------------------------------------------------------------------------------- 1 | $(document).on('rex:ready', function() { 2 | $('.datetimepicker').datetimepicker({ 3 | locale: 'de' 4 | }); 5 | $('.datepicker').datetimepicker({ 6 | locale: 'de', 7 | format: 'DD.MM.YYYY', 8 | extraFormats: ['YYYY-MM-DD'] 9 | }); 10 | $('.timepicker').datetimepicker({ 11 | locale: 'de', 12 | format: 'HH:mm' 13 | }); 14 | }); 15 | -------------------------------------------------------------------------------- /plugins/jquery-minicolors/assets/jquery-minicolors/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "jquery-minicolors", 3 | "version": "2.3.6", 4 | "homepage": "https://github.com/claviska/jquery-minicolors", 5 | "authors": ["Cory LaViska"], 6 | "description": "jQuery MiniColors Plugin", 7 | "main": ["./jquery.minicolors.js", "./jquery.minicolors.css"], 8 | "keywords": ["jquery", "colorpicker"], 9 | "license": "MIT", 10 | "ignore": ["**/.*", "node_modules", "bower_components", "test", "tests"] 11 | } 12 | -------------------------------------------------------------------------------- /.github/workflows/publish-to-redaxo.yml: -------------------------------------------------------------------------------- 1 | name: Publish release 2 | 3 | on: 4 | release: 5 | types: 6 | - published 7 | 8 | jobs: 9 | redaxo_publish: 10 | runs-on: ubuntu-latest 11 | steps: 12 | - uses: actions/checkout@v2 13 | - uses: FriendsOfREDAXO/installer-action@v1 14 | with: 15 | myredaxo-username: ${{ secrets.MYREDAXO_USERNAME }} 16 | myredaxo-api-key: ${{ secrets.MYREDAXO_API_KEY }} 17 | description: ${{ github.event.release.body }} 18 | 19 | -------------------------------------------------------------------------------- /plugins/selectize/pages/index.php: -------------------------------------------------------------------------------- 1 |8 | .selectize auf einem Input fügt eine Art Tag-Verhalten hinzu, die übergebenen Werte sind per Komma getrennt. 9 |
10 | '; 11 | 12 | $fragment = new rex_fragment(); 13 | $fragment->setVar('title', rex_i18n::rawMsg('selectize_config_title'), false); 14 | $fragment->setVar('body', $body, false); 15 | $title = $fragment->parse('core/page/section.php'); 16 | 17 | echo $title; -------------------------------------------------------------------------------- /plugins/selectize/pages/selectize_readme.php: -------------------------------------------------------------------------------- 1 | '.$Parsedown->text($file); 9 | 10 | $fragment = new rex_fragment(); 11 | $fragment->setVar('title', rex_i18n::msg('selectize_info')); 12 | $fragment->setVar('body', $content, false); 13 | echo $fragment->parse('core/page/section.php'); -------------------------------------------------------------------------------- /plugins/selectize/pages/selectize_license.php: -------------------------------------------------------------------------------- 1 | '.$Parsedown->text($file).''; 9 | 10 | $fragment = new rex_fragment(); 11 | $fragment->setVar('title', rex_i18n::msg('selectize_license')); 12 | $fragment->setVar('body', $content, false); 13 | echo $fragment->parse('core/page/section.php'); 14 | -------------------------------------------------------------------------------- /plugins/jquery-minicolors/package.yml: -------------------------------------------------------------------------------- 1 | package: ui_tools/jquery-minicolors 2 | version: '2.4.0' 3 | author: 'Friends Of REDAXO' 4 | supportpage: github.com/FriendsOfREDAXO 5 | 6 | page: 7 | title: 'translate:jquery-minicolors_menu_entry' 8 | perm: admin[] 9 | subpages: 10 | index: { title: 'translate:jquery-minicolors_config_title', perm: admin} 11 | jquery-minicolors_readme: { title: 'translate:jquery-minicolors_readme', perm: admin} 12 | jquery-minicolors_license: { title: 'translate:jquery-minicolors_license', perm: admin} 13 | -------------------------------------------------------------------------------- /plugins/selectize/pages/selectize_changelog.php: -------------------------------------------------------------------------------- 1 | '.$Parsedown->text($file).''; 9 | 10 | $fragment = new rex_fragment(); 11 | $fragment->setVar('title', rex_i18n::msg('selectize_changelog')); 12 | $fragment->setVar('body', $content, false); 13 | echo $fragment->parse('core/page/section.php'); 14 | -------------------------------------------------------------------------------- /plugins/jquery-minicolors/assets/jquery-minicolors/component.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "jquery-minicolors", 3 | "version": "2.3.6", 4 | "description": "jQuery MiniColors Plugin", 5 | "homepage": "", 6 | "main": ["./jquery.minicolors.js", "./jquery.minicolors.css"], 7 | "dependencies": { 8 | "jquery": ">= 1.7.x" 9 | }, 10 | "keywords": ["jquery", "colorpicker"], 11 | "author": { 12 | "name": "Cory LaViska", 13 | "web": "http://www.abeautifulsite.net/" 14 | }, 15 | "license": ["http://www.opensource.org/licenses/mit-license.php"] 16 | } 17 | -------------------------------------------------------------------------------- /plugins/selectize/assets/selectize/dist/scss/plugins/optgroup_columns.scss: -------------------------------------------------------------------------------- 1 | .#{$selectize}-dropdown.plugin-optgroup_columns { 2 | .#{$selectize}-dropdown-content { 3 | display: flex; 4 | } 5 | 6 | .optgroup { 7 | border-right: 1px solid #f2f2f2; 8 | border-top: 0 none; 9 | flex-grow: 1; 10 | flex-basis: 0; 11 | min-width: 0; 12 | } 13 | .optgroup:last-child { 14 | border-right: 0 none; 15 | } 16 | .optgroup:before { 17 | display: none; 18 | } 19 | .optgroup-header { 20 | border-top: 0 none; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /plugins/selectize/assets/selectize/src/plugins/optgroup_columns/plugin.scss: -------------------------------------------------------------------------------- 1 | .#{$selectize}-dropdown.plugin-optgroup_columns { 2 | .#{$selectize}-dropdown-content { 3 | display: flex; 4 | } 5 | 6 | .optgroup { 7 | border-right: 1px solid #f2f2f2; 8 | border-top: 0 none; 9 | flex-grow: 1; 10 | flex-basis: 0; 11 | min-width: 0; 12 | } 13 | .optgroup:last-child { 14 | border-right: 0 none; 15 | } 16 | .optgroup:before { 17 | display: none; 18 | } 19 | .optgroup-header { 20 | border-top: 0 none; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /plugins/jquery-minicolors/assets/jquery-minicolors/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "rules": { 3 | "no-console": ["off"], 4 | "indent": ["error", 2], 5 | "quotes": ["error", "single"], 6 | "linebreak-style": ["error", "unix"], 7 | "no-unused-vars": ["warn", { "vars": "all", "args": "after-used" }], 8 | "semi": ["error", "always"] 9 | }, 10 | "env": { 11 | "browser": true, 12 | "jquery": true 13 | }, 14 | "extends": "eslint:recommended", 15 | "globals": { 16 | "define": true, 17 | "module": true, 18 | "require": true 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /plugins/selectize/assets/selectize/dist/less/plugins/drag_drop.less: -------------------------------------------------------------------------------- 1 | .selectize-control.plugin-drag_drop { 2 | &.multi > .selectize-input > div.ui-sortable-placeholder { 3 | visibility: visible !important; 4 | background: #f2f2f2 !important; 5 | background: rgba(0,0,0,0.06) !important; 6 | border: 0 none !important; 7 | .selectize-box-shadow(inset 0 0 12px 4px #fff); 8 | } 9 | .ui-sortable-placeholder::after { 10 | content: '!'; 11 | visibility: hidden; 12 | } 13 | .ui-sortable-helper { 14 | .selectize-box-shadow(0 2px 5px rgba(0,0,0,0.2)); 15 | } 16 | } -------------------------------------------------------------------------------- /plugins/selectize/assets/selectize/src/plugins/drag_drop/plugin.less: -------------------------------------------------------------------------------- 1 | .selectize-control.plugin-drag_drop { 2 | &.multi > .selectize-input > div.ui-sortable-placeholder { 3 | visibility: visible !important; 4 | background: #f2f2f2 !important; 5 | background: rgba(0,0,0,0.06) !important; 6 | border: 0 none !important; 7 | .selectize-box-shadow(inset 0 0 12px 4px #fff); 8 | } 9 | .ui-sortable-placeholder::after { 10 | content: '!'; 11 | visibility: hidden; 12 | } 13 | .ui-sortable-helper { 14 | .selectize-box-shadow(0 2px 5px rgba(0,0,0,0.2)); 15 | } 16 | } -------------------------------------------------------------------------------- /plugins/selectize/package.yml: -------------------------------------------------------------------------------- 1 | package: ui_tools/selectize 2 | version: '0.2.0' 3 | author: 'Friends Of REDAXO' 4 | supportpage: github.com/FriendsOfREDAXO 5 | 6 | page: 7 | title: 'translate:selectize_menu_entry' 8 | perm: admin[] 9 | subpages: 10 | index: { title: 'translate:selectize_config_title', perm: admin} 11 | selectize_readme: { title: 'translate:selectize_readme', perm: admin} 12 | selectize_changelog: { title: 'translate:selectize_changelog', perm: admin} 13 | selectize_license: { title: 'translate:selectize_license', perm: admin} 14 | -------------------------------------------------------------------------------- /plugins/bootstrap-datetimepicker/assets/bootstrap-datetimepicker/README.md: -------------------------------------------------------------------------------- 1 | # Bootstrap 3 Date/Time Picker v4.17.47 2 | 3 | We are in code freeze and this issue tracker is no longer actively monitored. I'll be closing PR that do not contribute emergency fixes and leaving some open as they are evaluated for migration into the new repo. I’ll be closing issues that do not meet minimum requirements or have been answered by the community. Issues that have been closed for longer than 30 days will be locked. 4 | 5 | ## [View the manual and demos](http://eonasdan.github.io/bootstrap-datetimepicker/) 6 | -------------------------------------------------------------------------------- /plugins/jquery-minicolors/pages/jquery-minicolors_readme.php: -------------------------------------------------------------------------------- 1 | '.$Parsedown->text($file); 8 | 9 | 10 | $fragment = new rex_fragment(); 11 | $fragment->setVar('title', rex_i18n::msg('jquery-minicolors_readme')); 12 | $fragment->setVar('body', $content, false); 13 | echo $fragment->parse('core/page/section.php'); -------------------------------------------------------------------------------- /plugins/selectize/assets/selectize/SECURITY.md: -------------------------------------------------------------------------------- 1 | # Security Policy 2 | 3 | ## Supported Versions 4 | 5 | The following versions are currently being supported with security updates. 6 | 7 | | Version | Supported | 8 | | -------- | ------------------ | 9 | | 0.13.x | :white_check_mark: | 10 | | 0.12.x | :white_check_mark: | 11 | | < 0.12.0 | :x: | 12 | 13 | ## Reporting a Vulnerability 14 | 15 | File an issue with details and create a pull request with proposed changes 16 | 17 | - [Open an issue!](https://github.com/selectize/selectize.js/issues/new) 18 | -------------------------------------------------------------------------------- /plugins/jquery-minicolors/assets/jquery-minicolors/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "abeautifulsite/jquery-minicolors", 3 | "type": "component", 4 | "description": "jQuery MiniColors Plugin", 5 | "homepage": "http://www.abeautifulsite.net/", 6 | "license": "MIT", 7 | "extra": { 8 | "component": { 9 | "scripts": [ 10 | "jquery.minicolors.js" 11 | ], 12 | "files": [ 13 | "jquery.minicolors.js", 14 | "jquery.minicolors.min.js", 15 | "jquery.minicolors.css", 16 | "jquery.minicolors.png" 17 | ] 18 | } 19 | } 20 | } -------------------------------------------------------------------------------- /plugins/selectize/assets/selectize/dist/scss/plugins/drag_drop.scss: -------------------------------------------------------------------------------- 1 | .#{$selectize}-control.plugin-drag_drop { 2 | &.multi > .#{$selectize}-input > div.ui-sortable-placeholder { 3 | visibility: visible !important; 4 | background: #f2f2f2 !important; 5 | background: rgba(0, 0, 0, 0.06) !important; 6 | border: 0 none !important; 7 | box-shadow: inset 0 0 12px 4px #fff; 8 | } 9 | .ui-sortable-placeholder::after { 10 | content: "!"; 11 | visibility: hidden; 12 | } 13 | .ui-sortable-helper { 14 | box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /plugins/selectize/assets/selectize/src/plugins/drag_drop/plugin.scss: -------------------------------------------------------------------------------- 1 | .#{$selectize}-control.plugin-drag_drop { 2 | &.multi > .#{$selectize}-input > div.ui-sortable-placeholder { 3 | visibility: visible !important; 4 | background: #f2f2f2 !important; 5 | background: rgba(0, 0, 0, 0.06) !important; 6 | border: 0 none !important; 7 | box-shadow: inset 0 0 12px 4px #fff; 8 | } 9 | .ui-sortable-placeholder::after { 10 | content: "!"; 11 | visibility: hidden; 12 | } 13 | .ui-sortable-helper { 14 | box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /plugins/jquery-minicolors/pages/jquery-minicolors_license.php: -------------------------------------------------------------------------------- 1 | '.$Parsedown->text($file).''; 10 | 11 | $fragment = new rex_fragment(); 12 | $fragment->setVar('title', rex_i18n::msg('jquery-minicolors_license')); 13 | $fragment->setVar('body', $content, false); 14 | echo $fragment->parse('core/page/section.php'); -------------------------------------------------------------------------------- /plugins/bootstrap-datetimepicker/pages/bootstrap-datetimepicker_less.php: -------------------------------------------------------------------------------- 1 | '.$Parsedown->text($file).''; 10 | 11 | $fragment = new rex_fragment(); 12 | $fragment->setVar('title', rex_i18n::msg('bootstrap-datetimepicker_less')); 13 | $fragment->setVar('body', $content, false); 14 | echo $fragment->parse('core/page/section.php'); 15 | -------------------------------------------------------------------------------- /plugins/bootstrap-datetimepicker/pages/bootstrap-datetimepicker_scss.php: -------------------------------------------------------------------------------- 1 | '.$Parsedown->text($file).''; 10 | 11 | $fragment = new rex_fragment(); 12 | $fragment->setVar('title', rex_i18n::msg('bootstrap-datetimepicker_scss')); 13 | $fragment->setVar('body', $content, false); 14 | echo $fragment->parse('core/page/section.php'); 15 | -------------------------------------------------------------------------------- /plugins/bootstrap-datetimepicker/pages/bootstrap-datetimepicker_readme.php: -------------------------------------------------------------------------------- 1 | '.$Parsedown->text($file); 8 | 9 | 10 | $fragment = new rex_fragment(); 11 | $fragment->setVar('title', rex_i18n::msg('bootstrap-datetimepicker_readme')); 12 | $fragment->setVar('body', $content, false); 13 | echo $fragment->parse('core/page/section.php'); -------------------------------------------------------------------------------- /plugins/selectize/assets/selectize/src/plugins/auto_select_on_type/plugin.js: -------------------------------------------------------------------------------- 1 | Selectize.define('auto_select_on_type', function(options) { 2 | var self = this; 3 | 4 | self.onBlur = (function() { 5 | var originalBlur = self.onBlur; 6 | return function(e) { 7 | var $matchedItem = self.getFirstItemMatchedByTextContent(self.lastValue, true); 8 | if (typeof $matchedItem.attr('data-value') !== 'undefined' && self.getValue() !== $matchedItem.attr('data-value')) 9 | { 10 | self.setValue($matchedItem.attr('data-value')); 11 | } 12 | return originalBlur.apply(this, arguments); 13 | } 14 | }()); 15 | }); 16 | -------------------------------------------------------------------------------- /plugins/bootstrap-datetimepicker/pages/bootstrap-datetimepicker_license.php: -------------------------------------------------------------------------------- 1 | '.$Parsedown->text($file).''; 10 | 11 | $fragment = new rex_fragment(); 12 | $fragment->setVar('title', rex_i18n::msg('bootstrap-datetimepicker_license')); 13 | $fragment->setVar('body', $content, false); 14 | echo $fragment->parse('core/page/section.php'); -------------------------------------------------------------------------------- /plugins/jquery-minicolors/assets/jquery-minicolors/README.md: -------------------------------------------------------------------------------- 1 | # jQuery MiniColors: A tiny color picker built on jQuery 2 | 3 | Developed by Cory LaViska for A Beautiful Site, LLC 4 | 5 | Licensed under the MIT license: http://opensource.org/licenses/MIT 6 | 7 | ## Install via NPM 8 | 9 | This is the official NPM version of MiniColors: 10 | 11 | ``` 12 | npm install --save @claviska/jquery-minicolors 13 | ``` 14 | 15 | **Note:** There is another version on NPM without the namespace that is out of date and not supported. I did not create it nor do I have control of it. Please use the official NPM version to ensure you have the latest updates. 16 | -------------------------------------------------------------------------------- /plugins/jquery-minicolors/lang/de_de.lang: -------------------------------------------------------------------------------- 1 | jquery-minicolors_menu_entry = jQuery minicolors 2 | jquery-minicolors_info = Info 3 | jquery-minicolors_config_title = Einstellungen 4 | jquery-minicolors_readme = Info 5 | jquery-minicolors_license = Lizenz 6 | jquery-minicolors_for-customizer_check = Für Customizer aktivieren? 7 | jquery-minicolors_for-customizer_info = Aktiviert den Colorpicker für das Customizer Farbfeld 8 | jquery-minicolors_update = Einstellungen aktualisieren 9 | jquery-minicolors_config_updated = Speichern erfolgreich! 10 | jquery-minicolors_config_updated_failed = Nicht gespeichert! 11 | jquery-minicolors_features = Funktionen 12 | -------------------------------------------------------------------------------- /plugins/selectize/assets/selectize/.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | # To get started with Dependabot version updates, you'll need to specify which 2 | # package ecosystems to update and where the package manifests are located. 3 | # Please see the documentation for all configuration options: 4 | # https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates 5 | 6 | version: 2 7 | updates: 8 | - package-ecosystem: "npm" # See documentation for possible values 9 | directory: "/" # Location of package manifests 10 | schedule: 11 | interval: "daily" 12 | labels: 13 | - "npm" 14 | - "dependencies" 15 | -------------------------------------------------------------------------------- /plugins/selectize/assets/selectize/.github/workflows/UpdateContributors.yml: -------------------------------------------------------------------------------- 1 | name: Update Contributors 2 | on: 3 | schedule: 4 | - cron: "0 0 1 * *" 5 | workflow_dispatch: 6 | jobs: 7 | main: 8 | runs-on: ubuntu-latest 9 | steps: 10 | - uses: risadams/contributors-update@v3.1.1 11 | with: 12 | repo: selectize/selectize.js 13 | output: CONTRIBUTORS.md 14 | exclude_bots: true 15 | - name: Commit changes 16 | uses: test-room-7/action-update-file@v1 17 | with: 18 | file-path: CONTRIBUTORS.md 19 | commit-msg: Update Contributors 20 | github-token: ${{ secrets.GITHUB_TOKEN }} 21 | -------------------------------------------------------------------------------- /plugins/bootstrap-datetimepicker/pages/index.php: -------------------------------------------------------------------------------- 1 |8 | .datetimepicker auf einem Input fügt einen Date und Time Picker hinzu. 9 |
10 |11 | .datepicker auf einem Input fügt einen Date Picker hinzu. 12 |
13 |14 | .timepicker auf einem Input fügt einen Time Picker hinzu. 15 |
16 | '; 17 | 18 | $fragment = new rex_fragment(); 19 | $fragment->setVar('title', rex_i18n::rawMsg('bootstrap-datetimepicker_config_title'), false); 20 | $fragment->setVar('body', $body, false); 21 | $title = $fragment->parse('core/page/section.php'); 22 | 23 | echo $title; -------------------------------------------------------------------------------- /plugins/bootstrap-datetimepicker/boot.php: -------------------------------------------------------------------------------- 1 | getAssetsUrl('bootstrap-datetimepicker/css/bootstrap-datetimepicker.css')); 5 | rex_view::addJsFile($plugin->getAssetsUrl('bootstrap-datetimepicker/js/moment-with-locales.js')); 6 | rex_view::addJsFile($plugin->getAssetsUrl('bootstrap-datetimepicker/js/bootstrap-datetimepicker.min.js')); 7 | rex_view::addJsFile($plugin->getAssetsUrl('bootstrap-datetimepicker/rex_bootstrap-datetimepicker.js')); 8 | } 9 | 10 | if (rex_plugin::get('yform', 'manager')->isAvailable()) { 11 | rex_yform::addTemplatePath($plugin->getPath('ytemplates')); 12 | } -------------------------------------------------------------------------------- /plugins/jquery-minicolors/assets/jquery-minicolors/jquery-minicolors.js: -------------------------------------------------------------------------------- 1 | $(document).on('rex:ready', function() { 2 | settings = { 3 | animationSpeed: 50, 4 | animationEasing: 'swing', 5 | change: null, 6 | changeDelay: 0, 7 | control: 'hue', 8 | defaultValue: '', 9 | format: 'rgb', 10 | hide: null, 11 | hideSpeed: 100, 12 | inline: false, 13 | keywords: '', 14 | letterCase: 'lowercase', 15 | opacity: true, 16 | position: 'bottom left', 17 | show: null, 18 | showSpeed: 100, 19 | theme: 'bootstrap', 20 | swatches: [] 21 | }; 22 | 23 | $('input.minicolors').minicolors(settings); 24 | }); 25 | -------------------------------------------------------------------------------- /plugins/selectize/assets/selectize/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [risadams] 4 | patreon: # Replace with a single Patreon username 5 | open_collective: # Replace with a single Open Collective username 6 | ko_fi: # Replace with a single Ko-fi username 7 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel 8 | community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry 9 | liberapay: # Replace with a single Liberapay username 10 | issuehunt: # Replace with a single IssueHunt username 11 | otechie: # Replace with a single Otechie username 12 | custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] 13 | -------------------------------------------------------------------------------- /package.yml: -------------------------------------------------------------------------------- 1 | # Alle hier gesetzten Werte können über $addon->getProperty($key) abgefragt werden 2 | 3 | package: ui_tools 4 | version: '1.2.2' 5 | author: 'Friends Of REDAXO' 6 | supportpage: https://github.com/FriendsOfREDAXO/ui_tools/issues 7 | info: 'Idee und Realisierung der ersten Version: Tim Filler / timfiller.de' 8 | 9 | page: 10 | title: 'translate:title' 11 | perm: ui_tools[] 12 | icon: rex-icon fa-wrench 13 | pjax: false 14 | subpages: 15 | info: 16 | title: 'Info' 17 | itemclass: 'pull-right' 18 | subpages: 19 | info: { title: 'Info'} 20 | changelog: { title: 'translate:changelog'} 21 | lizenz: { title: 'translate:license'} 22 | 23 | requires: 24 | redaxo: '>=5.12.0' 25 | -------------------------------------------------------------------------------- /plugins/selectize/assets/selectize/dist/less/plugins/dropdown_header.less: -------------------------------------------------------------------------------- 1 | .selectize-dropdown-header { 2 | position: relative; 3 | padding: @selectize-padding-dropdown-item-y @selectize-padding-dropdown-item-x; 4 | border-bottom: 1px solid @selectize-color-border; 5 | background: mix(@selectize-color-dropdown, @selectize-color-border, 85%); 6 | .selectize-border-radius(@selectize-border-radius @selectize-border-radius 0 0); 7 | } 8 | .selectize-dropdown-header-close { 9 | position: absolute; 10 | right: @selectize-padding-dropdown-item-x; 11 | top: 50%; 12 | color: @selectize-color-text; 13 | opacity: 0.4; 14 | margin-top: -12px; 15 | line-height: 20px; 16 | font-size: 20px !important; 17 | } 18 | .selectize-dropdown-header-close:hover { 19 | color: darken(@selectize-color-text, 25%); 20 | } -------------------------------------------------------------------------------- /plugins/selectize/assets/selectize/src/plugins/dropdown_header/plugin.less: -------------------------------------------------------------------------------- 1 | .selectize-dropdown-header { 2 | position: relative; 3 | padding: @selectize-padding-dropdown-item-y @selectize-padding-dropdown-item-x; 4 | border-bottom: 1px solid @selectize-color-border; 5 | background: mix(@selectize-color-dropdown, @selectize-color-border, 85%); 6 | .selectize-border-radius(@selectize-border-radius @selectize-border-radius 0 0); 7 | } 8 | .selectize-dropdown-header-close { 9 | position: absolute; 10 | right: @selectize-padding-dropdown-item-x; 11 | top: 50%; 12 | color: @selectize-color-text; 13 | opacity: 0.4; 14 | margin-top: -12px; 15 | line-height: 20px; 16 | font-size: 20px !important; 17 | } 18 | .selectize-dropdown-header-close:hover { 19 | color: darken(@selectize-color-text, 25%); 20 | } -------------------------------------------------------------------------------- /plugins/bootstrap-datetimepicker/package.yml: -------------------------------------------------------------------------------- 1 | package: ui_tools/bootstrap-datetimepicker 2 | version: '4.17.47' 3 | author: 'Friends Of REDAXO' 4 | supportpage: github.com/FriendsOfREDAXO 5 | 6 | page: 7 | title: 'translate:bootstrap-datetimepicker_menu_entry' 8 | perm: admin[] 9 | subpages: 10 | index: { title: 'translate:bootstrap-datetimepicker_config_title', perm: admin} 11 | bootstrap-datetimepicker_readme: { title: 'translate:bootstrap-datetimepicker_readme', perm: admin} 12 | bootstrap-datetimepicker_license: { title: 'translate:bootstrap-datetimepicker_license', perm: admin} 13 | bootstrap-datetimepicker_scss: { title: 'translate:bootstrap-datetimepicker_scss', perm: admin} 14 | bootstrap-datetimepicker_less: { title: 'translate:bootstrap-datetimepicker_less', perm: admin} 15 | -------------------------------------------------------------------------------- /plugins/selectize/assets/selectize/dist/scss/plugins/dropdown_header.scss: -------------------------------------------------------------------------------- 1 | .#{$selectize}-control { 2 | .dropdown-header { 3 | position: relative; 4 | padding: ($select-padding-dropdown-item-y * 2) 5 | $select-padding-dropdown-item-x; 6 | border-bottom: 1px solid $select-color-border; 7 | background: mix($select-color-dropdown, $select-color-border, 85%); 8 | border-radius: $select-border-radius $select-border-radius 0 0; 9 | } 10 | .dropdown-header-close { 11 | position: absolute; 12 | right: $select-padding-dropdown-item-x; 13 | top: 50%; 14 | color: $select-color-text; 15 | opacity: 0.4; 16 | margin-top: -12px; 17 | line-height: 20px; 18 | font-size: 20px !important; 19 | } 20 | .dropdown-header-close:hover { 21 | color: darken($select-color-text, 25%); 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /plugins/selectize/assets/selectize/src/plugins/dropdown_header/plugin.scss: -------------------------------------------------------------------------------- 1 | .#{$selectize}-control { 2 | .dropdown-header { 3 | position: relative; 4 | padding: ($select-padding-dropdown-item-y * 2) 5 | $select-padding-dropdown-item-x; 6 | border-bottom: 1px solid $select-color-border; 7 | background: mix($select-color-dropdown, $select-color-border, 85%); 8 | border-radius: $select-border-radius $select-border-radius 0 0; 9 | } 10 | .dropdown-header-close { 11 | position: absolute; 12 | right: $select-padding-dropdown-item-x; 13 | top: 50%; 14 | color: $select-color-text; 15 | opacity: 0.4; 16 | margin-top: -12px; 17 | line-height: 20px; 18 | font-size: 20px !important; 19 | } 20 | .dropdown-header-close:hover { 21 | color: darken($select-color-text, 25%); 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /plugins/selectize/assets/selectize/src/constants.js: -------------------------------------------------------------------------------- 1 | var IS_MAC = /Mac/.test(navigator.userAgent); 2 | 3 | var KEY_A = 65; 4 | var KEY_COMMA = 188; 5 | var KEY_RETURN = 13; 6 | var KEY_ESC = 27; 7 | var KEY_LEFT = 37; 8 | var KEY_UP = 38; 9 | var KEY_P = 80; 10 | var KEY_RIGHT = 39; 11 | var KEY_DOWN = 40; 12 | var KEY_N = 78; 13 | var KEY_BACKSPACE = 8; 14 | var KEY_DELETE = 46; 15 | var KEY_SHIFT = 16; 16 | var KEY_CMD = IS_MAC ? 91 : 17; 17 | var KEY_CTRL = IS_MAC ? 18 : 17; 18 | var KEY_TAB = 9; 19 | 20 | var TAG_SELECT = 1; 21 | var TAG_INPUT = 2; 22 | 23 | // for now, android support in general is too spotty to support validity 24 | var SUPPORTS_VALIDITY_API = !/android/i.test(window.navigator.userAgent) && !!document.createElement('input').validity; 25 | -------------------------------------------------------------------------------- /pages/index.php: -------------------------------------------------------------------------------- 1 | i18n('title')); // $this->i18n('title') ist eine Kurzform für rex_i18n::msg('dummy_title') 9 | 10 | // Die Subpages werden nicht mehr über den "subpage"-Parameter gesteuert, sondern mit über "page" (getrennt mit einem Slash, z. B. page=dummy/config) 11 | // Die einzelnen Teile des page-Pfades können mit der folgenden Funktion ausgelesen werden. 12 | $subpage = rex_be_controller::getCurrentPagePart(2); 13 | 14 | // Subpages können über diese Methode eingebunden werden. So ist sichergestellt, dass auch Subpages funktionieren, 15 | // die von anderen Addons/Plugins hinzugefügt wurden 16 | rex_be_controller::includeCurrentPageSubPath(); 17 | -------------------------------------------------------------------------------- /plugins/selectize/assets/selectize/src/less/.wrapper.css: -------------------------------------------------------------------------------- 1 | /** 2 | * selectize.css (v@@version) 3 | * Copyright (c) 2013–2015 Brian Reavis & contributors 4 | * Copyright (c) 2020 Selectize Team & contributors 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this 7 | * file except in compliance with the License. You may obtain a copy of the License at: 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software distributed under 11 | * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF 12 | * ANY KIND, either express or implied. See the License for the specific language 13 | * governing permissions and limitations under the License. 14 | * 15 | * @author Brian Reavis
15 |
16 | Dieses AddOn bindet dient als Container zur Einbindung verschiedener Vendoren.
17 | Momentan verfügbar:
18 |