├── .travis.yml ├── LICENCE.md ├── Plugin.php ├── README.md ├── assets ├── css │ └── builder.css ├── images │ ├── builder-icon.svg │ ├── loader-transparent.svg │ ├── tab-dark.png │ └── tab.png ├── js │ ├── build-min.js │ ├── builder.codelist.js │ ├── builder.dataregistry.js │ ├── builder.index.entity.base.js │ ├── builder.index.entity.code.js │ ├── builder.index.entity.controller.js │ ├── builder.index.entity.databasetable.js │ ├── builder.index.entity.imports.js │ ├── builder.index.entity.localization.js │ ├── builder.index.entity.menus.js │ ├── builder.index.entity.model.js │ ├── builder.index.entity.modelform.js │ ├── builder.index.entity.modellist.js │ ├── builder.index.entity.permission.js │ ├── builder.index.entity.plugin.js │ ├── builder.index.entity.version.js │ ├── builder.index.js │ ├── builder.inspector.editor.localization.js │ ├── builder.localizationinput.js │ └── builder.table.processor.localization.js └── less │ ├── behaviors.less │ ├── builder.less │ ├── buildingarea.less │ ├── codelist.less │ ├── controlblueprint.less │ ├── imports.less │ ├── localization.less │ ├── menus.less │ └── tabs.less ├── behaviors ├── IndexCodeOperations.php ├── IndexControllerOperations.php ├── IndexDataRegistry.php ├── IndexDatabaseTableOperations.php ├── IndexImportsOperations.php ├── IndexLocalizationOperations.php ├── IndexMenusOperations.php ├── IndexModelFormOperations.php ├── IndexModelListOperations.php ├── IndexModelOperations.php ├── IndexPermissionsOperations.php ├── IndexPluginOperations.php ├── IndexVersionsOperations.php ├── indexcodeoperations │ └── partials │ │ ├── _tab.php │ │ └── _toolbar.php ├── indexcontrolleroperations │ └── partials │ │ ├── _create-controller-popup-form.php │ │ ├── _tab.php │ │ └── _toolbar.php ├── indexdatabasetableoperations │ └── partials │ │ ├── _migration-popup-form.php │ │ ├── _tab.php │ │ └── _toolbar.php ├── indeximportsoperations │ └── partials │ │ ├── _import-blueprints-popup-form.php │ │ ├── _tab.php │ │ └── _toolbar.php ├── indexlocalizationoperations │ └── partials │ │ ├── _copy-strings-popup-form.php │ │ ├── _new-string-popup.php │ │ ├── _tab.php │ │ └── _toolbar.php ├── indexmenusoperations │ └── partials │ │ ├── _tab.php │ │ └── _toolbar.php ├── indexmodelformoperations │ └── partials │ │ ├── _add-database-fields-popup-form.php │ │ ├── _tab.php │ │ └── _toolbar.php ├── indexmodellistoperations │ └── partials │ │ ├── _tab.php │ │ └── _toolbar.php ├── indexmodeloperations │ └── partials │ │ └── _model-popup-form.php ├── indexpermissionsoperations │ └── partials │ │ ├── _tab.php │ │ └── _toolbar.php ├── indexpluginoperations │ └── partials │ │ ├── _plugin-popup-form.php │ │ └── _plugin-update-hint.php └── indexversionsoperations │ └── partials │ ├── _tab.php │ ├── _toolbar.php │ └── _version-hint-block.php ├── classes ├── BehaviorDesignTimeProviderBase.php ├── BlueprintDesignTimeProviderBase.php ├── BlueprintGenerator.php ├── ComponentHelper.php ├── ControlDesignTimeProviderBase.php ├── ControlLibrary.php ├── ControllerBehaviorLibrary.php ├── ControllerFileParser.php ├── ControllerGenerator.php ├── DatabaseTableSchemaCreator.php ├── EnumDbType.php ├── FilesystemGenerator.php ├── IconList.php ├── IndexOperationsBehaviorBase.php ├── LanguageMixer.php ├── MigrationColumnType.php ├── MigrationFileParser.php ├── ModelFileParser.php ├── PhpSourceStream.php ├── PluginCode.php ├── PluginVector.php ├── PluginVersion.php ├── StandardBehaviorsRegistry.php ├── StandardBlueprintsRegistry.php ├── StandardControlsRegistry.php ├── TableMigrationCodeGenerator.php ├── TailorBlueprintLibrary.php ├── blueprintgenerator │ ├── ContainerUtils.php │ ├── ExpandoModelContainer.php │ ├── FilterElementContainer.php │ ├── FormElementContainer.php │ ├── HasControllers.php │ ├── HasExpandoModels.php │ ├── HasMigrations.php │ ├── HasModels.php │ ├── HasNavigation.php │ ├── HasPermissions.php │ ├── HasVersionFile.php │ ├── ListElementContainer.php │ ├── ModelContainer.php │ └── templates │ │ ├── migration-join.php.tpl │ │ ├── migration-repeater.php.tpl │ │ └── migration.php.tpl ├── controllergenerator │ └── templates │ │ ├── controller-config-vars.php.tpl │ │ ├── controller-no-list.php.tpl │ │ ├── controller-permissions.php.tpl │ │ └── controller.php.tpl ├── doctrine │ └── TimestampType.php ├── standardbehaviorsregistry │ ├── formcontroller │ │ └── templates │ │ │ ├── create.php.tpl │ │ │ ├── preview.php.tpl │ │ │ └── update.php.tpl │ ├── importexportcontroller │ │ └── templates │ │ │ ├── export.php.tpl │ │ │ └── import.php.tpl │ └── listcontroller │ │ └── templates │ │ ├── _list_toolbar.php.tpl │ │ └── index.php.tpl └── standardcontrolsregistry │ ├── HasFormFields.php │ ├── HasFormUi.php │ └── HasFormWidgets.php ├── components ├── RecordDetails.php ├── RecordList.php ├── recorddetails │ └── default.htm └── recordlist │ └── default.htm ├── composer.json ├── controllers ├── Index.php └── index │ ├── _plugin-selector.php │ ├── _sidepanel.php │ └── index.php ├── formwidgets ├── BlueprintBuilder.php ├── ControllerBuilder.php ├── FormBuilder.php ├── MenuEditor.php ├── blueprintbuilder │ ├── assets │ │ └── js │ │ │ └── blueprintbuilder.js │ └── partials │ │ ├── _blueprint.php │ │ ├── _body.php │ │ ├── _buildingarea.php │ │ └── _select_blueprint_form.php ├── controllerbuilder │ ├── assets │ │ └── js │ │ │ └── controllerbuilder.js │ └── partials │ │ ├── _behavior.php │ │ ├── _body.php │ │ └── _buildingarea.php ├── formbuilder │ ├── assets │ │ └── js │ │ │ ├── formbuilder.controlpalette.js │ │ │ ├── formbuilder.domtopropertyjson.js │ │ │ ├── formbuilder.js │ │ │ └── formbuilder.tabs.js │ └── partials │ │ ├── _body.php │ │ ├── _buildingarea.php │ │ ├── _controlbody.php │ │ ├── _controlcontainer.php │ │ ├── _controllist.php │ │ ├── _controlpalette.php │ │ ├── _controlwrapper.php │ │ ├── _tab.php │ │ ├── _tabpanel.php │ │ └── _tabs.php └── menueditor │ ├── assets │ └── js │ │ └── menubuilder.js │ └── partials │ ├── _body.php │ ├── _mainmenuitem.php │ ├── _mainmenuitems.php │ ├── _submenuitem.php │ └── _submenuitems.php ├── lang ├── cs.json ├── cs │ └── lang.php ├── en.json ├── en │ └── lang.php ├── es.json ├── es │ └── lang.php ├── fa.json ├── fa │ └── lang.php ├── nl.json ├── nl │ └── lang.php ├── pl.json ├── pl │ └── lang.php ├── pt-br.json ├── pt-br │ └── lang.php ├── zh-cn.json └── zh-cn │ └── lang.php ├── models ├── BaseModel.php ├── CodeFileModel.php ├── ControllerModel.php ├── DatabaseTableModel.php ├── ImportsModel.php ├── LocalizationModel.php ├── MenusModel.php ├── MigrationModel.php ├── ModelFilterModel.php ├── ModelFormModel.php ├── ModelListModel.php ├── ModelModel.php ├── ModelYamlModel.php ├── PermissionsModel.php ├── PluginBaseModel.php ├── PluginYamlModel.php ├── Settings.php ├── YamlModel.php ├── codefilemodel │ └── fields.yaml ├── controllermodel │ ├── fields.yaml │ └── fields_new_controller.yaml ├── databasetablemodel │ ├── fields.yaml │ └── templates │ │ ├── full-migration-code.php.tpl │ │ └── migration-code.php.tpl ├── importsmodel │ ├── fields.yaml │ ├── fields_import.yaml │ └── fields_select.yaml ├── localizationmodel │ ├── fields.yaml │ └── templates │ │ └── lang.php ├── menusmodel │ └── fields.yaml ├── migrationmodel │ ├── fields.yaml │ ├── management-fields.yaml │ └── templates │ │ ├── migration.php.tpl │ │ └── seeder.php.tpl ├── modelformmodel │ └── fields.yaml ├── modellistmodel │ └── fields.yaml ├── modelmodel │ ├── fields.yaml │ └── templates │ │ ├── model.php.tpl │ │ ├── multisite-definitions.php.tpl │ │ ├── no-timestamps.php.tpl │ │ ├── relation-definitions.php.tpl │ │ ├── settingmodel.php.tpl │ │ ├── soft-delete.php.tpl │ │ └── validation-definitions.php.tpl ├── permissionsmodel │ └── fields.yaml ├── pluginbasemodel │ ├── fields.yaml │ └── templates │ │ ├── lang.php.tpl │ │ ├── plugin.php.tpl │ │ └── version.yaml.tpl └── settings │ └── fields.yaml ├── phpcs.xml ├── phpunit.xml ├── rainlab-builder.mix.js ├── rules └── Reserved.php ├── tests ├── TestCase.php ├── fixtures │ ├── MyMock.php │ └── filesystemgenerator │ │ ├── templates │ │ └── plugin.php.tpl │ │ └── temporary │ │ └── .gitignore └── unit │ ├── classes │ ├── FilesystemGeneratorTest.php │ └── ModelModelTest.php │ └── phpunit.xml ├── updates └── version.yaml └── widgets ├── CodeList.php ├── ControllerList.php ├── DatabaseTableList.php ├── DefaultBehaviorDesignTimeProvider.php ├── DefaultBlueprintDesignTimeProvider.php ├── DefaultControlDesignTimeProvider.php ├── LanguageList.php ├── ModelList.php ├── PluginList.php ├── VersionList.php ├── codelist └── partials │ ├── _body.php │ ├── _files.php │ ├── _items.php │ ├── _move_form.php │ ├── _new_dir_form.php │ ├── _rename_form.php │ ├── _toolbar.php │ └── _widget-contents.php ├── controllerlist └── partials │ ├── _body.php │ ├── _controller-list.php │ ├── _items.php │ ├── _toolbar.php │ └── _widget-contents.php ├── databasetablelist └── partials │ ├── _body.php │ ├── _items.php │ ├── _table-list.php │ ├── _toolbar.php │ └── _widget-contents.php ├── defaultbehaviordesigntimeprovider └── partials │ ├── _behavior-form-controller.php │ ├── _behavior-import-export-controller.php │ ├── _behavior-list-controller.php │ └── _behavior-unknown.php ├── defaultblueprintdesigntimeprovider └── partials │ ├── _blueprint-entry.php │ ├── _blueprint-global.php │ └── _blueprint-unknown.php ├── defaultcontroldesigntimeprovider └── partials │ ├── _control-balloon-selector.php │ ├── _control-checkbox.php │ ├── _control-checkboxlist.php │ ├── _control-codeeditor.php │ ├── _control-colorpicker.php │ ├── _control-datatable.php │ ├── _control-datepicker.php │ ├── _control-dropdown.php │ ├── _control-email.php │ ├── _control-fileupload.php │ ├── _control-hint.php │ ├── _control-markdown.php │ ├── _control-mediafinder.php │ ├── _control-nestedform-static.php │ ├── _control-nestedform.php │ ├── _control-number.php │ ├── _control-pagefinder.php │ ├── _control-partial.php │ ├── _control-password.php │ ├── _control-radio.php │ ├── _control-recordfinder.php │ ├── _control-relation.php │ ├── _control-repeater-static.php │ ├── _control-repeater.php │ ├── _control-richeditor.php │ ├── _control-ruler.php │ ├── _control-section.php │ ├── _control-sensitive.php │ ├── _control-switch.php │ ├── _control-taglist.php │ ├── _control-text.php │ ├── _control-textarea.php │ └── _control-unknowncontrol.php ├── languagelist └── partials │ ├── _body.php │ ├── _items.php │ ├── _language-list.php │ ├── _toolbar.php │ └── _widget-contents.php ├── modellist └── partials │ ├── _body.php │ ├── _items.php │ ├── _model-list.php │ ├── _toolbar.php │ └── _widget-contents.php ├── pluginlist └── partials │ ├── _body.php │ ├── _items.php │ ├── _plugin-list.php │ ├── _toolbar-buttons.php │ └── _toolbar.php └── versionlist └── partials ├── _body.php ├── _items.php ├── _sort.php ├── _toolbar.php ├── _version-list.php └── _widget-contents.php /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/LICENCE.md -------------------------------------------------------------------------------- /Plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/Plugin.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/README.md -------------------------------------------------------------------------------- /assets/css/builder.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/assets/css/builder.css -------------------------------------------------------------------------------- /assets/images/builder-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/assets/images/builder-icon.svg -------------------------------------------------------------------------------- /assets/images/loader-transparent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/assets/images/loader-transparent.svg -------------------------------------------------------------------------------- /assets/images/tab-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/assets/images/tab-dark.png -------------------------------------------------------------------------------- /assets/images/tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/assets/images/tab.png -------------------------------------------------------------------------------- /assets/js/build-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/assets/js/build-min.js -------------------------------------------------------------------------------- /assets/js/builder.codelist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/assets/js/builder.codelist.js -------------------------------------------------------------------------------- /assets/js/builder.dataregistry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/assets/js/builder.dataregistry.js -------------------------------------------------------------------------------- /assets/js/builder.index.entity.base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/assets/js/builder.index.entity.base.js -------------------------------------------------------------------------------- /assets/js/builder.index.entity.code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/assets/js/builder.index.entity.code.js -------------------------------------------------------------------------------- /assets/js/builder.index.entity.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/assets/js/builder.index.entity.controller.js -------------------------------------------------------------------------------- /assets/js/builder.index.entity.databasetable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/assets/js/builder.index.entity.databasetable.js -------------------------------------------------------------------------------- /assets/js/builder.index.entity.imports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/assets/js/builder.index.entity.imports.js -------------------------------------------------------------------------------- /assets/js/builder.index.entity.localization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/assets/js/builder.index.entity.localization.js -------------------------------------------------------------------------------- /assets/js/builder.index.entity.menus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/assets/js/builder.index.entity.menus.js -------------------------------------------------------------------------------- /assets/js/builder.index.entity.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/assets/js/builder.index.entity.model.js -------------------------------------------------------------------------------- /assets/js/builder.index.entity.modelform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/assets/js/builder.index.entity.modelform.js -------------------------------------------------------------------------------- /assets/js/builder.index.entity.modellist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/assets/js/builder.index.entity.modellist.js -------------------------------------------------------------------------------- /assets/js/builder.index.entity.permission.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/assets/js/builder.index.entity.permission.js -------------------------------------------------------------------------------- /assets/js/builder.index.entity.plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/assets/js/builder.index.entity.plugin.js -------------------------------------------------------------------------------- /assets/js/builder.index.entity.version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/assets/js/builder.index.entity.version.js -------------------------------------------------------------------------------- /assets/js/builder.index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/assets/js/builder.index.js -------------------------------------------------------------------------------- /assets/js/builder.inspector.editor.localization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/assets/js/builder.inspector.editor.localization.js -------------------------------------------------------------------------------- /assets/js/builder.localizationinput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/assets/js/builder.localizationinput.js -------------------------------------------------------------------------------- /assets/js/builder.table.processor.localization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/assets/js/builder.table.processor.localization.js -------------------------------------------------------------------------------- /assets/less/behaviors.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/assets/less/behaviors.less -------------------------------------------------------------------------------- /assets/less/builder.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/assets/less/builder.less -------------------------------------------------------------------------------- /assets/less/buildingarea.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/assets/less/buildingarea.less -------------------------------------------------------------------------------- /assets/less/codelist.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/assets/less/codelist.less -------------------------------------------------------------------------------- /assets/less/controlblueprint.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/assets/less/controlblueprint.less -------------------------------------------------------------------------------- /assets/less/imports.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/assets/less/imports.less -------------------------------------------------------------------------------- /assets/less/localization.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/assets/less/localization.less -------------------------------------------------------------------------------- /assets/less/menus.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/assets/less/menus.less -------------------------------------------------------------------------------- /assets/less/tabs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/assets/less/tabs.less -------------------------------------------------------------------------------- /behaviors/IndexCodeOperations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/behaviors/IndexCodeOperations.php -------------------------------------------------------------------------------- /behaviors/IndexControllerOperations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/behaviors/IndexControllerOperations.php -------------------------------------------------------------------------------- /behaviors/IndexDataRegistry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/behaviors/IndexDataRegistry.php -------------------------------------------------------------------------------- /behaviors/IndexDatabaseTableOperations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/behaviors/IndexDatabaseTableOperations.php -------------------------------------------------------------------------------- /behaviors/IndexImportsOperations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/behaviors/IndexImportsOperations.php -------------------------------------------------------------------------------- /behaviors/IndexLocalizationOperations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/behaviors/IndexLocalizationOperations.php -------------------------------------------------------------------------------- /behaviors/IndexMenusOperations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/behaviors/IndexMenusOperations.php -------------------------------------------------------------------------------- /behaviors/IndexModelFormOperations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/behaviors/IndexModelFormOperations.php -------------------------------------------------------------------------------- /behaviors/IndexModelListOperations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/behaviors/IndexModelListOperations.php -------------------------------------------------------------------------------- /behaviors/IndexModelOperations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/behaviors/IndexModelOperations.php -------------------------------------------------------------------------------- /behaviors/IndexPermissionsOperations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/behaviors/IndexPermissionsOperations.php -------------------------------------------------------------------------------- /behaviors/IndexPluginOperations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/behaviors/IndexPluginOperations.php -------------------------------------------------------------------------------- /behaviors/IndexVersionsOperations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/behaviors/IndexVersionsOperations.php -------------------------------------------------------------------------------- /behaviors/indexcodeoperations/partials/_tab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/behaviors/indexcodeoperations/partials/_tab.php -------------------------------------------------------------------------------- /behaviors/indexcodeoperations/partials/_toolbar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/behaviors/indexcodeoperations/partials/_toolbar.php -------------------------------------------------------------------------------- /behaviors/indexcontrolleroperations/partials/_create-controller-popup-form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/behaviors/indexcontrolleroperations/partials/_create-controller-popup-form.php -------------------------------------------------------------------------------- /behaviors/indexcontrolleroperations/partials/_tab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/behaviors/indexcontrolleroperations/partials/_tab.php -------------------------------------------------------------------------------- /behaviors/indexcontrolleroperations/partials/_toolbar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/behaviors/indexcontrolleroperations/partials/_toolbar.php -------------------------------------------------------------------------------- /behaviors/indexdatabasetableoperations/partials/_migration-popup-form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/behaviors/indexdatabasetableoperations/partials/_migration-popup-form.php -------------------------------------------------------------------------------- /behaviors/indexdatabasetableoperations/partials/_tab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/behaviors/indexdatabasetableoperations/partials/_tab.php -------------------------------------------------------------------------------- /behaviors/indexdatabasetableoperations/partials/_toolbar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/behaviors/indexdatabasetableoperations/partials/_toolbar.php -------------------------------------------------------------------------------- /behaviors/indeximportsoperations/partials/_import-blueprints-popup-form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/behaviors/indeximportsoperations/partials/_import-blueprints-popup-form.php -------------------------------------------------------------------------------- /behaviors/indeximportsoperations/partials/_tab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/behaviors/indeximportsoperations/partials/_tab.php -------------------------------------------------------------------------------- /behaviors/indeximportsoperations/partials/_toolbar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/behaviors/indeximportsoperations/partials/_toolbar.php -------------------------------------------------------------------------------- /behaviors/indexlocalizationoperations/partials/_copy-strings-popup-form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/behaviors/indexlocalizationoperations/partials/_copy-strings-popup-form.php -------------------------------------------------------------------------------- /behaviors/indexlocalizationoperations/partials/_new-string-popup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/behaviors/indexlocalizationoperations/partials/_new-string-popup.php -------------------------------------------------------------------------------- /behaviors/indexlocalizationoperations/partials/_tab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/behaviors/indexlocalizationoperations/partials/_tab.php -------------------------------------------------------------------------------- /behaviors/indexlocalizationoperations/partials/_toolbar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/behaviors/indexlocalizationoperations/partials/_toolbar.php -------------------------------------------------------------------------------- /behaviors/indexmenusoperations/partials/_tab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/behaviors/indexmenusoperations/partials/_tab.php -------------------------------------------------------------------------------- /behaviors/indexmenusoperations/partials/_toolbar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/behaviors/indexmenusoperations/partials/_toolbar.php -------------------------------------------------------------------------------- /behaviors/indexmodelformoperations/partials/_add-database-fields-popup-form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/behaviors/indexmodelformoperations/partials/_add-database-fields-popup-form.php -------------------------------------------------------------------------------- /behaviors/indexmodelformoperations/partials/_tab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/behaviors/indexmodelformoperations/partials/_tab.php -------------------------------------------------------------------------------- /behaviors/indexmodelformoperations/partials/_toolbar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/behaviors/indexmodelformoperations/partials/_toolbar.php -------------------------------------------------------------------------------- /behaviors/indexmodellistoperations/partials/_tab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/behaviors/indexmodellistoperations/partials/_tab.php -------------------------------------------------------------------------------- /behaviors/indexmodellistoperations/partials/_toolbar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/behaviors/indexmodellistoperations/partials/_toolbar.php -------------------------------------------------------------------------------- /behaviors/indexmodeloperations/partials/_model-popup-form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/behaviors/indexmodeloperations/partials/_model-popup-form.php -------------------------------------------------------------------------------- /behaviors/indexpermissionsoperations/partials/_tab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/behaviors/indexpermissionsoperations/partials/_tab.php -------------------------------------------------------------------------------- /behaviors/indexpermissionsoperations/partials/_toolbar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/behaviors/indexpermissionsoperations/partials/_toolbar.php -------------------------------------------------------------------------------- /behaviors/indexpluginoperations/partials/_plugin-popup-form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/behaviors/indexpluginoperations/partials/_plugin-popup-form.php -------------------------------------------------------------------------------- /behaviors/indexpluginoperations/partials/_plugin-update-hint.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /behaviors/indexversionsoperations/partials/_tab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/behaviors/indexversionsoperations/partials/_tab.php -------------------------------------------------------------------------------- /behaviors/indexversionsoperations/partials/_toolbar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/behaviors/indexversionsoperations/partials/_toolbar.php -------------------------------------------------------------------------------- /behaviors/indexversionsoperations/partials/_version-hint-block.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/behaviors/indexversionsoperations/partials/_version-hint-block.php -------------------------------------------------------------------------------- /classes/BehaviorDesignTimeProviderBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/classes/BehaviorDesignTimeProviderBase.php -------------------------------------------------------------------------------- /classes/BlueprintDesignTimeProviderBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/classes/BlueprintDesignTimeProviderBase.php -------------------------------------------------------------------------------- /classes/BlueprintGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/classes/BlueprintGenerator.php -------------------------------------------------------------------------------- /classes/ComponentHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/classes/ComponentHelper.php -------------------------------------------------------------------------------- /classes/ControlDesignTimeProviderBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/classes/ControlDesignTimeProviderBase.php -------------------------------------------------------------------------------- /classes/ControlLibrary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/classes/ControlLibrary.php -------------------------------------------------------------------------------- /classes/ControllerBehaviorLibrary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/classes/ControllerBehaviorLibrary.php -------------------------------------------------------------------------------- /classes/ControllerFileParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/classes/ControllerFileParser.php -------------------------------------------------------------------------------- /classes/ControllerGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/classes/ControllerGenerator.php -------------------------------------------------------------------------------- /classes/DatabaseTableSchemaCreator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/classes/DatabaseTableSchemaCreator.php -------------------------------------------------------------------------------- /classes/EnumDbType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/classes/EnumDbType.php -------------------------------------------------------------------------------- /classes/FilesystemGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/classes/FilesystemGenerator.php -------------------------------------------------------------------------------- /classes/IconList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/classes/IconList.php -------------------------------------------------------------------------------- /classes/IndexOperationsBehaviorBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/classes/IndexOperationsBehaviorBase.php -------------------------------------------------------------------------------- /classes/LanguageMixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/classes/LanguageMixer.php -------------------------------------------------------------------------------- /classes/MigrationColumnType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/classes/MigrationColumnType.php -------------------------------------------------------------------------------- /classes/MigrationFileParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/classes/MigrationFileParser.php -------------------------------------------------------------------------------- /classes/ModelFileParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/classes/ModelFileParser.php -------------------------------------------------------------------------------- /classes/PhpSourceStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/classes/PhpSourceStream.php -------------------------------------------------------------------------------- /classes/PluginCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/classes/PluginCode.php -------------------------------------------------------------------------------- /classes/PluginVector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/classes/PluginVector.php -------------------------------------------------------------------------------- /classes/PluginVersion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/classes/PluginVersion.php -------------------------------------------------------------------------------- /classes/StandardBehaviorsRegistry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/classes/StandardBehaviorsRegistry.php -------------------------------------------------------------------------------- /classes/StandardBlueprintsRegistry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/classes/StandardBlueprintsRegistry.php -------------------------------------------------------------------------------- /classes/StandardControlsRegistry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/classes/StandardControlsRegistry.php -------------------------------------------------------------------------------- /classes/TableMigrationCodeGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/classes/TableMigrationCodeGenerator.php -------------------------------------------------------------------------------- /classes/TailorBlueprintLibrary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/classes/TailorBlueprintLibrary.php -------------------------------------------------------------------------------- /classes/blueprintgenerator/ContainerUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/classes/blueprintgenerator/ContainerUtils.php -------------------------------------------------------------------------------- /classes/blueprintgenerator/ExpandoModelContainer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/classes/blueprintgenerator/ExpandoModelContainer.php -------------------------------------------------------------------------------- /classes/blueprintgenerator/FilterElementContainer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/classes/blueprintgenerator/FilterElementContainer.php -------------------------------------------------------------------------------- /classes/blueprintgenerator/FormElementContainer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/classes/blueprintgenerator/FormElementContainer.php -------------------------------------------------------------------------------- /classes/blueprintgenerator/HasControllers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/classes/blueprintgenerator/HasControllers.php -------------------------------------------------------------------------------- /classes/blueprintgenerator/HasExpandoModels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/classes/blueprintgenerator/HasExpandoModels.php -------------------------------------------------------------------------------- /classes/blueprintgenerator/HasMigrations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/classes/blueprintgenerator/HasMigrations.php -------------------------------------------------------------------------------- /classes/blueprintgenerator/HasModels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/classes/blueprintgenerator/HasModels.php -------------------------------------------------------------------------------- /classes/blueprintgenerator/HasNavigation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/classes/blueprintgenerator/HasNavigation.php -------------------------------------------------------------------------------- /classes/blueprintgenerator/HasPermissions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/classes/blueprintgenerator/HasPermissions.php -------------------------------------------------------------------------------- /classes/blueprintgenerator/HasVersionFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/classes/blueprintgenerator/HasVersionFile.php -------------------------------------------------------------------------------- /classes/blueprintgenerator/ListElementContainer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/classes/blueprintgenerator/ListElementContainer.php -------------------------------------------------------------------------------- /classes/blueprintgenerator/ModelContainer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/classes/blueprintgenerator/ModelContainer.php -------------------------------------------------------------------------------- /classes/blueprintgenerator/templates/migration-join.php.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/classes/blueprintgenerator/templates/migration-join.php.tpl -------------------------------------------------------------------------------- /classes/blueprintgenerator/templates/migration-repeater.php.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/classes/blueprintgenerator/templates/migration-repeater.php.tpl -------------------------------------------------------------------------------- /classes/blueprintgenerator/templates/migration.php.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/classes/blueprintgenerator/templates/migration.php.tpl -------------------------------------------------------------------------------- /classes/controllergenerator/templates/controller-config-vars.php.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/classes/controllergenerator/templates/controller-config-vars.php.tpl -------------------------------------------------------------------------------- /classes/controllergenerator/templates/controller-no-list.php.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/classes/controllergenerator/templates/controller-no-list.php.tpl -------------------------------------------------------------------------------- /classes/controllergenerator/templates/controller-permissions.php.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/classes/controllergenerator/templates/controller-permissions.php.tpl -------------------------------------------------------------------------------- /classes/controllergenerator/templates/controller.php.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/classes/controllergenerator/templates/controller.php.tpl -------------------------------------------------------------------------------- /classes/doctrine/TimestampType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/classes/doctrine/TimestampType.php -------------------------------------------------------------------------------- /classes/standardbehaviorsregistry/formcontroller/templates/create.php.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/classes/standardbehaviorsregistry/formcontroller/templates/create.php.tpl -------------------------------------------------------------------------------- /classes/standardbehaviorsregistry/formcontroller/templates/preview.php.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/classes/standardbehaviorsregistry/formcontroller/templates/preview.php.tpl -------------------------------------------------------------------------------- /classes/standardbehaviorsregistry/formcontroller/templates/update.php.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/classes/standardbehaviorsregistry/formcontroller/templates/update.php.tpl -------------------------------------------------------------------------------- /classes/standardbehaviorsregistry/importexportcontroller/templates/export.php.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/classes/standardbehaviorsregistry/importexportcontroller/templates/export.php.tpl -------------------------------------------------------------------------------- /classes/standardbehaviorsregistry/importexportcontroller/templates/import.php.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/classes/standardbehaviorsregistry/importexportcontroller/templates/import.php.tpl -------------------------------------------------------------------------------- /classes/standardbehaviorsregistry/listcontroller/templates/_list_toolbar.php.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/classes/standardbehaviorsregistry/listcontroller/templates/_list_toolbar.php.tpl -------------------------------------------------------------------------------- /classes/standardbehaviorsregistry/listcontroller/templates/index.php.tpl: -------------------------------------------------------------------------------- 1 | listRender() ?> 2 | -------------------------------------------------------------------------------- /classes/standardcontrolsregistry/HasFormFields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/classes/standardcontrolsregistry/HasFormFields.php -------------------------------------------------------------------------------- /classes/standardcontrolsregistry/HasFormUi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/classes/standardcontrolsregistry/HasFormUi.php -------------------------------------------------------------------------------- /classes/standardcontrolsregistry/HasFormWidgets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/classes/standardcontrolsregistry/HasFormWidgets.php -------------------------------------------------------------------------------- /components/RecordDetails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/components/RecordDetails.php -------------------------------------------------------------------------------- /components/RecordList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/components/RecordList.php -------------------------------------------------------------------------------- /components/recorddetails/default.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/components/recorddetails/default.htm -------------------------------------------------------------------------------- /components/recordlist/default.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/components/recordlist/default.htm -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/composer.json -------------------------------------------------------------------------------- /controllers/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/controllers/Index.php -------------------------------------------------------------------------------- /controllers/index/_plugin-selector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/controllers/index/_plugin-selector.php -------------------------------------------------------------------------------- /controllers/index/_sidepanel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/controllers/index/_sidepanel.php -------------------------------------------------------------------------------- /controllers/index/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/controllers/index/index.php -------------------------------------------------------------------------------- /formwidgets/BlueprintBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/formwidgets/BlueprintBuilder.php -------------------------------------------------------------------------------- /formwidgets/ControllerBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/formwidgets/ControllerBuilder.php -------------------------------------------------------------------------------- /formwidgets/FormBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/formwidgets/FormBuilder.php -------------------------------------------------------------------------------- /formwidgets/MenuEditor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/formwidgets/MenuEditor.php -------------------------------------------------------------------------------- /formwidgets/blueprintbuilder/assets/js/blueprintbuilder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/formwidgets/blueprintbuilder/assets/js/blueprintbuilder.js -------------------------------------------------------------------------------- /formwidgets/blueprintbuilder/partials/_blueprint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/formwidgets/blueprintbuilder/partials/_blueprint.php -------------------------------------------------------------------------------- /formwidgets/blueprintbuilder/partials/_body.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/formwidgets/blueprintbuilder/partials/_body.php -------------------------------------------------------------------------------- /formwidgets/blueprintbuilder/partials/_buildingarea.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/formwidgets/blueprintbuilder/partials/_buildingarea.php -------------------------------------------------------------------------------- /formwidgets/blueprintbuilder/partials/_select_blueprint_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/formwidgets/blueprintbuilder/partials/_select_blueprint_form.php -------------------------------------------------------------------------------- /formwidgets/controllerbuilder/assets/js/controllerbuilder.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /formwidgets/controllerbuilder/partials/_behavior.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/formwidgets/controllerbuilder/partials/_behavior.php -------------------------------------------------------------------------------- /formwidgets/controllerbuilder/partials/_body.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/formwidgets/controllerbuilder/partials/_body.php -------------------------------------------------------------------------------- /formwidgets/controllerbuilder/partials/_buildingarea.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/formwidgets/controllerbuilder/partials/_buildingarea.php -------------------------------------------------------------------------------- /formwidgets/formbuilder/assets/js/formbuilder.controlpalette.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/formwidgets/formbuilder/assets/js/formbuilder.controlpalette.js -------------------------------------------------------------------------------- /formwidgets/formbuilder/assets/js/formbuilder.domtopropertyjson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/formwidgets/formbuilder/assets/js/formbuilder.domtopropertyjson.js -------------------------------------------------------------------------------- /formwidgets/formbuilder/assets/js/formbuilder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/formwidgets/formbuilder/assets/js/formbuilder.js -------------------------------------------------------------------------------- /formwidgets/formbuilder/assets/js/formbuilder.tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/formwidgets/formbuilder/assets/js/formbuilder.tabs.js -------------------------------------------------------------------------------- /formwidgets/formbuilder/partials/_body.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/formwidgets/formbuilder/partials/_body.php -------------------------------------------------------------------------------- /formwidgets/formbuilder/partials/_buildingarea.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/formwidgets/formbuilder/partials/_buildingarea.php -------------------------------------------------------------------------------- /formwidgets/formbuilder/partials/_controlbody.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/formwidgets/formbuilder/partials/_controlbody.php -------------------------------------------------------------------------------- /formwidgets/formbuilder/partials/_controlcontainer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/formwidgets/formbuilder/partials/_controlcontainer.php -------------------------------------------------------------------------------- /formwidgets/formbuilder/partials/_controllist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/formwidgets/formbuilder/partials/_controllist.php -------------------------------------------------------------------------------- /formwidgets/formbuilder/partials/_controlpalette.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/formwidgets/formbuilder/partials/_controlpalette.php -------------------------------------------------------------------------------- /formwidgets/formbuilder/partials/_controlwrapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/formwidgets/formbuilder/partials/_controlwrapper.php -------------------------------------------------------------------------------- /formwidgets/formbuilder/partials/_tab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/formwidgets/formbuilder/partials/_tab.php -------------------------------------------------------------------------------- /formwidgets/formbuilder/partials/_tabpanel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/formwidgets/formbuilder/partials/_tabpanel.php -------------------------------------------------------------------------------- /formwidgets/formbuilder/partials/_tabs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/formwidgets/formbuilder/partials/_tabs.php -------------------------------------------------------------------------------- /formwidgets/menueditor/assets/js/menubuilder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/formwidgets/menueditor/assets/js/menubuilder.js -------------------------------------------------------------------------------- /formwidgets/menueditor/partials/_body.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/formwidgets/menueditor/partials/_body.php -------------------------------------------------------------------------------- /formwidgets/menueditor/partials/_mainmenuitem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/formwidgets/menueditor/partials/_mainmenuitem.php -------------------------------------------------------------------------------- /formwidgets/menueditor/partials/_mainmenuitems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/formwidgets/menueditor/partials/_mainmenuitems.php -------------------------------------------------------------------------------- /formwidgets/menueditor/partials/_submenuitem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/formwidgets/menueditor/partials/_submenuitem.php -------------------------------------------------------------------------------- /formwidgets/menueditor/partials/_submenuitems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/formwidgets/menueditor/partials/_submenuitems.php -------------------------------------------------------------------------------- /lang/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/lang/cs.json -------------------------------------------------------------------------------- /lang/cs/lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/lang/cs/lang.php -------------------------------------------------------------------------------- /lang/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/lang/en.json -------------------------------------------------------------------------------- /lang/en/lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/lang/en/lang.php -------------------------------------------------------------------------------- /lang/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/lang/es.json -------------------------------------------------------------------------------- /lang/es/lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/lang/es/lang.php -------------------------------------------------------------------------------- /lang/fa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/lang/fa.json -------------------------------------------------------------------------------- /lang/fa/lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/lang/fa/lang.php -------------------------------------------------------------------------------- /lang/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/lang/nl.json -------------------------------------------------------------------------------- /lang/nl/lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/lang/nl/lang.php -------------------------------------------------------------------------------- /lang/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/lang/pl.json -------------------------------------------------------------------------------- /lang/pl/lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/lang/pl/lang.php -------------------------------------------------------------------------------- /lang/pt-br.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/lang/pt-br.json -------------------------------------------------------------------------------- /lang/pt-br/lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/lang/pt-br/lang.php -------------------------------------------------------------------------------- /lang/zh-cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/lang/zh-cn.json -------------------------------------------------------------------------------- /lang/zh-cn/lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/lang/zh-cn/lang.php -------------------------------------------------------------------------------- /models/BaseModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/models/BaseModel.php -------------------------------------------------------------------------------- /models/CodeFileModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/models/CodeFileModel.php -------------------------------------------------------------------------------- /models/ControllerModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/models/ControllerModel.php -------------------------------------------------------------------------------- /models/DatabaseTableModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/models/DatabaseTableModel.php -------------------------------------------------------------------------------- /models/ImportsModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/models/ImportsModel.php -------------------------------------------------------------------------------- /models/LocalizationModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/models/LocalizationModel.php -------------------------------------------------------------------------------- /models/MenusModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/models/MenusModel.php -------------------------------------------------------------------------------- /models/MigrationModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/models/MigrationModel.php -------------------------------------------------------------------------------- /models/ModelFilterModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/models/ModelFilterModel.php -------------------------------------------------------------------------------- /models/ModelFormModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/models/ModelFormModel.php -------------------------------------------------------------------------------- /models/ModelListModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/models/ModelListModel.php -------------------------------------------------------------------------------- /models/ModelModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/models/ModelModel.php -------------------------------------------------------------------------------- /models/ModelYamlModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/models/ModelYamlModel.php -------------------------------------------------------------------------------- /models/PermissionsModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/models/PermissionsModel.php -------------------------------------------------------------------------------- /models/PluginBaseModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/models/PluginBaseModel.php -------------------------------------------------------------------------------- /models/PluginYamlModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/models/PluginYamlModel.php -------------------------------------------------------------------------------- /models/Settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/models/Settings.php -------------------------------------------------------------------------------- /models/YamlModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/models/YamlModel.php -------------------------------------------------------------------------------- /models/codefilemodel/fields.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/models/codefilemodel/fields.yaml -------------------------------------------------------------------------------- /models/controllermodel/fields.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/models/controllermodel/fields.yaml -------------------------------------------------------------------------------- /models/controllermodel/fields_new_controller.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/models/controllermodel/fields_new_controller.yaml -------------------------------------------------------------------------------- /models/databasetablemodel/fields.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/models/databasetablemodel/fields.yaml -------------------------------------------------------------------------------- /models/databasetablemodel/templates/full-migration-code.php.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/models/databasetablemodel/templates/full-migration-code.php.tpl -------------------------------------------------------------------------------- /models/databasetablemodel/templates/migration-code.php.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/models/databasetablemodel/templates/migration-code.php.tpl -------------------------------------------------------------------------------- /models/importsmodel/fields.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/models/importsmodel/fields.yaml -------------------------------------------------------------------------------- /models/importsmodel/fields_import.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/models/importsmodel/fields_import.yaml -------------------------------------------------------------------------------- /models/importsmodel/fields_select.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/models/importsmodel/fields_select.yaml -------------------------------------------------------------------------------- /models/localizationmodel/fields.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/models/localizationmodel/fields.yaml -------------------------------------------------------------------------------- /models/localizationmodel/templates/lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/models/localizationmodel/templates/lang.php -------------------------------------------------------------------------------- /models/menusmodel/fields.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/models/menusmodel/fields.yaml -------------------------------------------------------------------------------- /models/migrationmodel/fields.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/models/migrationmodel/fields.yaml -------------------------------------------------------------------------------- /models/migrationmodel/management-fields.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/models/migrationmodel/management-fields.yaml -------------------------------------------------------------------------------- /models/migrationmodel/templates/migration.php.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/models/migrationmodel/templates/migration.php.tpl -------------------------------------------------------------------------------- /models/migrationmodel/templates/seeder.php.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/models/migrationmodel/templates/seeder.php.tpl -------------------------------------------------------------------------------- /models/modelformmodel/fields.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/models/modelformmodel/fields.yaml -------------------------------------------------------------------------------- /models/modellistmodel/fields.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/models/modellistmodel/fields.yaml -------------------------------------------------------------------------------- /models/modelmodel/fields.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/models/modelmodel/fields.yaml -------------------------------------------------------------------------------- /models/modelmodel/templates/model.php.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/models/modelmodel/templates/model.php.tpl -------------------------------------------------------------------------------- /models/modelmodel/templates/multisite-definitions.php.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/models/modelmodel/templates/multisite-definitions.php.tpl -------------------------------------------------------------------------------- /models/modelmodel/templates/no-timestamps.php.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/models/modelmodel/templates/no-timestamps.php.tpl -------------------------------------------------------------------------------- /models/modelmodel/templates/relation-definitions.php.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/models/modelmodel/templates/relation-definitions.php.tpl -------------------------------------------------------------------------------- /models/modelmodel/templates/settingmodel.php.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/models/modelmodel/templates/settingmodel.php.tpl -------------------------------------------------------------------------------- /models/modelmodel/templates/soft-delete.php.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/models/modelmodel/templates/soft-delete.php.tpl -------------------------------------------------------------------------------- /models/modelmodel/templates/validation-definitions.php.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/models/modelmodel/templates/validation-definitions.php.tpl -------------------------------------------------------------------------------- /models/permissionsmodel/fields.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/models/permissionsmodel/fields.yaml -------------------------------------------------------------------------------- /models/pluginbasemodel/fields.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/models/pluginbasemodel/fields.yaml -------------------------------------------------------------------------------- /models/pluginbasemodel/templates/lang.php.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/models/pluginbasemodel/templates/lang.php.tpl -------------------------------------------------------------------------------- /models/pluginbasemodel/templates/plugin.php.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/models/pluginbasemodel/templates/plugin.php.tpl -------------------------------------------------------------------------------- /models/pluginbasemodel/templates/version.yaml.tpl: -------------------------------------------------------------------------------- 1 | v1.0.1: 2 | - 'Initialize plugin' 3 | -------------------------------------------------------------------------------- /models/settings/fields.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/models/settings/fields.yaml -------------------------------------------------------------------------------- /phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/phpcs.xml -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/phpunit.xml -------------------------------------------------------------------------------- /rainlab-builder.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/rainlab-builder.mix.js -------------------------------------------------------------------------------- /rules/Reserved.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/rules/Reserved.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/fixtures/MyMock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/tests/fixtures/MyMock.php -------------------------------------------------------------------------------- /tests/fixtures/filesystemgenerator/templates/plugin.php.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/tests/fixtures/filesystemgenerator/templates/plugin.php.tpl -------------------------------------------------------------------------------- /tests/fixtures/filesystemgenerator/temporary/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /tests/unit/classes/FilesystemGeneratorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/tests/unit/classes/FilesystemGeneratorTest.php -------------------------------------------------------------------------------- /tests/unit/classes/ModelModelTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/tests/unit/classes/ModelModelTest.php -------------------------------------------------------------------------------- /tests/unit/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/tests/unit/phpunit.xml -------------------------------------------------------------------------------- /updates/version.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/updates/version.yaml -------------------------------------------------------------------------------- /widgets/CodeList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/CodeList.php -------------------------------------------------------------------------------- /widgets/ControllerList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/ControllerList.php -------------------------------------------------------------------------------- /widgets/DatabaseTableList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/DatabaseTableList.php -------------------------------------------------------------------------------- /widgets/DefaultBehaviorDesignTimeProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/DefaultBehaviorDesignTimeProvider.php -------------------------------------------------------------------------------- /widgets/DefaultBlueprintDesignTimeProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/DefaultBlueprintDesignTimeProvider.php -------------------------------------------------------------------------------- /widgets/DefaultControlDesignTimeProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/DefaultControlDesignTimeProvider.php -------------------------------------------------------------------------------- /widgets/LanguageList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/LanguageList.php -------------------------------------------------------------------------------- /widgets/ModelList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/ModelList.php -------------------------------------------------------------------------------- /widgets/PluginList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/PluginList.php -------------------------------------------------------------------------------- /widgets/VersionList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/VersionList.php -------------------------------------------------------------------------------- /widgets/codelist/partials/_body.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/codelist/partials/_body.php -------------------------------------------------------------------------------- /widgets/codelist/partials/_files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/codelist/partials/_files.php -------------------------------------------------------------------------------- /widgets/codelist/partials/_items.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/codelist/partials/_items.php -------------------------------------------------------------------------------- /widgets/codelist/partials/_move_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/codelist/partials/_move_form.php -------------------------------------------------------------------------------- /widgets/codelist/partials/_new_dir_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/codelist/partials/_new_dir_form.php -------------------------------------------------------------------------------- /widgets/codelist/partials/_rename_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/codelist/partials/_rename_form.php -------------------------------------------------------------------------------- /widgets/codelist/partials/_toolbar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/codelist/partials/_toolbar.php -------------------------------------------------------------------------------- /widgets/codelist/partials/_widget-contents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/codelist/partials/_widget-contents.php -------------------------------------------------------------------------------- /widgets/controllerlist/partials/_body.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/controllerlist/partials/_body.php -------------------------------------------------------------------------------- /widgets/controllerlist/partials/_controller-list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/controllerlist/partials/_controller-list.php -------------------------------------------------------------------------------- /widgets/controllerlist/partials/_items.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/controllerlist/partials/_items.php -------------------------------------------------------------------------------- /widgets/controllerlist/partials/_toolbar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/controllerlist/partials/_toolbar.php -------------------------------------------------------------------------------- /widgets/controllerlist/partials/_widget-contents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/controllerlist/partials/_widget-contents.php -------------------------------------------------------------------------------- /widgets/databasetablelist/partials/_body.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/databasetablelist/partials/_body.php -------------------------------------------------------------------------------- /widgets/databasetablelist/partials/_items.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/databasetablelist/partials/_items.php -------------------------------------------------------------------------------- /widgets/databasetablelist/partials/_table-list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/databasetablelist/partials/_table-list.php -------------------------------------------------------------------------------- /widgets/databasetablelist/partials/_toolbar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/databasetablelist/partials/_toolbar.php -------------------------------------------------------------------------------- /widgets/databasetablelist/partials/_widget-contents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/databasetablelist/partials/_widget-contents.php -------------------------------------------------------------------------------- /widgets/defaultbehaviordesigntimeprovider/partials/_behavior-form-controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/defaultbehaviordesigntimeprovider/partials/_behavior-form-controller.php -------------------------------------------------------------------------------- /widgets/defaultbehaviordesigntimeprovider/partials/_behavior-import-export-controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/defaultbehaviordesigntimeprovider/partials/_behavior-import-export-controller.php -------------------------------------------------------------------------------- /widgets/defaultbehaviordesigntimeprovider/partials/_behavior-list-controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/defaultbehaviordesigntimeprovider/partials/_behavior-list-controller.php -------------------------------------------------------------------------------- /widgets/defaultbehaviordesigntimeprovider/partials/_behavior-unknown.php: -------------------------------------------------------------------------------- 1 | Unknown behavior -------------------------------------------------------------------------------- /widgets/defaultblueprintdesigntimeprovider/partials/_blueprint-entry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/defaultblueprintdesigntimeprovider/partials/_blueprint-entry.php -------------------------------------------------------------------------------- /widgets/defaultblueprintdesigntimeprovider/partials/_blueprint-global.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/defaultblueprintdesigntimeprovider/partials/_blueprint-global.php -------------------------------------------------------------------------------- /widgets/defaultblueprintdesigntimeprovider/partials/_blueprint-unknown.php: -------------------------------------------------------------------------------- 1 | Unknown blueprint -------------------------------------------------------------------------------- /widgets/defaultcontroldesigntimeprovider/partials/_control-balloon-selector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/defaultcontroldesigntimeprovider/partials/_control-balloon-selector.php -------------------------------------------------------------------------------- /widgets/defaultcontroldesigntimeprovider/partials/_control-checkbox.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/defaultcontroldesigntimeprovider/partials/_control-checkbox.php -------------------------------------------------------------------------------- /widgets/defaultcontroldesigntimeprovider/partials/_control-checkboxlist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/defaultcontroldesigntimeprovider/partials/_control-checkboxlist.php -------------------------------------------------------------------------------- /widgets/defaultcontroldesigntimeprovider/partials/_control-codeeditor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/defaultcontroldesigntimeprovider/partials/_control-codeeditor.php -------------------------------------------------------------------------------- /widgets/defaultcontroldesigntimeprovider/partials/_control-colorpicker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/defaultcontroldesigntimeprovider/partials/_control-colorpicker.php -------------------------------------------------------------------------------- /widgets/defaultcontroldesigntimeprovider/partials/_control-datatable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/defaultcontroldesigntimeprovider/partials/_control-datatable.php -------------------------------------------------------------------------------- /widgets/defaultcontroldesigntimeprovider/partials/_control-datepicker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/defaultcontroldesigntimeprovider/partials/_control-datepicker.php -------------------------------------------------------------------------------- /widgets/defaultcontroldesigntimeprovider/partials/_control-dropdown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/defaultcontroldesigntimeprovider/partials/_control-dropdown.php -------------------------------------------------------------------------------- /widgets/defaultcontroldesigntimeprovider/partials/_control-email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/defaultcontroldesigntimeprovider/partials/_control-email.php -------------------------------------------------------------------------------- /widgets/defaultcontroldesigntimeprovider/partials/_control-fileupload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/defaultcontroldesigntimeprovider/partials/_control-fileupload.php -------------------------------------------------------------------------------- /widgets/defaultcontroldesigntimeprovider/partials/_control-hint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/defaultcontroldesigntimeprovider/partials/_control-hint.php -------------------------------------------------------------------------------- /widgets/defaultcontroldesigntimeprovider/partials/_control-markdown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/defaultcontroldesigntimeprovider/partials/_control-markdown.php -------------------------------------------------------------------------------- /widgets/defaultcontroldesigntimeprovider/partials/_control-mediafinder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/defaultcontroldesigntimeprovider/partials/_control-mediafinder.php -------------------------------------------------------------------------------- /widgets/defaultcontroldesigntimeprovider/partials/_control-nestedform-static.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/defaultcontroldesigntimeprovider/partials/_control-nestedform-static.php -------------------------------------------------------------------------------- /widgets/defaultcontroldesigntimeprovider/partials/_control-nestedform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/defaultcontroldesigntimeprovider/partials/_control-nestedform.php -------------------------------------------------------------------------------- /widgets/defaultcontroldesigntimeprovider/partials/_control-number.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/defaultcontroldesigntimeprovider/partials/_control-number.php -------------------------------------------------------------------------------- /widgets/defaultcontroldesigntimeprovider/partials/_control-pagefinder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/defaultcontroldesigntimeprovider/partials/_control-pagefinder.php -------------------------------------------------------------------------------- /widgets/defaultcontroldesigntimeprovider/partials/_control-partial.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/defaultcontroldesigntimeprovider/partials/_control-partial.php -------------------------------------------------------------------------------- /widgets/defaultcontroldesigntimeprovider/partials/_control-password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/defaultcontroldesigntimeprovider/partials/_control-password.php -------------------------------------------------------------------------------- /widgets/defaultcontroldesigntimeprovider/partials/_control-radio.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/defaultcontroldesigntimeprovider/partials/_control-radio.php -------------------------------------------------------------------------------- /widgets/defaultcontroldesigntimeprovider/partials/_control-recordfinder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/defaultcontroldesigntimeprovider/partials/_control-recordfinder.php -------------------------------------------------------------------------------- /widgets/defaultcontroldesigntimeprovider/partials/_control-relation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/defaultcontroldesigntimeprovider/partials/_control-relation.php -------------------------------------------------------------------------------- /widgets/defaultcontroldesigntimeprovider/partials/_control-repeater-static.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/defaultcontroldesigntimeprovider/partials/_control-repeater-static.php -------------------------------------------------------------------------------- /widgets/defaultcontroldesigntimeprovider/partials/_control-repeater.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/defaultcontroldesigntimeprovider/partials/_control-repeater.php -------------------------------------------------------------------------------- /widgets/defaultcontroldesigntimeprovider/partials/_control-richeditor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/defaultcontroldesigntimeprovider/partials/_control-richeditor.php -------------------------------------------------------------------------------- /widgets/defaultcontroldesigntimeprovider/partials/_control-ruler.php: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /widgets/defaultcontroldesigntimeprovider/partials/_control-section.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/defaultcontroldesigntimeprovider/partials/_control-section.php -------------------------------------------------------------------------------- /widgets/defaultcontroldesigntimeprovider/partials/_control-sensitive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/defaultcontroldesigntimeprovider/partials/_control-sensitive.php -------------------------------------------------------------------------------- /widgets/defaultcontroldesigntimeprovider/partials/_control-switch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/defaultcontroldesigntimeprovider/partials/_control-switch.php -------------------------------------------------------------------------------- /widgets/defaultcontroldesigntimeprovider/partials/_control-taglist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/defaultcontroldesigntimeprovider/partials/_control-taglist.php -------------------------------------------------------------------------------- /widgets/defaultcontroldesigntimeprovider/partials/_control-text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/defaultcontroldesigntimeprovider/partials/_control-text.php -------------------------------------------------------------------------------- /widgets/defaultcontroldesigntimeprovider/partials/_control-textarea.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/defaultcontroldesigntimeprovider/partials/_control-textarea.php -------------------------------------------------------------------------------- /widgets/defaultcontroldesigntimeprovider/partials/_control-unknowncontrol.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/defaultcontroldesigntimeprovider/partials/_control-unknowncontrol.php -------------------------------------------------------------------------------- /widgets/languagelist/partials/_body.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/languagelist/partials/_body.php -------------------------------------------------------------------------------- /widgets/languagelist/partials/_items.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/languagelist/partials/_items.php -------------------------------------------------------------------------------- /widgets/languagelist/partials/_language-list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/languagelist/partials/_language-list.php -------------------------------------------------------------------------------- /widgets/languagelist/partials/_toolbar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/languagelist/partials/_toolbar.php -------------------------------------------------------------------------------- /widgets/languagelist/partials/_widget-contents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/languagelist/partials/_widget-contents.php -------------------------------------------------------------------------------- /widgets/modellist/partials/_body.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/modellist/partials/_body.php -------------------------------------------------------------------------------- /widgets/modellist/partials/_items.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/modellist/partials/_items.php -------------------------------------------------------------------------------- /widgets/modellist/partials/_model-list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/modellist/partials/_model-list.php -------------------------------------------------------------------------------- /widgets/modellist/partials/_toolbar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/modellist/partials/_toolbar.php -------------------------------------------------------------------------------- /widgets/modellist/partials/_widget-contents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/modellist/partials/_widget-contents.php -------------------------------------------------------------------------------- /widgets/pluginlist/partials/_body.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/pluginlist/partials/_body.php -------------------------------------------------------------------------------- /widgets/pluginlist/partials/_items.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/pluginlist/partials/_items.php -------------------------------------------------------------------------------- /widgets/pluginlist/partials/_plugin-list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/pluginlist/partials/_plugin-list.php -------------------------------------------------------------------------------- /widgets/pluginlist/partials/_toolbar-buttons.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/pluginlist/partials/_toolbar-buttons.php -------------------------------------------------------------------------------- /widgets/pluginlist/partials/_toolbar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/pluginlist/partials/_toolbar.php -------------------------------------------------------------------------------- /widgets/versionlist/partials/_body.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/versionlist/partials/_body.php -------------------------------------------------------------------------------- /widgets/versionlist/partials/_items.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/versionlist/partials/_items.php -------------------------------------------------------------------------------- /widgets/versionlist/partials/_sort.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/versionlist/partials/_sort.php -------------------------------------------------------------------------------- /widgets/versionlist/partials/_toolbar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/versionlist/partials/_toolbar.php -------------------------------------------------------------------------------- /widgets/versionlist/partials/_version-list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/versionlist/partials/_version-list.php -------------------------------------------------------------------------------- /widgets/versionlist/partials/_widget-contents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainlab/builder-plugin/HEAD/widgets/versionlist/partials/_widget-contents.php --------------------------------------------------------------------------------