Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: madeyourday/contao-rocksolid-custom-elements
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.0.4
Choose a base ref
...
head repository: madeyourday/contao-rocksolid-custom-elements
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Loading
Showing with 4,573 additions and 1,885 deletions.
  1. +1 −1 LICENSE
  2. +8 −4 README.md
  3. +0 −7 assets/.htaccess
  4. +0 −80 assets/css/be_main.css
  5. +0 −345 assets/js/be_main.js
  6. +47 −0 composer.json
  7. +0 −16 config/autoload.ini
  8. +0 −35 config/autoload.php
  9. +0 −32 config/config.php
  10. +0 −22 dca/tl_content.php
  11. +0 −22 dca/tl_module.php
  12. +23 −0 src/ContaoManagerPlugin.php
  13. +2,014 −0 src/CustomElements.php
  14. +192 −0 src/CustomElementsConvert.php
  15. +43 −0 src/DependencyInjection/RockSolidCustomElementsExtension.php
  16. +334 −0 src/Element/CustomElement.php
  17. +76 −0 src/Form/CustomWidget.php
  18. +35 −0 src/Form/CustomWidgetNoInput.php
  19. +0 −700 src/MadeYourDay/Contao/CustomElements.php
  20. +0 −65 src/MadeYourDay/Contao/CustomElementsAjax.php
  21. +0 −119 src/MadeYourDay/Contao/CustomElementsConvert.php
  22. +0 −113 src/MadeYourDay/Contao/Element/CustomElement.php
  23. +0 −68 src/MadeYourDay/Contao/Template/CustomTemplate.php
  24. +0 −45 src/MadeYourDay/Contao/Widget/FileTree.php
  25. +0 −53 src/MadeYourDay/Contao/Widget/ListItemStart.php
  26. +0 −56 src/MadeYourDay/Contao/Widget/ListStart.php
  27. +0 −45 src/MadeYourDay/Contao/Widget/PageTree.php
  28. +44 −0 src/Migration/BasicEntitiesMigration.php
  29. +29 −0 src/Model/DummyModel.php
  30. +7 −0 src/Resources/config/services.yaml
  31. +35 −0 src/Resources/contao/config/config.php
  32. +26 −0 src/Resources/contao/dca/tl_content.php
  33. +26 −0 src/Resources/contao/dca/tl_form_field.php
  34. +26 −0 src/Resources/contao/dca/tl_module.php
  35. +22 −0 src/Resources/contao/dca/tl_templates.php
  36. +16 −0 src/Resources/contao/languages/de/default.php
  37. +2 −2 { → src/Resources/contao}/languages/de/rocksolid_custom_elements.php
  38. +15 −0 src/Resources/contao/languages/de/tl_content.php
  39. +15 −0 src/Resources/contao/languages/de/tl_form_field.php
  40. 0 { → src/Resources/contao}/languages/de/tl_maintenance.php
  41. +15 −0 src/Resources/contao/languages/de/tl_module.php
  42. +16 −0 src/Resources/contao/languages/en/default.php
  43. +2 −2 { → src/Resources/contao}/languages/en/rocksolid_custom_elements.php
  44. +15 −0 src/Resources/contao/languages/en/tl_content.php
  45. +15 −0 src/Resources/contao/languages/en/tl_form_field.php
  46. 0 { → src/Resources/contao}/languages/en/tl_maintenance.php
  47. +15 −0 src/Resources/contao/languages/en/tl_module.php
  48. +36 −0 src/Resources/contao/templates/be_rsce_convert.html5
  49. +2 −0 src/Resources/contao/templates/be_rsce_data.html5
  50. +5 −0 src/Resources/contao/templates/be_rsce_group.html5
  51. +1 −1 { → src/Resources/contao}/templates/be_rsce_list.html5
  52. +2 −0 src/Resources/contao/templates/form_rsce_plain.html5
  53. +83 −0 src/Resources/public/css/be_main.css
  54. BIN {assets → src/Resources/public}/img/logo.png
  55. +922 −0 src/Resources/public/js/be_main.js
  56. +29 −0 src/RockSolidCustomElementsBundle.php
  57. +117 −0 src/Template/CustomTemplate.php
  58. +9 −5 src/{MadeYourDay/Contao/Widget/Hidden.php → Widget/Data.php}
  59. +83 −0 src/Widget/GroupStart.php
  60. +60 −0 src/Widget/ListItemStart.php
  61. +5 −3 src/{MadeYourDay/Contao → }/Widget/ListItemStop.php
  62. +98 −0 src/Widget/ListStart.php
  63. +7 −5 src/{MadeYourDay/Contao → }/Widget/ListStop.php
  64. +0 −39 templates/be_rsce_convert.html5
  65. 0 templates/be_rsce_hidden.html5
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2012-2013 MADE/YOUR/DAY
Copyright (c) 2012-2016 MADE/YOUR/DAY

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
12 changes: 8 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
# RockSolid Custom Elements Contao Extension

Install to */system/modules/rocksolid-custom-elements/*
## Installation

More information:
```sh
$ composer require madeyourday/contao-rocksolid-custom-elements
```

* English: http://rocksolidthemes.com/en/contao/plugins/custom-content-elements
* German: http://rocksolidthemes.com/de/contao/plugins/custom-content-elements
## Documentation:

* English: https://rocksolidthemes.com/en/contao/plugins/custom-content-elements
* German: https://rocksolidthemes.com/de/contao/plugins/custom-content-elements
7 changes: 0 additions & 7 deletions assets/.htaccess

This file was deleted.

80 changes: 0 additions & 80 deletions assets/css/be_main.css

This file was deleted.

Loading