diff --git a/composer.json b/composer.json index 6dd974e56..12388765e 100644 --- a/composer.json +++ b/composer.json @@ -57,7 +57,6 @@ "drupal/config_update": "^1.7 || ^2.0", "drupal/content_lock": "^2.1", "drupal/crop": "^2.2", - "drupal/default_content": "^1.0-alpha7||^2.0@ALPHA", "drupal/diff": "1.7", "drupal/dropzonejs": "^2.8", "drupal/empty_fields": "^1.0-alpha1", diff --git a/docs/README.md b/docs/README.md index 2c135cb83..45d2fae69 100644 --- a/docs/README.md +++ b/docs/README.md @@ -50,9 +50,6 @@ Public License to further enhance Thunder. * **Mobile Friendly**: With the Thunder installation, you get a responsive theme for frontend and backend. When writing an article, you can check how your text will look on different smartphones and tablets with the help of the device preview. -* **Demo Content and Guided Tour**: We added demo content and a guided tour to make it easier for newcomers to - understand how Thunder works. Step by step, we explain how to add an article, how to edit an article, or how to add - and sort channels. * **Flexible System**: With Thunder, you get a system with a very high scalability. It's extendable with more than 2500 modules to fit every need. Plus, it's themeable. * **Big Drupal community**: Benefit from an active community with more than 100.000 user actively contributing and more diff --git a/docs/developer-guide/migration/migrate-7-8.md b/docs/developer-guide/migration/migrate-7-8.md index 53026603b..e7012a188 100644 --- a/docs/developer-guide/migration/migrate-7-8.md +++ b/docs/developer-guide/migration/migrate-7-8.md @@ -31,9 +31,15 @@ drush updb You should at least see the Thunder XXXX schema update. If not, double check that the correct version of Thunder is installed, and that `drush updb` did not throw any errors. -Before you start with the code and database update please disable the jQuery UI Draggable module or require it on your own. +In this release, we have removed a couple of modules from the Thunder distribution. If you use one or more of these +modules you have to require them manually. The following modules have been removed: + +- [jQuery UI Draggable](https://www.drupal.org/project/jquery_ui_draggable) +- [Default content](https://www.drupal.org/project/default_content) + +To require these modules, run the following commands: ```bash composer require drupal/jquery_ui_draggable +composer require drupal/default_content ``` - diff --git a/modules/thunder_demo/README.md b/modules/thunder_demo/README.md deleted file mode 100644 index 2c5c8586a..000000000 --- a/modules/thunder_demo/README.md +++ /dev/null @@ -1,6 +0,0 @@ -# Thunder demo - -This module is just for demonstration purpose. It provides some demo content and introduces -a [tour](https://www.drupal.org/documentation/modules/tour). - -The tour guides you through Thunder and explains it's features. diff --git a/modules/thunder_demo/config/install/tour.tour.content-add.yml b/modules/thunder_demo/config/install/tour.tour.content-add.yml deleted file mode 100644 index 5dbf58846..000000000 --- a/modules/thunder_demo/config/install/tour.tour.content-add.yml +++ /dev/null @@ -1,84 +0,0 @@ -langcode: en -status: true -dependencies: - module: - - thunder_demo -id: content-add -label: 'Add new content' -module: thunder_demo -routes: - - - route_name: node.add - route_params: - node_type: article -tips: - article: - id: article - plugin: text - label: 'Article creation page' - body: '

On this step we''ll explain you the different parts of an article.

Let''s start!

' - weight: 1 - article-channel: - id: article-channel - plugin: text - label: 'Channel selection' - body: '

Channels reflect the site structure. Administrators can easily add, remove, modify and organize them using a simple UI.

Choose the one in which your article will be published.

' - weight: 2 - selector: '#edit-field-channel' - article-title: - id: article-title - plugin: text - label: Title - body: '

Enter the title of your article, which is used as main heading of your article.

' - weight: 3 - selector: '#edit-title-wrapper' - article-seo-title: - id: article-seo-title - plugin: text - label: Seo-Title - body: '

Enter the same or a different title, which is optimized for search engines.

It will be used to generate the url and as browser title.

' - weight: 4 - selector: '#edit-field-seo-title-wrapper' - article-teaser-media: - id: article-teaser-media - plugin: text - label: 'Teaser media' - body: '

Enter the information that will be used for teasers (on the front page for example). First upload or select a teaser image by clicking on the "Select entities" button.

Take your time! I am not going anywhere. ;)

' - weight: 5 - selector: '#edit-field-teaser-media' - article-teaser-text: - id: article-teaser-text - plugin: text - label: 'Teaser text' - body: '

Type the text which will appear at the front page and which will be used for Facebook and Google-Snippets, too.

' - weight: 6 - selector: '#edit-field-teaser-text-wrapper' - article-paragraphs: - id: article-paragraphs - plugin: text - label: Paragraphs - body: '

The paragraphs section represents the main article content. Here you can add your text and various types of media. It is easier to explain this part on an existing article, which we''ll do on our next stop.

But let me show you few more neat things first.

' - weight: 7 - selector: '.paragraphs-container .fieldset-legend' - article-advanced: - id: article-advanced - plugin: text - label: Advanced - body: '

They let you configure advanced settings related to the article. You will use this part when dealing with SEO, article promotion, scheduling, etc.

Click on the section titles to expand them and see what they offer.

' - weight: 8 - position: left - selector: '#edit-advanced' - article-actions: - id: article-actions - plugin: text - label: 'Main actions' - body: '

You can preview, save, publish and unpublish the article here.

Try clicking the down arrow in the "Save and continue" button to reveal the hidden options.

' - weight: 9 - position: top-start - selector: '#edit-actions' - article-last: - id: article-last - plugin: text - label: 'What is next?' - body: '

You have just learned how to create an article. What do you want to do next?

Ah, right! I promised you that I''ll teach you more about paragraphs.' - weight: 10 diff --git a/modules/thunder_demo/config/install/tour.tour.content-list.yml b/modules/thunder_demo/config/install/tour.tour.content-list.yml deleted file mode 100644 index 8ab825dff..000000000 --- a/modules/thunder_demo/config/install/tour.tour.content-list.yml +++ /dev/null @@ -1,64 +0,0 @@ -langcode: en -status: true -dependencies: - module: - - thunder_demo -id: content-list -label: 'Content listing' -module: thunder_demo -routes: - - - route_name: view.content.page_1 - - - route_name: system.admin_content -tips: - first: - id: first - plugin: text - label: 'Content listing page' - body: '

We are on the content lising page. It allows you to browse your content, see some details, edit and execute actions on it.

Let''s go step by step.

' - weight: 1 - filters: - id: filters - plugin: text - label: Filters - body: '

Filters can be used to search the content based on author, type, title and other parameters. Hit "Filter" when you entered the desired values.

' - weight: 2 - selector: '#views-exposed-form-content-page-1' - actions: - id: actions - plugin: text - label: Actions - body: '

They let you execute actions on multiple content items at once. Check which actions are offered in the drop-down.

' - weight: 3 - selector: '#edit-node-bulk-form--2' - actions-checkbox: - id: actions-checkbox - plugin: text - label: Actions - body: '

In order to define which items to execute an action on use the checkboxes. The one in the header row will select all items on a page and the ones in the rows below will select corresponding individual items.

' - weight: 4 - position: right - selector: '.views-table .select-all' - sort: - id: sort - plugin: text - label: Sorting - body: '

Click on the links in the header row to sort the list. Arrow next to the active sort link indicates the sort direction (ascending or descending).

' - weight: 5 - position: top - selector: '.views-table #view-changed-table-column' - operations: - id: operations - plugin: text - label: 'Content operations' - body: '

Use content operations dropbutton to edit or delete a given content item.

' - weight: 6 - position: left - selector: '.views-table tr:nth-child(2) .views-field-operations' - last: - id: last - plugin: text - label: 'That is it for now' - body: '

Nice! Let us just mention that it is very easy to modify most of things on this page (as it is the case with any listing in Thunder). A very powerful module called "Views" can be used to do that. Details about it are out of scope for this tour. For now just keep in mind that you will be able to tweak it if you need to.

This is it for now. I hope that you enjoyed our company. Now you can navigate back to the front page and start exploring on your own.' - weight: 7 diff --git a/modules/thunder_demo/config/install/tour.tour.content-paragraphs.yml b/modules/thunder_demo/config/install/tour.tour.content-paragraphs.yml deleted file mode 100644 index 46f3d53a0..000000000 --- a/modules/thunder_demo/config/install/tour.tour.content-paragraphs.yml +++ /dev/null @@ -1,83 +0,0 @@ -langcode: en -status: true -dependencies: - module: - - thunder_demo -id: content-paragraphs -label: 'Introduction to paragraphs' -module: thunder_demo -routes: - - - route_name: entity.node.edit_form - route_params: - node: '3' -tips: - article-paragraphs: - id: article-paragraphs - plugin: text - label: Paragraphs - body: '

The paragraphs section represents the main article content. Here you can add your text and various types of media.

' - weight: 1 - selector: '.paragraphs-container .fieldset-legend' - article-paragraphs-actions: - id: article-paragraphs-actions - plugin: text - label: 'Paragraph actions' - body: '

Each paragraph comes with it''s actions, which let you edit or remove it.

' - weight: 2 - position: left - selector: '#field-paragraphs-0-edit--2' - article-paragraphs-text: - id: article-paragraphs-text - plugin: text - label: Text - body: '

This is a simple text paragraph with a WYSIWYG editor.

' - weight: 3 - position: left - selector: '#edit-field-paragraphs-0-top' - article-paragraphs-video: - id: article-paragraphs-video - plugin: text - label: Video - body: '

This is a video. You can select one from the library or upload a new one.

' - weight: 4 - position: left - selector: '#edit-field-paragraphs-1-top' - article-paragraphs-twitter: - id: article-paragraphs-twitter - plugin: text - label: Twitter - body: '

In order to display an Twitter card just paste in the url of the post and Thunder will do the rest for you. How smart!

' - weight: 5 - position: left - selector: '#edit-field-paragraphs-3-top' - article-paragraphs-gallery: - id: article-paragraphs-gallery - plugin: text - label: Gallery - body: '

This is a gallery. By using the "Edit" button you''re able to add or delete images and change their order.

' - weight: 6 - position: left - selector: '#edit-field-paragraphs-8-top' - article-paragraphs-more: - id: article-paragraphs-more - plugin: text - label: 'Add paragraphs in between' - body: '

Use this kind of button to add another paragraph at the place you like!

' - weight: 7 - position: top - selector: '#field-paragraphs-values .paragraphs-features__add-in-between__button' - article-paragraphs-drag: - id: article-paragraphs-drag - plugin: text - label: 'Reorder paragprahs' - body: '

Activate the sort mode to easily reorder your paragraphs.

' - weight: 8 - position: right - selector: '#field-paragraphs-values .tabledrag-toggle-checkbox' - article-paragraphs-last: - id: article-paragraphs-last - plugin: text - label: 'What a tool!' - body: '

Amazed? You should be! Paragraphs are a great tool that lets you structure your content the way you need it to be. It is specially useful if you''re planning to publish the content to various destinations such as smartphones, TVs and tablets.

Now we''ve learned how to create content. It is time to see where we can manage it.

' - weight: 9 diff --git a/modules/thunder_demo/config/install/tour.tour.homepage.yml b/modules/thunder_demo/config/install/tour.tour.homepage.yml deleted file mode 100644 index fbcfe49ad..000000000 --- a/modules/thunder_demo/config/install/tour.tour.homepage.yml +++ /dev/null @@ -1,54 +0,0 @@ -langcode: en -status: true -dependencies: - module: - - thunder_demo -id: homepage -label: Homepage -module: thunder_demo -routes: - - - route_name: entity.user.canonical - route_params: - user: '1' -tips: - homepage: - id: homepage - plugin: text - label: 'Welcome and thank you for trying Thunder!' - body: 'This tour will lead you through its most interesting features. Let''s explore the basic structure of a site first.' - weight: 1 - main_content: - id: main_content - plugin: text - label: 'Main content region' - body: 'Meat and bones of a Thunder site. Depending on the page you are on you''ll find article content, list of articles in a channel, media assets and many more here.' - weight: 2 - position: left - selector: '#content' - main_menu: - id: main_menu - plugin: text - label: 'Main menu' - body: '

Main site navigation. You can currently see the links to the two channels that we pre-created for you. All menus in Thunder are easy to modify so they can suit your needs.

Hint: try hovering the menu and look for the pencil icon.' - weight: 3 - selector: .menu--main - admin_menu: - id: admin_menu - plugin: text - label: 'Admin menu' - body: '

It lets you do the editorial and administrative tasks. Hover over the "Content" link and see what happens. Don''t worry I''ll wait so you can take your time.

Neat, ha?

' - weight: 4 - selector: .toolbar-icon-system-admin-content - restart_tour: - id: restart_tour - plugin: text - label: 'Need some more time to explore on your own?' - body: 'You can stop the tour at any time and re-start it by pressing the tour button in the top-right corner.' - weight: 5 - next_step: - id: next_step - plugin: text - label: 'Are you ready?' - body: '

We are! Let''s continue with the basic content creation.

' - weight: 6 diff --git a/modules/thunder_demo/content/crop/35877b5f-300a-4456-9e8c-760a4c1c37b5.yml b/modules/thunder_demo/content/crop/35877b5f-300a-4456-9e8c-760a4c1c37b5.yml deleted file mode 100644 index d177e3b3a..000000000 --- a/modules/thunder_demo/content/crop/35877b5f-300a-4456-9e8c-760a4c1c37b5.yml +++ /dev/null @@ -1,31 +0,0 @@ -_meta: - version: '1.0' - entity_type: crop - uuid: 35877b5f-300a-4456-9e8c-760a4c1c37b5 - bundle: focal_point - default_langcode: en -default: - entity_id: - - - value: 2 - entity_type: - - - value: file - uri: - - - value: 'public://2020-09/welte_philipp_final_2.jpg' - x: - - - value: 1060 - 'y': - - - value: 1189 - revision_timestamp: - - - value: 1600157271 - revision_uid: - - - target_id: 1 - revision_translation_affected: - - - value: true diff --git a/modules/thunder_demo/content/crop/73fa0ae6-47b2-4719-b2fd-09dabca808d0.yml b/modules/thunder_demo/content/crop/73fa0ae6-47b2-4719-b2fd-09dabca808d0.yml deleted file mode 100644 index 1ceccfc72..000000000 --- a/modules/thunder_demo/content/crop/73fa0ae6-47b2-4719-b2fd-09dabca808d0.yml +++ /dev/null @@ -1,31 +0,0 @@ -_meta: - version: '1.0' - entity_type: crop - uuid: 73fa0ae6-47b2-4719-b2fd-09dabca808d0 - bundle: focal_point - default_langcode: en -default: - entity_id: - - - value: 1 - entity_type: - - - value: file - uri: - - - value: 'public://2020-09/welte_ingo_v1.jpg' - x: - - - value: 728 - 'y': - - - value: 294 - revision_timestamp: - - - value: 1600152511 - revision_uid: - - - target_id: 1 - revision_translation_affected: - - - value: true diff --git a/modules/thunder_demo/content/file/0044429b-3571-4ccf-b6a1-4e7d2c5c035a.yml b/modules/thunder_demo/content/file/0044429b-3571-4ccf-b6a1-4e7d2c5c035a.yml deleted file mode 100644 index 4bd242fc8..000000000 --- a/modules/thunder_demo/content/file/0044429b-3571-4ccf-b6a1-4e7d2c5c035a.yml +++ /dev/null @@ -1,27 +0,0 @@ -_meta: - version: '1.0' - entity_type: file - uuid: 0044429b-3571-4ccf-b6a1-4e7d2c5c035a - default_langcode: en -default: - uid: - - - target_id: 1 - filename: - - - value: thunderday_burda_2017011490.jpg - uri: - - - value: 'public://2020-09/thunderday_burda_2017011490.jpg' - filemime: - - - value: image/jpeg - filesize: - - - value: 440839 - status: - - - value: true - created: - - - value: 1600160742 diff --git a/modules/thunder_demo/content/file/038a612e-d318-4959-b23b-ee2978cd1f6c.yml b/modules/thunder_demo/content/file/038a612e-d318-4959-b23b-ee2978cd1f6c.yml deleted file mode 100644 index 477ab7efe..000000000 --- a/modules/thunder_demo/content/file/038a612e-d318-4959-b23b-ee2978cd1f6c.yml +++ /dev/null @@ -1,27 +0,0 @@ -_meta: - version: '1.0' - entity_type: file - uuid: 038a612e-d318-4959-b23b-ee2978cd1f6c - default_langcode: en -default: - uid: - - - target_id: 1 - filename: - - - value: impressionen_kaminzimmer_3.jpg - uri: - - - value: 'public://2020-09/impressionen_kaminzimmer_3.jpg' - filemime: - - - value: image/jpeg - filesize: - - - value: 10076427 - status: - - - value: true - created: - - - value: 1600162381 diff --git a/modules/thunder_demo/content/file/2387f16f-68c8-4297-a998-954c7ef66dc0.yml b/modules/thunder_demo/content/file/2387f16f-68c8-4297-a998-954c7ef66dc0.yml deleted file mode 100644 index 3c2d4e33f..000000000 --- a/modules/thunder_demo/content/file/2387f16f-68c8-4297-a998-954c7ef66dc0.yml +++ /dev/null @@ -1,27 +0,0 @@ -_meta: - version: '1.0' - entity_type: file - uuid: 2387f16f-68c8-4297-a998-954c7ef66dc0 - default_langcode: en -default: - uid: - - - target_id: 1 - filename: - - - value: thunderday_burda_2017011817.jpg - uri: - - - value: 'public://2020-09/thunderday_burda_2017011817.jpg' - filemime: - - - value: image/jpeg - filesize: - - - value: 965454 - status: - - - value: true - created: - - - value: 1600160861 diff --git a/modules/thunder_demo/content/file/4533f02b-f720-46cb-acbb-84255b302ef1.yml b/modules/thunder_demo/content/file/4533f02b-f720-46cb-acbb-84255b302ef1.yml deleted file mode 100644 index 06fae1897..000000000 --- a/modules/thunder_demo/content/file/4533f02b-f720-46cb-acbb-84255b302ef1.yml +++ /dev/null @@ -1,27 +0,0 @@ -_meta: - version: '1.0' - entity_type: file - uuid: 4533f02b-f720-46cb-acbb-84255b302ef1 - default_langcode: en -default: - uid: - - - target_id: 1 - filename: - - - value: thunderday_burda_2017011555.jpg - uri: - - - value: 'public://2020-09/thunderday_burda_2017011555.jpg' - filemime: - - - value: image/jpeg - filesize: - - - value: 822667 - status: - - - value: true - created: - - - value: 1600160861 diff --git a/modules/thunder_demo/content/file/4fc96a05-40d7-4651-9c87-b06f2fcaf95a.yml b/modules/thunder_demo/content/file/4fc96a05-40d7-4651-9c87-b06f2fcaf95a.yml deleted file mode 100644 index 701f99d05..000000000 --- a/modules/thunder_demo/content/file/4fc96a05-40d7-4651-9c87-b06f2fcaf95a.yml +++ /dev/null @@ -1,27 +0,0 @@ -_meta: - version: '1.0' - entity_type: file - uuid: 4fc96a05-40d7-4651-9c87-b06f2fcaf95a - default_langcode: en -default: - uid: - - - target_id: 1 - filename: - - - value: leeraufbau_festsaal.jpg - uri: - - - value: 'public://2020-09/leeraufbau_festsaal.jpg' - filemime: - - - value: image/jpeg - filesize: - - - value: 5662638 - status: - - - value: true - created: - - - value: 1600162381 diff --git a/modules/thunder_demo/content/file/50b7f62a-6c43-4ae8-b1fc-2675520fdea7.yml b/modules/thunder_demo/content/file/50b7f62a-6c43-4ae8-b1fc-2675520fdea7.yml deleted file mode 100644 index a00dc7d9c..000000000 --- a/modules/thunder_demo/content/file/50b7f62a-6c43-4ae8-b1fc-2675520fdea7.yml +++ /dev/null @@ -1,27 +0,0 @@ -_meta: - version: '1.0' - entity_type: file - uuid: 50b7f62a-6c43-4ae8-b1fc-2675520fdea7 - default_langcode: en -default: - uid: - - - target_id: 1 - filename: - - - value: map_ctis.png - uri: - - - value: 'public://2020-09/map_ctis.png' - filemime: - - - value: image/png - filesize: - - - value: 434830 - status: - - - value: true - created: - - - value: 1600160222 diff --git a/modules/thunder_demo/content/file/587ac846-1c3a-4345-8995-122683d5d2a9.yml b/modules/thunder_demo/content/file/587ac846-1c3a-4345-8995-122683d5d2a9.yml deleted file mode 100644 index ba22da8e9..000000000 --- a/modules/thunder_demo/content/file/587ac846-1c3a-4345-8995-122683d5d2a9.yml +++ /dev/null @@ -1,27 +0,0 @@ -_meta: - version: '1.0' - entity_type: file - uuid: 587ac846-1c3a-4345-8995-122683d5d2a9 - default_langcode: en -default: - uid: - - - target_id: 1 - filename: - - - value: thunderday_burda_2017011616.jpg - uri: - - - value: 'public://2020-09/thunderday_burda_2017011616.jpg' - filemime: - - - value: image/jpeg - filesize: - - - value: 252641 - status: - - - value: true - created: - - - value: 1600160861 diff --git a/modules/thunder_demo/content/file/5abbb82e-76f3-405d-b8e3-e2d890197aba.yml b/modules/thunder_demo/content/file/5abbb82e-76f3-405d-b8e3-e2d890197aba.yml deleted file mode 100644 index 6674aa883..000000000 --- a/modules/thunder_demo/content/file/5abbb82e-76f3-405d-b8e3-e2d890197aba.yml +++ /dev/null @@ -1,27 +0,0 @@ -_meta: - version: '1.0' - entity_type: file - uuid: 5abbb82e-76f3-405d-b8e3-e2d890197aba - default_langcode: en -default: - uid: - - - target_id: 1 - filename: - - - value: impressionen_kaminzimmer_4.jpg - uri: - - - value: 'public://2020-09/impressionen_kaminzimmer_4.jpg' - filemime: - - - value: image/jpeg - filesize: - - - value: 5449588 - status: - - - value: true - created: - - - value: 1600162381 diff --git a/modules/thunder_demo/content/file/63c664f3-d403-4509-b90c-b945a69431b5.yml b/modules/thunder_demo/content/file/63c664f3-d403-4509-b90c-b945a69431b5.yml deleted file mode 100644 index da734da04..000000000 --- a/modules/thunder_demo/content/file/63c664f3-d403-4509-b90c-b945a69431b5.yml +++ /dev/null @@ -1,27 +0,0 @@ -_meta: - version: '1.0' - entity_type: file - uuid: 63c664f3-d403-4509-b90c-b945a69431b5 - default_langcode: en -default: - uid: - - - target_id: 1 - filename: - - - value: thunder_dg_2237.jpg - uri: - - - value: 'public://2020-09/thunder_dg_2237.jpg' - filemime: - - - value: image/jpeg - filesize: - - - value: 361958 - status: - - - value: true - created: - - - value: 1600163434 diff --git a/modules/thunder_demo/content/file/7e9e28dd-35a6-48eb-bfdd-5578b250cf8c.yml b/modules/thunder_demo/content/file/7e9e28dd-35a6-48eb-bfdd-5578b250cf8c.yml deleted file mode 100644 index d6d806e5d..000000000 --- a/modules/thunder_demo/content/file/7e9e28dd-35a6-48eb-bfdd-5578b250cf8c.yml +++ /dev/null @@ -1,27 +0,0 @@ -_meta: - version: '1.0' - entity_type: file - uuid: 7e9e28dd-35a6-48eb-bfdd-5578b250cf8c - default_langcode: en -default: - uid: - - - target_id: 1 - filename: - - - value: thunderteam_on_stage.jpg - uri: - - - value: 'public://2020-09/thunderteam_on_stage.jpg' - filemime: - - - value: image/jpeg - filesize: - - - value: 3136403 - status: - - - value: true - created: - - - value: 1600162381 diff --git a/modules/thunder_demo/content/file/82aa86b9-645c-4310-a7b6-9770240663b3.yml b/modules/thunder_demo/content/file/82aa86b9-645c-4310-a7b6-9770240663b3.yml deleted file mode 100644 index 3751eb7e3..000000000 --- a/modules/thunder_demo/content/file/82aa86b9-645c-4310-a7b6-9770240663b3.yml +++ /dev/null @@ -1,27 +0,0 @@ -_meta: - version: '1.0' - entity_type: file - uuid: 82aa86b9-645c-4310-a7b6-9770240663b3 - default_langcode: en -default: - uid: - - - target_id: 1 - filename: - - - value: thunderday_burda_2017011666.jpg - uri: - - - value: 'public://2020-09/thunderday_burda_2017011666.jpg' - filemime: - - - value: image/jpeg - filesize: - - - value: 375957 - status: - - - value: true - created: - - - value: 1600160861 diff --git a/modules/thunder_demo/content/file/87530ce0-8006-4773-9ec2-98bb85c21d30.yml b/modules/thunder_demo/content/file/87530ce0-8006-4773-9ec2-98bb85c21d30.yml deleted file mode 100644 index 4986b1c8a..000000000 --- a/modules/thunder_demo/content/file/87530ce0-8006-4773-9ec2-98bb85c21d30.yml +++ /dev/null @@ -1,27 +0,0 @@ -_meta: - version: '1.0' - entity_type: file - uuid: 87530ce0-8006-4773-9ec2-98bb85c21d30 - default_langcode: en -default: - uid: - - - target_id: 1 - filename: - - - value: cti-badge.jpg - uri: - - - value: 'public://2020-09/cti-badge.jpg' - filemime: - - - value: image/jpeg - filesize: - - - value: 38551 - status: - - - value: true - created: - - - value: 1600160312 diff --git a/modules/thunder_demo/content/file/911771d1-f8d5-4d62-ba77-e7040682c07e.yml b/modules/thunder_demo/content/file/911771d1-f8d5-4d62-ba77-e7040682c07e.yml deleted file mode 100644 index cea927cc5..000000000 --- a/modules/thunder_demo/content/file/911771d1-f8d5-4d62-ba77-e7040682c07e.yml +++ /dev/null @@ -1,27 +0,0 @@ -_meta: - version: '1.0' - entity_type: file - uuid: 911771d1-f8d5-4d62-ba77-e7040682c07e - default_langcode: en -default: - uid: - - - target_id: 1 - filename: - - - value: thunderday_burda_2017011419.jpg - uri: - - - value: 'public://2020-09/thunderday_burda_2017011419.jpg' - filemime: - - - value: image/jpeg - filesize: - - - value: 217503 - status: - - - value: true - created: - - - value: 1600160861 diff --git a/modules/thunder_demo/content/file/94a2a059-a253-45a1-83e0-79fcb32133c0.yml b/modules/thunder_demo/content/file/94a2a059-a253-45a1-83e0-79fcb32133c0.yml deleted file mode 100644 index 6c9995a90..000000000 --- a/modules/thunder_demo/content/file/94a2a059-a253-45a1-83e0-79fcb32133c0.yml +++ /dev/null @@ -1,27 +0,0 @@ -_meta: - version: '1.0' - entity_type: file - uuid: 94a2a059-a253-45a1-83e0-79fcb32133c0 - default_langcode: en -default: - uid: - - - target_id: 1 - filename: - - - value: welte_philipp_final_2.jpg - uri: - - - value: 'public://2020-09/welte_philipp_final_2.jpg' - filemime: - - - value: image/jpeg - filesize: - - - value: 961396 - status: - - - value: true - created: - - - value: 1600157248 diff --git a/modules/thunder_demo/content/file/9a9a6603-6dba-4f33-b467-fd81bcc6a3a4.yml b/modules/thunder_demo/content/file/9a9a6603-6dba-4f33-b467-fd81bcc6a3a4.yml deleted file mode 100644 index 2a1565cc7..000000000 --- a/modules/thunder_demo/content/file/9a9a6603-6dba-4f33-b467-fd81bcc6a3a4.yml +++ /dev/null @@ -1,27 +0,0 @@ -_meta: - version: '1.0' - entity_type: file - uuid: 9a9a6603-6dba-4f33-b467-fd81bcc6a3a4 - default_langcode: en -default: - uid: - - - target_id: 1 - filename: - - - value: impressionen_kaminzimmer_2.jpg - uri: - - - value: 'public://2020-09/impressionen_kaminzimmer_2.jpg' - filemime: - - - value: image/jpeg - filesize: - - - value: 4338476 - status: - - - value: true - created: - - - value: 1600162381 diff --git a/modules/thunder_demo/content/file/b08692d3-765c-4422-b001-0aee9b7ea103.yml b/modules/thunder_demo/content/file/b08692d3-765c-4422-b001-0aee9b7ea103.yml deleted file mode 100644 index b5a3ea2f3..000000000 --- a/modules/thunder_demo/content/file/b08692d3-765c-4422-b001-0aee9b7ea103.yml +++ /dev/null @@ -1,27 +0,0 @@ -_meta: - version: '1.0' - entity_type: file - uuid: b08692d3-765c-4422-b001-0aee9b7ea103 - default_langcode: en -default: - uid: - - - target_id: 1 - filename: - - - value: thunderday_burda_2017011438.jpg - uri: - - - value: 'public://2020-09/thunderday_burda_2017011438.jpg' - filemime: - - - value: image/jpeg - filesize: - - - value: 806695 - status: - - - value: true - created: - - - value: 1600160861 diff --git a/modules/thunder_demo/content/file/c5a9a50a-20bc-48ee-89ff-6465c194f2be.yml b/modules/thunder_demo/content/file/c5a9a50a-20bc-48ee-89ff-6465c194f2be.yml deleted file mode 100644 index bfbd2aef5..000000000 --- a/modules/thunder_demo/content/file/c5a9a50a-20bc-48ee-89ff-6465c194f2be.yml +++ /dev/null @@ -1,27 +0,0 @@ -_meta: - version: '1.0' - entity_type: file - uuid: c5a9a50a-20bc-48ee-89ff-6465c194f2be - default_langcode: en -default: - uid: - - - target_id: 1 - filename: - - - value: welte_ingo_v1.jpg - uri: - - - value: 'public://2020-09/welte_ingo_v1_0.jpg' - filemime: - - - value: image/jpeg - filesize: - - - value: 126045 - status: - - - value: true - created: - - - value: 1600152444 diff --git a/modules/thunder_demo/content/file/cti-badge.jpg b/modules/thunder_demo/content/file/cti-badge.jpg deleted file mode 100644 index dd80ad992..000000000 Binary files a/modules/thunder_demo/content/file/cti-badge.jpg and /dev/null differ diff --git a/modules/thunder_demo/content/file/d2fd4235-9c0d-46bf-a649-e812be18cfbb.yml b/modules/thunder_demo/content/file/d2fd4235-9c0d-46bf-a649-e812be18cfbb.yml deleted file mode 100644 index da5b9adb5..000000000 --- a/modules/thunder_demo/content/file/d2fd4235-9c0d-46bf-a649-e812be18cfbb.yml +++ /dev/null @@ -1,27 +0,0 @@ -_meta: - version: '1.0' - entity_type: file - uuid: d2fd4235-9c0d-46bf-a649-e812be18cfbb - default_langcode: en -default: - uid: - - - target_id: 1 - filename: - - - value: impressionen_kaminzimmer.jpg - uri: - - - value: 'public://2020-09/impressionen_kaminzimmer.jpg' - filemime: - - - value: image/jpeg - filesize: - - - value: 6101518 - status: - - - value: true - created: - - - value: 1600162084 diff --git a/modules/thunder_demo/content/file/de73fbb6-9126-4eee-844f-cd4622653f83.yml b/modules/thunder_demo/content/file/de73fbb6-9126-4eee-844f-cd4622653f83.yml deleted file mode 100644 index 18c82170e..000000000 --- a/modules/thunder_demo/content/file/de73fbb6-9126-4eee-844f-cd4622653f83.yml +++ /dev/null @@ -1,27 +0,0 @@ -_meta: - version: '1.0' - entity_type: file - uuid: de73fbb6-9126-4eee-844f-cd4622653f83 - default_langcode: en -default: - uid: - - - target_id: 1 - filename: - - - value: thunderday_burda_2017011407.jpg - uri: - - - value: 'public://2020-09/thunderday_burda_2017011407.jpg' - filemime: - - - value: image/jpeg - filesize: - - - value: 1657167 - status: - - - value: true - created: - - - value: 1600160861 diff --git a/modules/thunder_demo/content/file/impressionen_kaminzimmer.jpg b/modules/thunder_demo/content/file/impressionen_kaminzimmer.jpg deleted file mode 100644 index c456cb2b5..000000000 Binary files a/modules/thunder_demo/content/file/impressionen_kaminzimmer.jpg and /dev/null differ diff --git a/modules/thunder_demo/content/file/impressionen_kaminzimmer_2.jpg b/modules/thunder_demo/content/file/impressionen_kaminzimmer_2.jpg deleted file mode 100644 index 6507687a8..000000000 Binary files a/modules/thunder_demo/content/file/impressionen_kaminzimmer_2.jpg and /dev/null differ diff --git a/modules/thunder_demo/content/file/impressionen_kaminzimmer_3.jpg b/modules/thunder_demo/content/file/impressionen_kaminzimmer_3.jpg deleted file mode 100644 index c3dd72b56..000000000 Binary files a/modules/thunder_demo/content/file/impressionen_kaminzimmer_3.jpg and /dev/null differ diff --git a/modules/thunder_demo/content/file/impressionen_kaminzimmer_4.jpg b/modules/thunder_demo/content/file/impressionen_kaminzimmer_4.jpg deleted file mode 100644 index 23884bf50..000000000 Binary files a/modules/thunder_demo/content/file/impressionen_kaminzimmer_4.jpg and /dev/null differ diff --git a/modules/thunder_demo/content/file/leeraufbau_festsaal.jpg b/modules/thunder_demo/content/file/leeraufbau_festsaal.jpg deleted file mode 100644 index c7ec07112..000000000 Binary files a/modules/thunder_demo/content/file/leeraufbau_festsaal.jpg and /dev/null differ diff --git a/modules/thunder_demo/content/file/map_ctis.png b/modules/thunder_demo/content/file/map_ctis.png deleted file mode 100644 index eac332285..000000000 Binary files a/modules/thunder_demo/content/file/map_ctis.png and /dev/null differ diff --git a/modules/thunder_demo/content/file/thunder_dg_2237.jpg b/modules/thunder_demo/content/file/thunder_dg_2237.jpg deleted file mode 100644 index 3293fbd80..000000000 Binary files a/modules/thunder_demo/content/file/thunder_dg_2237.jpg and /dev/null differ diff --git a/modules/thunder_demo/content/file/thunderday_burda_2017011407.jpg b/modules/thunder_demo/content/file/thunderday_burda_2017011407.jpg deleted file mode 100644 index 6f8fe80f9..000000000 Binary files a/modules/thunder_demo/content/file/thunderday_burda_2017011407.jpg and /dev/null differ diff --git a/modules/thunder_demo/content/file/thunderday_burda_2017011419.jpg b/modules/thunder_demo/content/file/thunderday_burda_2017011419.jpg deleted file mode 100644 index e25077562..000000000 Binary files a/modules/thunder_demo/content/file/thunderday_burda_2017011419.jpg and /dev/null differ diff --git a/modules/thunder_demo/content/file/thunderday_burda_2017011438.jpg b/modules/thunder_demo/content/file/thunderday_burda_2017011438.jpg deleted file mode 100644 index 8260c215b..000000000 Binary files a/modules/thunder_demo/content/file/thunderday_burda_2017011438.jpg and /dev/null differ diff --git a/modules/thunder_demo/content/file/thunderday_burda_2017011490.jpg b/modules/thunder_demo/content/file/thunderday_burda_2017011490.jpg deleted file mode 100644 index f1d8b70e9..000000000 Binary files a/modules/thunder_demo/content/file/thunderday_burda_2017011490.jpg and /dev/null differ diff --git a/modules/thunder_demo/content/file/thunderday_burda_2017011555.jpg b/modules/thunder_demo/content/file/thunderday_burda_2017011555.jpg deleted file mode 100644 index b4c2d2121..000000000 Binary files a/modules/thunder_demo/content/file/thunderday_burda_2017011555.jpg and /dev/null differ diff --git a/modules/thunder_demo/content/file/thunderday_burda_2017011616.jpg b/modules/thunder_demo/content/file/thunderday_burda_2017011616.jpg deleted file mode 100644 index f061f63b0..000000000 Binary files a/modules/thunder_demo/content/file/thunderday_burda_2017011616.jpg and /dev/null differ diff --git a/modules/thunder_demo/content/file/thunderday_burda_2017011666.jpg b/modules/thunder_demo/content/file/thunderday_burda_2017011666.jpg deleted file mode 100644 index 41ef6c6dc..000000000 Binary files a/modules/thunder_demo/content/file/thunderday_burda_2017011666.jpg and /dev/null differ diff --git a/modules/thunder_demo/content/file/thunderday_burda_2017011817.jpg b/modules/thunder_demo/content/file/thunderday_burda_2017011817.jpg deleted file mode 100644 index 7b67b4b37..000000000 Binary files a/modules/thunder_demo/content/file/thunderday_burda_2017011817.jpg and /dev/null differ diff --git a/modules/thunder_demo/content/file/thunderteam_on_stage.jpg b/modules/thunder_demo/content/file/thunderteam_on_stage.jpg deleted file mode 100644 index b531c1f41..000000000 Binary files a/modules/thunder_demo/content/file/thunderteam_on_stage.jpg and /dev/null differ diff --git a/modules/thunder_demo/content/file/welte_ingo_v1.jpg b/modules/thunder_demo/content/file/welte_ingo_v1.jpg deleted file mode 100644 index 602639f7e..000000000 Binary files a/modules/thunder_demo/content/file/welte_ingo_v1.jpg and /dev/null differ diff --git a/modules/thunder_demo/content/file/welte_philipp_final_2.jpg b/modules/thunder_demo/content/file/welte_philipp_final_2.jpg deleted file mode 100644 index 8c3c9c456..000000000 Binary files a/modules/thunder_demo/content/file/welte_philipp_final_2.jpg and /dev/null differ diff --git a/modules/thunder_demo/content/media/1348d981-3575-4c32-81b4-ae758e43d38e.yml b/modules/thunder_demo/content/media/1348d981-3575-4c32-81b4-ae758e43d38e.yml deleted file mode 100644 index 2ec516b2e..000000000 --- a/modules/thunder_demo/content/media/1348d981-3575-4c32-81b4-ae758e43d38e.yml +++ /dev/null @@ -1,30 +0,0 @@ -_meta: - version: '1.0' - entity_type: media - uuid: 1348d981-3575-4c32-81b4-ae758e43d38e - bundle: twitter - default_langcode: en -default: - status: - - - value: true - uid: - - - target_id: 1 - created: - - - value: 1600162474 - revision_translation_affected: - - - value: true - path: - - - alias: '' - langcode: en - pathauto: 0 - field_author: - - - value: markusvl - field_url: - - - value: 'https://twitter.com/markusvl/status/1067030913299693568' diff --git a/modules/thunder_demo/content/media/13b6536a-f317-4e74-a71f-66e5c61ede65.yml b/modules/thunder_demo/content/media/13b6536a-f317-4e74-a71f-66e5c61ede65.yml deleted file mode 100644 index 48536f04b..000000000 --- a/modules/thunder_demo/content/media/13b6536a-f317-4e74-a71f-66e5c61ede65.yml +++ /dev/null @@ -1,39 +0,0 @@ -_meta: - version: '1.0' - entity_type: media - uuid: 13b6536a-f317-4e74-a71f-66e5c61ede65 - bundle: image - default_langcode: en - depends: - 4fc96a05-40d7-4651-9c87-b06f2fcaf95a: file -default: - status: - - - value: true - uid: - - - target_id: 1 - name: - - - value: leeraufbau_festsaal.jpg - created: - - - value: 1600162381 - revision_translation_affected: - - - value: true - path: - - - alias: '' - langcode: en - pathauto: 1 - field_copyright: - - - value: 'Sophia Vogel' - field_image: - - - entity: 4fc96a05-40d7-4651-9c87-b06f2fcaf95a - alt: '' - title: '' - width: 5190 - height: 3381 diff --git a/modules/thunder_demo/content/media/17e3275e-aed4-4780-be08-89e839a0be5f.yml b/modules/thunder_demo/content/media/17e3275e-aed4-4780-be08-89e839a0be5f.yml deleted file mode 100644 index 55a640555..000000000 --- a/modules/thunder_demo/content/media/17e3275e-aed4-4780-be08-89e839a0be5f.yml +++ /dev/null @@ -1,30 +0,0 @@ -_meta: - version: '1.0' - entity_type: media - uuid: 17e3275e-aed4-4780-be08-89e839a0be5f - bundle: twitter - default_langcode: en -default: - status: - - - value: true - uid: - - - target_id: 1 - created: - - - value: 1600162499 - revision_translation_affected: - - - value: true - path: - - - alias: '' - langcode: en - pathauto: 1 - field_author: - - - value: lukasfischer - field_url: - - - value: 'https://twitter.com/lukasfischer/status/1067396358775218176' diff --git a/modules/thunder_demo/content/media/1c1b3c83-3f91-4110-871c-d612d7df1bb6.yml b/modules/thunder_demo/content/media/1c1b3c83-3f91-4110-871c-d612d7df1bb6.yml deleted file mode 100644 index a2e5d45dd..000000000 --- a/modules/thunder_demo/content/media/1c1b3c83-3f91-4110-871c-d612d7df1bb6.yml +++ /dev/null @@ -1,39 +0,0 @@ -_meta: - version: '1.0' - entity_type: media - uuid: 1c1b3c83-3f91-4110-871c-d612d7df1bb6 - bundle: image - default_langcode: en - depends: - b08692d3-765c-4422-b001-0aee9b7ea103: file -default: - status: - - - value: true - uid: - - - target_id: 1 - name: - - - value: thunderday_burda_2017011438.jpg - created: - - - value: 1600160861 - revision_translation_affected: - - - value: true - path: - - - alias: '' - langcode: en - pathauto: 1 - field_copyright: - - - value: 'Kerstin Seipt, www.kerstinseipt-photography.de' - field_image: - - - entity: b08692d3-765c-4422-b001-0aee9b7ea103 - alt: '' - title: '' - width: 3543 - height: 2362 diff --git a/modules/thunder_demo/content/media/2584ef49-8f36-424e-9338-c95d5cf933dc.yml b/modules/thunder_demo/content/media/2584ef49-8f36-424e-9338-c95d5cf933dc.yml deleted file mode 100644 index a2dbae595..000000000 --- a/modules/thunder_demo/content/media/2584ef49-8f36-424e-9338-c95d5cf933dc.yml +++ /dev/null @@ -1,30 +0,0 @@ -_meta: - version: '1.0' - entity_type: media - uuid: 2584ef49-8f36-424e-9338-c95d5cf933dc - bundle: twitter - default_langcode: en -default: - status: - - - value: true - uid: - - - target_id: 1 - created: - - - value: 1600161155 - revision_translation_affected: - - - value: true - path: - - - alias: '' - langcode: en - pathauto: 0 - field_author: - - - value: bofrost007 - field_url: - - - value: 'https://twitter.com/bofrost007/status/932699092278444032' diff --git a/modules/thunder_demo/content/media/31457b1e-0122-46a6-b3ab-edfa0c4b801a.yml b/modules/thunder_demo/content/media/31457b1e-0122-46a6-b3ab-edfa0c4b801a.yml deleted file mode 100644 index 2fbb814b3..000000000 --- a/modules/thunder_demo/content/media/31457b1e-0122-46a6-b3ab-edfa0c4b801a.yml +++ /dev/null @@ -1,39 +0,0 @@ -_meta: - version: '1.0' - entity_type: media - uuid: 31457b1e-0122-46a6-b3ab-edfa0c4b801a - bundle: image - default_langcode: en - depends: - c5a9a50a-20bc-48ee-89ff-6465c194f2be: file -default: - status: - - - value: true - uid: - - - target_id: 1 - name: - - - value: Thunder - created: - - - value: 1458200844 - revision_translation_affected: - - - value: true - path: - - - alias: '' - langcode: en - pathauto: 0 - field_copyright: - - - value: 'Thunder, Hubert Burda Media' - field_image: - - - entity: c5a9a50a-20bc-48ee-89ff-6465c194f2be - alt: '' - title: '' - width: 1456 - height: 818 diff --git a/modules/thunder_demo/content/media/34478597-153e-4b96-b275-4de573e1116c.yml b/modules/thunder_demo/content/media/34478597-153e-4b96-b275-4de573e1116c.yml deleted file mode 100644 index 539383e2c..000000000 --- a/modules/thunder_demo/content/media/34478597-153e-4b96-b275-4de573e1116c.yml +++ /dev/null @@ -1,36 +0,0 @@ -_meta: - version: '1.0' - entity_type: media - uuid: 34478597-153e-4b96-b275-4de573e1116c - bundle: image - default_langcode: en - depends: - 50b7f62a-6c43-4ae8-b1fc-2675520fdea7: file -default: - status: - - - value: true - uid: - - - target_id: 1 - name: - - - value: 'Map of CTIs' - created: - - - value: 1600160222 - revision_translation_affected: - - - value: true - path: - - - alias: '' - langcode: en - pathauto: 0 - field_image: - - - entity: 50b7f62a-6c43-4ae8-b1fc-2675520fdea7 - alt: '' - title: '' - width: 1581 - height: 781 diff --git a/modules/thunder_demo/content/media/3c47da20-33f3-4bf2-bee0-bd7669d8e7aa.yml b/modules/thunder_demo/content/media/3c47da20-33f3-4bf2-bee0-bd7669d8e7aa.yml deleted file mode 100644 index 175750c6a..000000000 --- a/modules/thunder_demo/content/media/3c47da20-33f3-4bf2-bee0-bd7669d8e7aa.yml +++ /dev/null @@ -1,39 +0,0 @@ -_meta: - version: '1.0' - entity_type: media - uuid: 3c47da20-33f3-4bf2-bee0-bd7669d8e7aa - bundle: image - default_langcode: en - depends: - 5abbb82e-76f3-405d-b8e3-e2d890197aba: file -default: - status: - - - value: true - uid: - - - target_id: 1 - name: - - - value: impressionen_kaminzimmer_4.jpg - created: - - - value: 1600162381 - revision_translation_affected: - - - value: true - path: - - - alias: '' - langcode: en - pathauto: 1 - field_copyright: - - - value: 'Sophia Vogel' - field_image: - - - entity: 5abbb82e-76f3-405d-b8e3-e2d890197aba - alt: '' - title: '' - width: 5472 - height: 3648 diff --git a/modules/thunder_demo/content/media/40bbeede-898b-4574-a239-95aae6112a3d.yml b/modules/thunder_demo/content/media/40bbeede-898b-4574-a239-95aae6112a3d.yml deleted file mode 100644 index 56ab4c0f5..000000000 --- a/modules/thunder_demo/content/media/40bbeede-898b-4574-a239-95aae6112a3d.yml +++ /dev/null @@ -1,39 +0,0 @@ -_meta: - version: '1.0' - entity_type: media - uuid: 40bbeede-898b-4574-a239-95aae6112a3d - bundle: image - default_langcode: en - depends: - 911771d1-f8d5-4d62-ba77-e7040682c07e: file -default: - status: - - - value: true - uid: - - - target_id: 1 - name: - - - value: thunderday_burda_2017011419.jpg - created: - - - value: 1600160861 - revision_translation_affected: - - - value: true - path: - - - alias: '' - langcode: en - pathauto: 1 - field_copyright: - - - value: 'Kerstin Seipt, www.kerstinseipt-photography.de' - field_image: - - - entity: 911771d1-f8d5-4d62-ba77-e7040682c07e - alt: '' - title: '' - width: 3543 - height: 2362 diff --git a/modules/thunder_demo/content/media/486e2773-81e6-4685-80c0-9e4f26c214a1.yml b/modules/thunder_demo/content/media/486e2773-81e6-4685-80c0-9e4f26c214a1.yml deleted file mode 100644 index 570c64c16..000000000 --- a/modules/thunder_demo/content/media/486e2773-81e6-4685-80c0-9e4f26c214a1.yml +++ /dev/null @@ -1,39 +0,0 @@ -_meta: - version: '1.0' - entity_type: media - uuid: 486e2773-81e6-4685-80c0-9e4f26c214a1 - bundle: image - default_langcode: en - depends: - 9a9a6603-6dba-4f33-b467-fd81bcc6a3a4: file -default: - status: - - - value: true - uid: - - - target_id: 1 - name: - - - value: impressionen_kaminzimmer_2.jpg - created: - - - value: 1600162381 - revision_translation_affected: - - - value: true - path: - - - alias: '' - langcode: en - pathauto: 1 - field_copyright: - - - value: 'Sophia Vogel' - field_image: - - - entity: 9a9a6603-6dba-4f33-b467-fd81bcc6a3a4 - alt: '' - title: '' - width: 5472 - height: 3648 diff --git a/modules/thunder_demo/content/media/4f4039ab-65a3-4ade-8d2c-6553b21cad58.yml b/modules/thunder_demo/content/media/4f4039ab-65a3-4ade-8d2c-6553b21cad58.yml deleted file mode 100644 index 6d2de20ae..000000000 --- a/modules/thunder_demo/content/media/4f4039ab-65a3-4ade-8d2c-6553b21cad58.yml +++ /dev/null @@ -1,39 +0,0 @@ -_meta: - version: '1.0' - entity_type: media - uuid: 4f4039ab-65a3-4ade-8d2c-6553b21cad58 - bundle: image - default_langcode: en - depends: - 82aa86b9-645c-4310-a7b6-9770240663b3: file -default: - status: - - - value: true - uid: - - - target_id: 1 - name: - - - value: thunderday_burda_2017011666.jpg - created: - - - value: 1600160861 - revision_translation_affected: - - - value: true - path: - - - alias: '' - langcode: en - pathauto: 1 - field_copyright: - - - value: 'Kerstin Seipt, www.kerstinseipt-photography.de' - field_image: - - - entity: 82aa86b9-645c-4310-a7b6-9770240663b3 - alt: '' - title: '' - width: 3543 - height: 2362 diff --git a/modules/thunder_demo/content/media/5734cc42-787a-464e-9836-38ffa34aad7f.yml b/modules/thunder_demo/content/media/5734cc42-787a-464e-9836-38ffa34aad7f.yml deleted file mode 100644 index 078f7318b..000000000 --- a/modules/thunder_demo/content/media/5734cc42-787a-464e-9836-38ffa34aad7f.yml +++ /dev/null @@ -1,39 +0,0 @@ -_meta: - version: '1.0' - entity_type: media - uuid: 5734cc42-787a-464e-9836-38ffa34aad7f - bundle: image - default_langcode: en - depends: - 587ac846-1c3a-4345-8995-122683d5d2a9: file -default: - status: - - - value: true - uid: - - - target_id: 1 - name: - - - value: thunderday_burda_2017011616.jpg - created: - - - value: 1600160861 - revision_translation_affected: - - - value: true - path: - - - alias: '' - langcode: en - pathauto: 1 - field_copyright: - - - value: 'Kerstin Seipt, www.kerstinseipt-photography.de' - field_image: - - - entity: 587ac846-1c3a-4345-8995-122683d5d2a9 - alt: '' - title: '' - width: 3543 - height: 2362 diff --git a/modules/thunder_demo/content/media/5d0b5981-3c35-4160-9ada-f4f7eaf4f607.yml b/modules/thunder_demo/content/media/5d0b5981-3c35-4160-9ada-f4f7eaf4f607.yml deleted file mode 100644 index 2cf89c57d..000000000 --- a/modules/thunder_demo/content/media/5d0b5981-3c35-4160-9ada-f4f7eaf4f607.yml +++ /dev/null @@ -1,30 +0,0 @@ -_meta: - version: '1.0' - entity_type: media - uuid: 5d0b5981-3c35-4160-9ada-f4f7eaf4f607 - bundle: twitter - default_langcode: en -default: - status: - - - value: true - uid: - - - target_id: 1 - created: - - - value: 1600161142 - revision_translation_affected: - - - value: true - path: - - - alias: '' - langcode: en - pathauto: 0 - field_author: - - - value: thorandreg - field_url: - - - value: 'https://twitter.com/thorandreg/status/932727077526212608' diff --git a/modules/thunder_demo/content/media/6296b850-fea3-458d-8782-3177f48e2cbe.yml b/modules/thunder_demo/content/media/6296b850-fea3-458d-8782-3177f48e2cbe.yml deleted file mode 100644 index dcac653f3..000000000 --- a/modules/thunder_demo/content/media/6296b850-fea3-458d-8782-3177f48e2cbe.yml +++ /dev/null @@ -1,30 +0,0 @@ -_meta: - version: '1.0' - entity_type: media - uuid: 6296b850-fea3-458d-8782-3177f48e2cbe - bundle: twitter - default_langcode: en -default: - status: - - - value: true - uid: - - - target_id: 1 - created: - - - value: 1600161182 - revision_translation_affected: - - - value: true - path: - - - alias: '' - langcode: en - pathauto: 1 - field_author: - - - value: breidert - field_url: - - - value: 'https://twitter.com/breidert/status/932627844030779392' diff --git a/modules/thunder_demo/content/media/6fcc43bd-c374-4528-b180-ebe94c8fa6a5.yml b/modules/thunder_demo/content/media/6fcc43bd-c374-4528-b180-ebe94c8fa6a5.yml deleted file mode 100644 index 4e946a0e1..000000000 --- a/modules/thunder_demo/content/media/6fcc43bd-c374-4528-b180-ebe94c8fa6a5.yml +++ /dev/null @@ -1,39 +0,0 @@ -_meta: - version: '1.0' - entity_type: media - uuid: 6fcc43bd-c374-4528-b180-ebe94c8fa6a5 - bundle: image - default_langcode: en - depends: - 0044429b-3571-4ccf-b6a1-4e7d2c5c035a: file -default: - status: - - - value: true - uid: - - - target_id: 1 - name: - - - value: ThunderDay - created: - - - value: 1600160742 - revision_translation_affected: - - - value: true - path: - - - alias: '' - langcode: en - pathauto: 0 - field_copyright: - - - value: 'Kerstin Seipt, www.kerstinseipt-photography.de' - field_image: - - - entity: 0044429b-3571-4ccf-b6a1-4e7d2c5c035a - alt: '' - title: '' - width: 3543 - height: 2362 diff --git a/modules/thunder_demo/content/media/765b7c3f-e70c-4cdb-85c6-d0d329919eec.yml b/modules/thunder_demo/content/media/765b7c3f-e70c-4cdb-85c6-d0d329919eec.yml deleted file mode 100644 index 1815a6894..000000000 --- a/modules/thunder_demo/content/media/765b7c3f-e70c-4cdb-85c6-d0d329919eec.yml +++ /dev/null @@ -1,33 +0,0 @@ -_meta: - version: '1.0' - entity_type: media - uuid: 765b7c3f-e70c-4cdb-85c6-d0d329919eec - bundle: video - default_langcode: en -default: - status: - - - value: true - uid: - - - target_id: 1 - name: - - - value: 'ThunderDay 2018' - created: - - - value: 1600162429 - revision_translation_affected: - - - value: true - path: - - - alias: '' - langcode: en - pathauto: 1 - field_author: - - - value: 'Thunder CMS' - field_media_video_embed_field: - - - value: 'https://youtu.be/6imbfpIs6FI' diff --git a/modules/thunder_demo/content/media/81392281-1bf3-4929-b887-c8096ebc01e4.yml b/modules/thunder_demo/content/media/81392281-1bf3-4929-b887-c8096ebc01e4.yml deleted file mode 100644 index 7d3922d72..000000000 --- a/modules/thunder_demo/content/media/81392281-1bf3-4929-b887-c8096ebc01e4.yml +++ /dev/null @@ -1,39 +0,0 @@ -_meta: - version: '1.0' - entity_type: media - uuid: 81392281-1bf3-4929-b887-c8096ebc01e4 - bundle: image - default_langcode: en - depends: - d2fd4235-9c0d-46bf-a649-e812be18cfbb: file -default: - status: - - - value: true - uid: - - - target_id: 1 - name: - - - value: Impressionen - created: - - - value: 1600162084 - revision_translation_affected: - - - value: true - path: - - - alias: '' - langcode: en - pathauto: 0 - field_copyright: - - - value: 'Sophia Vogel' - field_image: - - - entity: d2fd4235-9c0d-46bf-a649-e812be18cfbb - alt: '' - title: '' - width: 5880 - height: 3770 diff --git a/modules/thunder_demo/content/media/83294827-6a30-43ff-b515-b73e86e8205a.yml b/modules/thunder_demo/content/media/83294827-6a30-43ff-b515-b73e86e8205a.yml deleted file mode 100644 index cbff68ea6..000000000 --- a/modules/thunder_demo/content/media/83294827-6a30-43ff-b515-b73e86e8205a.yml +++ /dev/null @@ -1,30 +0,0 @@ -_meta: - version: '1.0' - entity_type: media - uuid: 83294827-6a30-43ff-b515-b73e86e8205a - bundle: twitter - default_langcode: en -default: - status: - - - value: true - uid: - - - target_id: 1 - created: - - - value: 1600162464 - revision_translation_affected: - - - value: true - path: - - - alias: '' - langcode: en - pathauto: 0 - field_author: - - - value: ramsalt - field_url: - - - value: 'https://twitter.com/ramsalt/status/1066995176093216769' diff --git a/modules/thunder_demo/content/media/8656ff5b-a9a5-49e4-a8e8-0d7c5bc2678b.yml b/modules/thunder_demo/content/media/8656ff5b-a9a5-49e4-a8e8-0d7c5bc2678b.yml deleted file mode 100644 index ebebac98e..000000000 --- a/modules/thunder_demo/content/media/8656ff5b-a9a5-49e4-a8e8-0d7c5bc2678b.yml +++ /dev/null @@ -1,30 +0,0 @@ -_meta: - version: '1.0' - entity_type: media - uuid: 8656ff5b-a9a5-49e4-a8e8-0d7c5bc2678b - bundle: pinterest - default_langcode: en -default: - status: - - - value: true - uid: - - - target_id: 1 - name: - - - value: '478085316687452268' - created: - - - value: 1600163484 - revision_translation_affected: - - - value: true - path: - - - alias: '' - langcode: en - pathauto: 0 - field_url: - - - value: 'https://www.pinterest.de/pin/478085316687452268/' diff --git a/modules/thunder_demo/content/media/916d281a-6097-4e26-8805-e5392ac53a0b.yml b/modules/thunder_demo/content/media/916d281a-6097-4e26-8805-e5392ac53a0b.yml deleted file mode 100644 index e1eba2663..000000000 --- a/modules/thunder_demo/content/media/916d281a-6097-4e26-8805-e5392ac53a0b.yml +++ /dev/null @@ -1,39 +0,0 @@ -_meta: - version: '1.0' - entity_type: media - uuid: 916d281a-6097-4e26-8805-e5392ac53a0b - bundle: image - default_langcode: en - depends: - 038a612e-d318-4959-b23b-ee2978cd1f6c: file -default: - status: - - - value: true - uid: - - - target_id: 1 - name: - - - value: impressionen_kaminzimmer_3.jpg - created: - - - value: 1600162381 - revision_translation_affected: - - - value: true - path: - - - alias: '' - langcode: en - pathauto: 1 - field_copyright: - - - value: 'Sophia Vogel' - field_image: - - - entity: 038a612e-d318-4959-b23b-ee2978cd1f6c - alt: '' - title: '' - width: 6000 - height: 4000 diff --git a/modules/thunder_demo/content/media/9c2cafe0-3345-4cd3-ad3c-2d8ff85b9db5.yml b/modules/thunder_demo/content/media/9c2cafe0-3345-4cd3-ad3c-2d8ff85b9db5.yml deleted file mode 100644 index e90352931..000000000 --- a/modules/thunder_demo/content/media/9c2cafe0-3345-4cd3-ad3c-2d8ff85b9db5.yml +++ /dev/null @@ -1,43 +0,0 @@ -_meta: - version: '1.0' - entity_type: media - uuid: 9c2cafe0-3345-4cd3-ad3c-2d8ff85b9db5 - bundle: image - default_langcode: en - depends: - 87530ce0-8006-4773-9ec2-98bb85c21d30: file -default: - status: - - - value: true - uid: - - - target_id: 1 - name: - - - value: 'CTI Badge' - created: - - - value: 1600160312 - revision_translation_affected: - - - value: true - path: - - - alias: '' - langcode: en - pathauto: 0 - field_copyright: - - - value: Thunder - field_description: - - - value: "

CTIs are allowed to use the label ‘Certified Thunder Integrator’ and the associated badge to promote their services.

\r\n" - format: basic_html - field_image: - - - entity: 87530ce0-8006-4773-9ec2-98bb85c21d30 - alt: 'Certified Thunder Integrator Badge' - title: 'Certified Thunder Integrator Badge' - width: 3543 - height: 1248 diff --git a/modules/thunder_demo/content/media/c8b73bd1-1e4b-477e-96d9-580be6dab017.yml b/modules/thunder_demo/content/media/c8b73bd1-1e4b-477e-96d9-580be6dab017.yml deleted file mode 100644 index 32615be71..000000000 --- a/modules/thunder_demo/content/media/c8b73bd1-1e4b-477e-96d9-580be6dab017.yml +++ /dev/null @@ -1,47 +0,0 @@ -_meta: - version: '1.0' - entity_type: media - uuid: c8b73bd1-1e4b-477e-96d9-580be6dab017 - bundle: gallery - default_langcode: en - depends: - d3782161-f7b3-4e8c-a24f-f2545bb2d474: media - 13b6536a-f317-4e74-a71f-66e5c61ede65: media - 486e2773-81e6-4685-80c0-9e4f26c214a1: media - 916d281a-6097-4e26-8805-e5392ac53a0b: media - 3c47da20-33f3-4bf2-bee0-bd7669d8e7aa: media - 81392281-1bf3-4929-b887-c8096ebc01e4: media -default: - status: - - - value: true - uid: - - - target_id: 1 - name: - - - value: 'ThunderDay 2018' - created: - - - value: 1600162372 - revision_translation_affected: - - - value: true - path: - - - alias: '' - langcode: en - pathauto: 0 - field_media_images: - - - entity: d3782161-f7b3-4e8c-a24f-f2545bb2d474 - - - entity: 13b6536a-f317-4e74-a71f-66e5c61ede65 - - - entity: 486e2773-81e6-4685-80c0-9e4f26c214a1 - - - entity: 916d281a-6097-4e26-8805-e5392ac53a0b - - - entity: 3c47da20-33f3-4bf2-bee0-bd7669d8e7aa - - - entity: 81392281-1bf3-4929-b887-c8096ebc01e4 diff --git a/modules/thunder_demo/content/media/d3782161-f7b3-4e8c-a24f-f2545bb2d474.yml b/modules/thunder_demo/content/media/d3782161-f7b3-4e8c-a24f-f2545bb2d474.yml deleted file mode 100644 index 3ab164f0a..000000000 --- a/modules/thunder_demo/content/media/d3782161-f7b3-4e8c-a24f-f2545bb2d474.yml +++ /dev/null @@ -1,39 +0,0 @@ -_meta: - version: '1.0' - entity_type: media - uuid: d3782161-f7b3-4e8c-a24f-f2545bb2d474 - bundle: image - default_langcode: en - depends: - 7e9e28dd-35a6-48eb-bfdd-5578b250cf8c: file -default: - status: - - - value: true - uid: - - - target_id: 1 - name: - - - value: thunderteam_on_stage.jpg - created: - - - value: 1600162381 - revision_translation_affected: - - - value: true - path: - - - alias: '' - langcode: en - pathauto: 1 - field_copyright: - - - value: 'Sophia Vogel' - field_image: - - - entity: 7e9e28dd-35a6-48eb-bfdd-5578b250cf8c - alt: '' - title: '' - width: 4618 - height: 2996 diff --git a/modules/thunder_demo/content/media/d43954eb-0edc-4aa8-a842-d99f413020be.yml b/modules/thunder_demo/content/media/d43954eb-0edc-4aa8-a842-d99f413020be.yml deleted file mode 100644 index d70025fe8..000000000 --- a/modules/thunder_demo/content/media/d43954eb-0edc-4aa8-a842-d99f413020be.yml +++ /dev/null @@ -1,39 +0,0 @@ -_meta: - version: '1.0' - entity_type: media - uuid: d43954eb-0edc-4aa8-a842-d99f413020be - bundle: image - default_langcode: en - depends: - 4533f02b-f720-46cb-acbb-84255b302ef1: file -default: - status: - - - value: true - uid: - - - target_id: 1 - name: - - - value: thunderday_burda_2017011555.jpg - created: - - - value: 1600160861 - revision_translation_affected: - - - value: true - path: - - - alias: '' - langcode: en - pathauto: 1 - field_copyright: - - - value: 'Kerstin Seipt, www.kerstinseipt-photography.de' - field_image: - - - entity: 4533f02b-f720-46cb-acbb-84255b302ef1 - alt: '' - title: '' - width: 3543 - height: 2362 diff --git a/modules/thunder_demo/content/media/d5170777-5d26-423a-8710-e009d47ee979.yml b/modules/thunder_demo/content/media/d5170777-5d26-423a-8710-e009d47ee979.yml deleted file mode 100644 index 394259241..000000000 --- a/modules/thunder_demo/content/media/d5170777-5d26-423a-8710-e009d47ee979.yml +++ /dev/null @@ -1,39 +0,0 @@ -_meta: - version: '1.0' - entity_type: media - uuid: d5170777-5d26-423a-8710-e009d47ee979 - bundle: image - default_langcode: en - depends: - 2387f16f-68c8-4297-a998-954c7ef66dc0: file -default: - status: - - - value: true - uid: - - - target_id: 1 - name: - - - value: thunderday_burda_2017011817.jpg - created: - - - value: 1600160861 - revision_translation_affected: - - - value: true - path: - - - alias: '' - langcode: en - pathauto: 1 - field_copyright: - - - value: 'Kerstin Seipt, www.kerstinseipt-photography.de' - field_image: - - - entity: 2387f16f-68c8-4297-a998-954c7ef66dc0 - alt: '' - title: '' - width: 3543 - height: 2362 diff --git a/modules/thunder_demo/content/media/dd45a3e7-ce93-41e8-bffe-2020211c2b5b.yml b/modules/thunder_demo/content/media/dd45a3e7-ce93-41e8-bffe-2020211c2b5b.yml deleted file mode 100644 index f4fe2a7ec..000000000 --- a/modules/thunder_demo/content/media/dd45a3e7-ce93-41e8-bffe-2020211c2b5b.yml +++ /dev/null @@ -1,53 +0,0 @@ -_meta: - version: '1.0' - entity_type: media - uuid: dd45a3e7-ce93-41e8-bffe-2020211c2b5b - bundle: gallery - default_langcode: en - depends: - 6fcc43bd-c374-4528-b180-ebe94c8fa6a5: media - d5170777-5d26-423a-8710-e009d47ee979: media - 4f4039ab-65a3-4ade-8d2c-6553b21cad58: media - 5734cc42-787a-464e-9836-38ffa34aad7f: media - d43954eb-0edc-4aa8-a842-d99f413020be: media - 40bbeede-898b-4574-a239-95aae6112a3d: media - 1c1b3c83-3f91-4110-871c-d612d7df1bb6: media - f34ecf01-3fce-45f6-b507-77cd9104cf96: media -default: - status: - - - value: true - uid: - - - target_id: 1 - name: - - - value: 'Thunder Day 2017' - created: - - - value: 1600160816 - revision_translation_affected: - - - value: true - path: - - - alias: '' - langcode: en - pathauto: 0 - field_media_images: - - - entity: 6fcc43bd-c374-4528-b180-ebe94c8fa6a5 - - - entity: d5170777-5d26-423a-8710-e009d47ee979 - - - entity: 4f4039ab-65a3-4ade-8d2c-6553b21cad58 - - - entity: 5734cc42-787a-464e-9836-38ffa34aad7f - - - entity: d43954eb-0edc-4aa8-a842-d99f413020be - - - entity: 40bbeede-898b-4574-a239-95aae6112a3d - - - entity: 1c1b3c83-3f91-4110-871c-d612d7df1bb6 - - - entity: f34ecf01-3fce-45f6-b507-77cd9104cf96 diff --git a/modules/thunder_demo/content/media/df43ad97-ab4f-4f15-84c0-f10009b8fdb0.yml b/modules/thunder_demo/content/media/df43ad97-ab4f-4f15-84c0-f10009b8fdb0.yml deleted file mode 100644 index b025c67ff..000000000 --- a/modules/thunder_demo/content/media/df43ad97-ab4f-4f15-84c0-f10009b8fdb0.yml +++ /dev/null @@ -1,36 +0,0 @@ -_meta: - version: '1.0' - entity_type: media - uuid: df43ad97-ab4f-4f15-84c0-f10009b8fdb0 - bundle: image - default_langcode: en - depends: - 63c664f3-d403-4509-b90c-b945a69431b5: file -default: - status: - - - value: true - uid: - - - target_id: 1 - name: - - - value: Thunder - created: - - - value: 1600163434 - revision_translation_affected: - - - value: true - path: - - - alias: '' - langcode: en - pathauto: 0 - field_image: - - - entity: 63c664f3-d403-4509-b90c-b945a69431b5 - alt: '' - title: '' - width: 3500 - height: 2333 diff --git a/modules/thunder_demo/content/media/f34ecf01-3fce-45f6-b507-77cd9104cf96.yml b/modules/thunder_demo/content/media/f34ecf01-3fce-45f6-b507-77cd9104cf96.yml deleted file mode 100644 index 2871fa859..000000000 --- a/modules/thunder_demo/content/media/f34ecf01-3fce-45f6-b507-77cd9104cf96.yml +++ /dev/null @@ -1,39 +0,0 @@ -_meta: - version: '1.0' - entity_type: media - uuid: f34ecf01-3fce-45f6-b507-77cd9104cf96 - bundle: image - default_langcode: en - depends: - de73fbb6-9126-4eee-844f-cd4622653f83: file -default: - status: - - - value: true - uid: - - - target_id: 1 - name: - - - value: thunderday_burda_2017011407.jpg - created: - - - value: 1600160861 - revision_translation_affected: - - - value: true - path: - - - alias: '' - langcode: en - pathauto: 1 - field_copyright: - - - value: 'Kerstin Seipt, www.kerstinseipt-photography.de' - field_image: - - - entity: de73fbb6-9126-4eee-844f-cd4622653f83 - alt: '' - title: '' - width: 3543 - height: 2362 diff --git a/modules/thunder_demo/content/media/f8ad6684-b110-4751-98b8-dbf9310f91b0.yml b/modules/thunder_demo/content/media/f8ad6684-b110-4751-98b8-dbf9310f91b0.yml deleted file mode 100644 index 74330c55b..000000000 --- a/modules/thunder_demo/content/media/f8ad6684-b110-4751-98b8-dbf9310f91b0.yml +++ /dev/null @@ -1,39 +0,0 @@ -_meta: - version: '1.0' - entity_type: media - uuid: f8ad6684-b110-4751-98b8-dbf9310f91b0 - bundle: image - default_langcode: en - depends: - 94a2a059-a253-45a1-83e0-79fcb32133c0: file -default: - status: - - - value: true - uid: - - - target_id: 1 - name: - - - value: 'Philipp Welte' - created: - - - value: 1600157248 - revision_translation_affected: - - - value: true - path: - - - alias: '' - langcode: en - pathauto: 0 - field_copyright: - - - value: 'Thunder, Hubert Burda Media' - field_image: - - - entity: 94a2a059-a253-45a1-83e0-79fcb32133c0 - alt: 'Philipp Welte' - title: 'Philipp Welte' - width: 2409 - height: 2973 diff --git a/modules/thunder_demo/content/menu_link_content/132c827a-1b30-4f67-a8df-8f41b38797fe.yml b/modules/thunder_demo/content/menu_link_content/132c827a-1b30-4f67-a8df-8f41b38797fe.yml deleted file mode 100644 index c131595cf..000000000 --- a/modules/thunder_demo/content/menu_link_content/132c827a-1b30-4f67-a8df-8f41b38797fe.yml +++ /dev/null @@ -1,36 +0,0 @@ -_meta: - version: '1.0' - entity_type: menu_link_content - uuid: 132c827a-1b30-4f67-a8df-8f41b38797fe - bundle: menu_link_content - default_langcode: en -default: - enabled: - - - value: true - title: - - - value: 'Certified Thunder Integrators' - menu_name: - - - value: footer - link: - - - uri: 'https://thunder.org/ctis' - title: '' - options: { } - external: - - - value: false - rediscover: - - - value: false - weight: - - - value: 0 - expanded: - - - value: false - revision_translation_affected: - - - value: true diff --git a/modules/thunder_demo/content/menu_link_content/41f139d4-f1e7-4cc1-8dd6-37f86c682f49.yml b/modules/thunder_demo/content/menu_link_content/41f139d4-f1e7-4cc1-8dd6-37f86c682f49.yml deleted file mode 100644 index e5e523cdc..000000000 --- a/modules/thunder_demo/content/menu_link_content/41f139d4-f1e7-4cc1-8dd6-37f86c682f49.yml +++ /dev/null @@ -1,36 +0,0 @@ -_meta: - version: '1.0' - entity_type: menu_link_content - uuid: 41f139d4-f1e7-4cc1-8dd6-37f86c682f49 - bundle: menu_link_content - default_langcode: en -default: - enabled: - - - value: true - title: - - - value: News - menu_name: - - - value: main - link: - - - uri: 'internal:/news' - title: '' - options: { } - external: - - - value: false - rediscover: - - - value: true - weight: - - - value: -50 - expanded: - - - value: false - revision_translation_affected: - - - value: true diff --git a/modules/thunder_demo/content/menu_link_content/5e0b1d08-af33-4a38-b3ba-f4cf85b7315a.yml b/modules/thunder_demo/content/menu_link_content/5e0b1d08-af33-4a38-b3ba-f4cf85b7315a.yml deleted file mode 100644 index 4a9e77ef5..000000000 --- a/modules/thunder_demo/content/menu_link_content/5e0b1d08-af33-4a38-b3ba-f4cf85b7315a.yml +++ /dev/null @@ -1,36 +0,0 @@ -_meta: - version: '1.0' - entity_type: menu_link_content - uuid: 5e0b1d08-af33-4a38-b3ba-f4cf85b7315a - bundle: menu_link_content - default_langcode: en -default: - enabled: - - - value: true - title: - - - value: Contact - menu_name: - - - value: footer - link: - - - uri: 'https://thunder.org/contact-us' - title: '' - options: { } - external: - - - value: false - rediscover: - - - value: false - weight: - - - value: 0 - expanded: - - - value: false - revision_translation_affected: - - - value: true diff --git a/modules/thunder_demo/content/menu_link_content/61c592ad-015b-43e3-8cd0-03f2fdb1893d.yml b/modules/thunder_demo/content/menu_link_content/61c592ad-015b-43e3-8cd0-03f2fdb1893d.yml deleted file mode 100644 index df92f5ee9..000000000 --- a/modules/thunder_demo/content/menu_link_content/61c592ad-015b-43e3-8cd0-03f2fdb1893d.yml +++ /dev/null @@ -1,36 +0,0 @@ -_meta: - version: '1.0' - entity_type: menu_link_content - uuid: 61c592ad-015b-43e3-8cd0-03f2fdb1893d - bundle: menu_link_content - default_langcode: en -default: - enabled: - - - value: true - title: - - - value: Coalition - menu_name: - - - value: footer - link: - - - uri: 'https://thunder.org/thunder-coalition' - title: '' - options: { } - external: - - - value: false - rediscover: - - - value: false - weight: - - - value: 0 - expanded: - - - value: false - revision_translation_affected: - - - value: true diff --git a/modules/thunder_demo/content/menu_link_content/9c2a1fbf-a72f-4ca3-b27d-e216788aa6cc.yml b/modules/thunder_demo/content/menu_link_content/9c2a1fbf-a72f-4ca3-b27d-e216788aa6cc.yml deleted file mode 100644 index 8917704a0..000000000 --- a/modules/thunder_demo/content/menu_link_content/9c2a1fbf-a72f-4ca3-b27d-e216788aa6cc.yml +++ /dev/null @@ -1,36 +0,0 @@ -_meta: - version: '1.0' - entity_type: menu_link_content - uuid: 9c2a1fbf-a72f-4ca3-b27d-e216788aa6cc - bundle: menu_link_content - default_langcode: en -default: - enabled: - - - value: true - title: - - - value: 'Case Studies' - menu_name: - - - value: footer - link: - - - uri: 'https://thunder.org/case-studies' - title: '' - options: { } - external: - - - value: false - rediscover: - - - value: false - weight: - - - value: 0 - expanded: - - - value: false - revision_translation_affected: - - - value: true diff --git a/modules/thunder_demo/content/menu_link_content/ddba293d-6e01-4f47-aa16-6a84fbe592da.yml b/modules/thunder_demo/content/menu_link_content/ddba293d-6e01-4f47-aa16-6a84fbe592da.yml deleted file mode 100644 index 69f563372..000000000 --- a/modules/thunder_demo/content/menu_link_content/ddba293d-6e01-4f47-aa16-6a84fbe592da.yml +++ /dev/null @@ -1,36 +0,0 @@ -_meta: - version: '1.0' - entity_type: menu_link_content - uuid: ddba293d-6e01-4f47-aa16-6a84fbe592da - bundle: menu_link_content - default_langcode: en -default: - enabled: - - - value: true - title: - - - value: 'About Thunder' - menu_name: - - - value: footer - link: - - - uri: 'https://thunder.org/about-thunder' - title: '' - options: { } - external: - - - value: false - rediscover: - - - value: false - weight: - - - value: 0 - expanded: - - - value: false - revision_translation_affected: - - - value: true diff --git a/modules/thunder_demo/content/menu_link_content/f3cace00-efd5-421d-8366-d7975754e737.yml b/modules/thunder_demo/content/menu_link_content/f3cace00-efd5-421d-8366-d7975754e737.yml deleted file mode 100644 index b31cfd130..000000000 --- a/modules/thunder_demo/content/menu_link_content/f3cace00-efd5-421d-8366-d7975754e737.yml +++ /dev/null @@ -1,36 +0,0 @@ -_meta: - version: '1.0' - entity_type: menu_link_content - uuid: f3cace00-efd5-421d-8366-d7975754e737 - bundle: menu_link_content - default_langcode: en -default: - enabled: - - - value: true - title: - - - value: Events - menu_name: - - - value: main - link: - - - uri: 'internal:/events' - title: '' - options: { } - external: - - - value: false - rediscover: - - - value: true - weight: - - - value: -49 - expanded: - - - value: false - revision_translation_affected: - - - value: true diff --git a/modules/thunder_demo/content/node/17317a9b-c007-4933-99af-57d53e416f5d.yml b/modules/thunder_demo/content/node/17317a9b-c007-4933-99af-57d53e416f5d.yml deleted file mode 100644 index e1293bbd2..000000000 --- a/modules/thunder_demo/content/node/17317a9b-c007-4933-99af-57d53e416f5d.yml +++ /dev/null @@ -1,330 +0,0 @@ -_meta: - version: '1.0' - entity_type: node - uuid: 17317a9b-c007-4933-99af-57d53e416f5d - bundle: article - default_langcode: en - depends: - a67c24e2-5974-42b4-9210-f918a0f230fd: taxonomy_term - dd45a3e7-ce93-41e8-bffe-2020211c2b5b: media - 5d0b5981-3c35-4160-9ada-f4f7eaf4f607: media - 2584ef49-8f36-424e-9338-c95d5cf933dc: media - 6296b850-fea3-458d-8782-3177f48e2cbe: media - 4fe40f59-8f90-4fc6-8630-fadea609a619: taxonomy_term - 038587f9-39d8-4441-a848-a62b54b08a84: taxonomy_term - 6fcc43bd-c374-4528-b180-ebe94c8fa6a5: media -default: - revision_uid: - - - target_id: 1 - status: - - - value: true - uid: - - - target_id: 1 - title: - - - value: 'Thunder Day 2017: What you missed (if you weren''t there)' - created: - - - value: 1511258648 - promote: - - - value: true - sticky: - - - value: false - revision_translation_affected: - - - value: true - moderation_state: - - - value: published - path: - - - alias: /thunder-day-2017-community-shared-experiences-hamburg - langcode: en - pathauto: 1 - publish_state: - - - value: _none - unpublish_state: - - - value: _none - field_channel: - - - entity: a67c24e2-5974-42b4-9210-f918a0f230fd - field_paragraphs: - - - entity: - _meta: - version: '1.0' - entity_type: paragraph - uuid: 7e9a1da5-9369-4243-ba59-b53c12678b72 - bundle: text - default_langcode: en - default: - status: - - - value: true - created: - - - value: 1600160761 - behavior_settings: - - - value: { } - revision_translation_affected: - - - value: true - field_text: - - - value: "

Our very first Thunder Day was a huge success: More than 100 publishers and IT experts working with or interested in Thunder came together in Hamburg to exchange experiences, success stories, and business cards. Conclusion: For professional publishing, there is no way to do without Thunder.

\r\n" - format: basic_html - - - entity: - _meta: - version: '1.0' - entity_type: paragraph - uuid: 14cd9f78-37fd-4346-9a43-f2b8bdcbe8c6 - bundle: gallery - default_langcode: en - default: - status: - - - value: true - created: - - - value: 1600160779 - behavior_settings: - - - value: { } - revision_translation_affected: - - - value: true - field_media: - - - entity: dd45a3e7-ce93-41e8-bffe-2020211c2b5b - - - entity: - _meta: - version: '1.0' - entity_type: paragraph - uuid: 8cfb5c3e-6a7a-405e-98a8-7bf1e68c9e36 - bundle: text - default_langcode: en - default: - status: - - - value: true - created: - - - value: 1600160770 - behavior_settings: - - - value: { } - revision_translation_affected: - - - value: true - field_text: - - - value: "

Around 120 participants from eleven countries joined us for the first Thunder Day in Hamburg. Most came from Germany but we also welcomed guests from Austria, the Czech Republic, the Netherlands, Norway, Portugal, Serbia, Switzerland, Ukraine, United Kingdom, and the United States. We had an outstanding lineup of speakers from different areas of the publishing world who shared their experiences and ideas.

\r\n" - format: basic_html - - - entity: - _meta: - version: '1.0' - entity_type: paragraph - uuid: 150d0236-869d-4711-8098-3dc838826713 - bundle: twitter - default_langcode: en - default: - status: - - - value: true - created: - - - value: 1600161133 - behavior_settings: - - - value: { } - revision_translation_affected: - - - value: true - field_media: - - - entity: 5d0b5981-3c35-4160-9ada-f4f7eaf4f607 - - - entity: - _meta: - version: '1.0' - entity_type: paragraph - uuid: e50b8b0f-b498-44e5-b7d7-9da228a7655d - bundle: text - default_langcode: en - default: - status: - - - value: true - created: - - - value: 1600160923 - behavior_settings: - - - value: { } - revision_translation_affected: - - - value: true - field_text: - - - value: "

At the get-together in the evening, the participants were able to dive into relevant discussions, ask questions, and meet new people as well as consolidate acquaintances made earlier that day or beforehand.

\r\n" - format: basic_html - - - entity: - _meta: - version: '1.0' - entity_type: paragraph - uuid: 0b623b95-2b98-4000-bb53-9f02e7297879 - bundle: twitter - default_langcode: en - default: - status: - - - value: true - created: - - - value: 1600161142 - behavior_settings: - - - value: { } - revision_translation_affected: - - - value: true - field_media: - - - entity: 2584ef49-8f36-424e-9338-c95d5cf933dc - - - entity: - _meta: - version: '1.0' - entity_type: paragraph - uuid: 62d11693-bdc8-48ef-888f-509bdb78fae9 - bundle: twitter - default_langcode: en - default: - status: - - - value: true - created: - - - value: 1600161155 - behavior_settings: - - - value: { } - revision_translation_affected: - - - value: true - field_media: - - - entity: 6296b850-fea3-458d-8782-3177f48e2cbe - - - entity: - _meta: - version: '1.0' - entity_type: paragraph - uuid: 99874574-80bb-41e7-ad7f-092ed1856ca0 - bundle: text - default_langcode: en - default: - status: - - - value: true - created: - - - value: 1600333308 - behavior_settings: - - - value: { } - revision_translation_affected: - - - value: true - field_text: - - - value: "

For those who couldn't attend, we have good news: We recorded the sessions in the main room. The videos can be found here:

\r\n" - format: basic_html - - - entity: - _meta: - version: '1.0' - entity_type: paragraph - uuid: e8c0bc6f-2da1-41b6-aba9-bec8c07e2f64 - bundle: link - default_langcode: en - default: - status: - - - value: true - created: - - - value: 1600160936 - behavior_settings: - - - value: { } - revision_translation_affected: - - - value: true - field_link: - - - uri: 'https://thunder.org/stratos-filalithis-tim-gray-innovation-collaboration-development-university-edinburgh-cms' - title: 'Stratos Filalithis and Tim Gray, University of Edinburgh: Innovation via collaboration in the development of the University of Edinburgh CMS' - options: { } - - - uri: 'https://thunder.org/nathan-maehren-open-y-bringing-digital-transformation-170-year-old-global-ymca-brand' - title: 'Nathan Maehren, YMCA of the Greater Twin Cities: Open Y – Bringing Digital Transformation to a 170-year-old global YMCA Brand' - options: { } - - - uri: 'https://thunder.org/andreas-landle-thunderstruck-agile-values-design-thinking-and-mvps-book-publishing' - title: 'Andreas Ländle, Droemer Knaur: Thunderstruck – Agile Values, Design Thinking and MVPs in Book Publishing' - options: { } - - - uri: 'https://thunder.org/richard-jones-7-dimensions-personalisation' - title: 'Richard Jones, Inviqa: Personalisation in 7 Dimensions' - options: { } - - - uri: 'https://thunder.org/oliver-berndt-contentpool-publishers-our-way-drupal-6-thunder' - title: 'Oliver Berndt, Österreichischer Wirtschaftsverlag: Contentpool for Publishers. Our way from Drupal 6 to Thunder' - options: { } - - - uri: 'https://thunder.org/martin-gaiger-adam-zielinski-digital-transformation-daily-news-publisher' - title: 'Adam Zielinski and Martin Gaiger, Telekurier Online Medien: Digital Transformation of a Daily News Publisher' - options: { } - - - uri: 'https://thunder.org/peter-bilz-wohlgemuth-johannes-haseitl-saskia-rettenbacher-case-study-ispocom-how-thunder-drives' - title: 'Johannes Haseitl, undpaul, Peter Bilz-Wohlgemuth, THE DIGITALE, and Saskia Rettenbacher, Messe München: Case Study ISPO.COM - How Thunder drives Content Marketing' - options: { } - - - uri: 'https://thunder.org/stephan-heck-thunder-and-purple-ds-serve-all-digital-channels' - title: 'Stephan Heck, sprylab technologies: Thunder and Purple DS to serve all digital channels' - options: { } - - - uri: 'https://thunder.org/patrick-lithander-alexander-dobbert-cms-requirements-content-marketing-industry' - title: 'Patrick Lithander, fischerAppelt, and Alexander Dobbert, Fork Unstable Media: CMS requirements for the content marketing industry' - options: { } - - - uri: 'https://thunder.org/thor-andre-gretland-roberto-ornelas-university-drupal-8-distribution-universities-and-colleges' - title: 'Thor Andre Gretland and Roberto Ornelas, frontkom: University – a Drupal 8 distribution for universities and colleges' - options: { } - field_seo_title: - - - value: 'Thunder Day 2017: Community shared experiences in Hamburg' - field_tags: - - - entity: 4fe40f59-8f90-4fc6-8630-fadea609a619 - - - entity: 038587f9-39d8-4441-a848-a62b54b08a84 - field_teaser_media: - - - entity: 6fcc43bd-c374-4528-b180-ebe94c8fa6a5 - field_teaser_text: - - - value: 'Our very first Thunder Day was a huge success: More than 100 publishers and IT experts working with or interested in Thunder came together in Hamburg to exchange experiences, success stories, and business cards. Conclusion: For professional publishing, there is no way to do without Thunder.' diff --git a/modules/thunder_demo/content/node/2f23186e-dcc3-4feb-997b-db72410afe16.yml b/modules/thunder_demo/content/node/2f23186e-dcc3-4feb-997b-db72410afe16.yml deleted file mode 100644 index 26af60384..000000000 --- a/modules/thunder_demo/content/node/2f23186e-dcc3-4feb-997b-db72410afe16.yml +++ /dev/null @@ -1,245 +0,0 @@ -_meta: - version: '1.0' - entity_type: node - uuid: 2f23186e-dcc3-4feb-997b-db72410afe16 - bundle: article - default_langcode: en - depends: - 120b4c9c-82e5-4fe9-97b0-da6fefb9b5f3: taxonomy_term - 8656ff5b-a9a5-49e4-a8e8-0d7c5bc2678b: media - d6de25c8-c089-4b62-b69a-d43dfee83492: taxonomy_term - bdaf83bd-2f64-4b35-a458-2e1ac0fbf4f9: taxonomy_term - df43ad97-ab4f-4f15-84c0-f10009b8fdb0: media -default: - revision_uid: - - - target_id: 1 - status: - - - value: false - uid: - - - target_id: 1 - title: - - - value: 'Thunder, the Drupal distribution for professional publishing' - created: - - - value: 1600163163 - promote: - - - value: true - sticky: - - - value: false - revision_translation_affected: - - - value: true - moderation_state: - - - value: unpublished - path: - - - alias: /thunder-drupal-distribution-professional-publishing - langcode: en - pathauto: 1 - publish_state: - - - value: _none - unpublish_state: - - - value: _none - field_channel: - - - entity: 120b4c9c-82e5-4fe9-97b0-da6fefb9b5f3 - field_paragraphs: - - - entity: - _meta: - version: '1.0' - entity_type: paragraph - uuid: bc281376-68d4-4311-90c8-2872a810ae53 - bundle: text - default_langcode: en - default: - status: - - - value: true - created: - - - value: 1600163458 - behavior_settings: - - - value: { } - revision_translation_affected: - - - value: true - field_text: - - - value: "

Thunder is the Drupal 8 distribution for professional publishing. Thunder was designed by Hubert Burda Media and released as open-source software under the GNU General Public License in 2016. As members of the Thunder community, publishers, partners, and developers build custom extensions and share them with the community to further enhance Thunder.

\r\n\r\n

Thunder consists of the current Drupal functionality, lots of handpicked publisher-centric modules with custom enhancements (our own Thunder Admin Theme, the Paragraphs module, the Media Entity module and lots more), and an environment which makes it easy to install, deploy and add new functionality (e.g. the Thunder Updater).

\r\n\r\n

To learn more about Thunder projects, read these case studies: German magazine Mein Schöner Garten (Gardening Magazine for Hubert Burda Media), US magazine American Heritage (American Heritage Magazine Migration – Drupal 8), and Serbian television and radio station PannonRTV (News portal for media house – PannonRTV).

\r\n" - format: basic_html - - - entity: - _meta: - version: '1.0' - entity_type: paragraph - uuid: 20043ff5-c610-47d2-9305-178a0c88d2ec - bundle: pinterest - default_langcode: en - default: - status: - - - value: true - created: - - - value: 1600163473 - behavior_settings: - - - value: { } - revision_translation_affected: - - - value: true - field_media: - - - entity: 8656ff5b-a9a5-49e4-a8e8-0d7c5bc2678b - - - entity: - _meta: - version: '1.0' - entity_type: paragraph - uuid: 1d7d8be7-2cd9-451f-8bdf-8b84c64dd221 - bundle: text - default_langcode: en - default: - status: - - - value: true - created: - - - value: 1600163484 - behavior_settings: - - - value: { } - revision_translation_affected: - - - value: true - field_text: - - - value: "

About the idea:

\r\n\r\n

We at the Thunder Core Team believe that publishers do not compete with each other through technology, but rather through content and brands. That is why the German publisher Hubert Burda Media established the Thunder community which aims to join forces among media companies by sharing code and innovation power. The goal is to innovate faster and spend less money overall by working together.

\r\n\r\n

The Thunder community’s core product is the open-source content management system Thunder. Community members develop useful modules, use them for their own purposes and share them with the community by publishing them under the GNU General Public License. Neither Hubert Burda Media nor the other publishers in the community charge anyone for their contributions.

\r\n\r\n

Any company publishing content professionally is welcome as a member of the Thunder community - both as user and as contributor. Anyone can join by contributing to the distribution. The usefulness and richness of Thunder’s functionality directly benefit from the number of contributors.

\r\n" - format: basic_html - - - entity: - _meta: - version: '1.0' - entity_type: paragraph - uuid: fdfbc78e-f5be-4e40-a9cf-ba3201a3c3fa - bundle: link - default_langcode: en - default: - status: - - - value: true - created: - - - value: 1600163505 - behavior_settings: - - - value: { } - revision_translation_affected: - - - value: true - field_link: - - - uri: 'https://thunder.org/' - title: 'Visit thunder.org' - options: { } - - - entity: - _meta: - version: '1.0' - entity_type: paragraph - uuid: 3596a508-42ab-4030-92aa-28f7ae3c1877 - bundle: text - default_langcode: en - default: - status: - - - value: true - created: - - - value: 1600163529 - behavior_settings: - - - value: { } - revision_translation_affected: - - - value: true - field_text: - - - value: "

Why Drupal was chosen: 

\r\n\r\n

For Burda, Drupal is the content management platform of choice. It is a free and open-source content-management framework written in PHP and distributed under the GNU General Public License.

\r\n\r\n

The standard Drupal core already provides the essential features, e.g. user management, menu management, RSS feeds, taxonomy, page layout customization, and system administration. It is easily adaptable and extensible with thousands of modules provided by a global community of users and developers. In addition, developers at Hubert Burda Media have had previous good experiences with Drupal. Drupal is therefore a tried and tested basis.

\r\n" - format: basic_html - - - entity: - _meta: - version: '1.0' - entity_type: paragraph - uuid: d3bcd37c-c7ac-4d00-a7d2-d85bed1112f2 - bundle: quote - default_langcode: en - default: - status: - - - value: true - created: - - - value: 1600163636 - behavior_settings: - - - value: { } - revision_translation_affected: - - - value: true - field_text: - - - value: "

\"Since we get a lot from the Drupal community, we give our best to contribute back, e.g. by fixing the bugs we find through automated tests and by supporting Drupal events and code sprints with developer time, talks, and sponsoring.\"

\r\n" - format: basic_html - - - entity: - _meta: - version: '1.0' - entity_type: paragraph - uuid: 0b132944-aa92-4649-9602-96354787a8c1 - bundle: link - default_langcode: en - default: - status: - - - value: true - created: - - - value: 1600163651 - behavior_settings: - - - value: { } - revision_translation_affected: - - - value: true - field_link: - - - uri: 'https://www.drupal.org/case-study/thunder-the-drupal-8-distribution-for-professional-publishing' - title: 'Read the case study at drupal.org' - options: { } - field_seo_title: - - - value: 'Thunder, the Drupal distribution for professional publishing' - field_tags: - - - entity: d6de25c8-c089-4b62-b69a-d43dfee83492 - - - entity: bdaf83bd-2f64-4b35-a458-2e1ac0fbf4f9 - field_teaser_media: - - - entity: df43ad97-ab4f-4f15-84c0-f10009b8fdb0 - field_teaser_text: - - - value: 'Thunder is the Drupal distribution for professional publishing. Thunder was designed by Hubert Burda Media and released as open-source software under the GNU General Public License in 2016. As members of the Thunder community, publishers, partners, and developers build custom extensions and share them with the community to further enhance Thunder.' diff --git a/modules/thunder_demo/content/node/383b2b08-01be-464d-8cfb-a265d2fd46b9.yml b/modules/thunder_demo/content/node/383b2b08-01be-464d-8cfb-a265d2fd46b9.yml deleted file mode 100644 index bf52866bd..000000000 --- a/modules/thunder_demo/content/node/383b2b08-01be-464d-8cfb-a265d2fd46b9.yml +++ /dev/null @@ -1,194 +0,0 @@ -_meta: - version: '1.0' - entity_type: node - uuid: 383b2b08-01be-464d-8cfb-a265d2fd46b9 - bundle: article - default_langcode: en - depends: - 120b4c9c-82e5-4fe9-97b0-da6fefb9b5f3: taxonomy_term - 9c2cafe0-3345-4cd3-ad3c-2d8ff85b9db5: media - f9eb68a8-9bc1-4209-a7a0-fa72cbffecf6: taxonomy_term - 593c8619-b941-4bcb-93ef-0574cbbb49ad: taxonomy_term - 34478597-153e-4b96-b275-4de573e1116c: media -default: - revision_uid: - - - target_id: 1 - status: - - - value: true - uid: - - - target_id: 1 - title: - - - value: 'Thunder worldwide' - created: - - - value: 1580723753 - promote: - - - value: true - sticky: - - - value: false - revision_translation_affected: - - - value: true - moderation_state: - - - value: published - path: - - - alias: /celebrating-20-certified-thunder-integrators - langcode: en - pathauto: 1 - publish_state: - - - value: _none - unpublish_state: - - - value: _none - field_channel: - - - entity: 120b4c9c-82e5-4fe9-97b0-da6fefb9b5f3 - field_paragraphs: - - - entity: - _meta: - version: '1.0' - entity_type: paragraph - uuid: 5ba05849-b4b3-4c24-83a4-1556d3b9b8e6 - bundle: text - default_langcode: en - default: - status: - - - value: true - created: - - - value: 1600160244 - behavior_settings: - - - value: { } - revision_translation_affected: - - - value: true - field_text: - - - value: "

The Thunder community keeps growing and growing! In December we welcomed our 20th Certified Thunder Integrator and we would like to use this occasion to provide you a short update.

\r\n\r\n

Our 20 Certified Thunder Integrators are based in a total of 55 cities in 21 countries. In Germany alone there are 18 cities in which Thunder experts are based. Those located furthest away from Munich (where Thunder originated) are Valuebound in San Jose, California (9,458km) and Netnode in Chiang-Mai, Thailand (8,279km).

\r\n" - format: basic_html - - - entity: - _meta: - version: '1.0' - entity_type: paragraph - uuid: 3cf67f3f-f42d-4e1d-b9a3-2b2d2c53846b - bundle: text - default_langcode: en - default: - status: - - - value: true - created: - - - value: 1600160252 - behavior_settings: - - - value: { } - revision_translation_affected: - - - value: true - field_text: - - - value: "

More than 634 employees work at our CTIs. If one were to add up the time spent registered on drupal.org it would amount to more than 3000 years of Drupal experience!

\r\n\r\n

We ourselves do not even know how many Thunder sites there are in total. As an open source product, anyone can download, use and change our distribution without our knowledge. On drupal.org more than 700 sites report using Thunder. Our CTIs have by themselves created more than 85 Thunder websites and share their experiences with the community.

\r\n" - format: basic_html - - - entity: - _meta: - version: '1.0' - entity_type: paragraph - uuid: d363da33-ab13-4188-a9e3-11504db06553 - bundle: image - default_langcode: en - default: - status: - - - value: true - created: - - - value: 1600160270 - behavior_settings: - - - value: { } - revision_translation_affected: - - - value: true - field_image: - - - entity: 9c2cafe0-3345-4cd3-ad3c-2d8ff85b9db5 - - - entity: - _meta: - version: '1.0' - entity_type: paragraph - uuid: 0787147f-3a78-4067-a186-4bec131c9f24 - bundle: text - default_langcode: en - default: - status: - - - value: true - created: - - - value: 1600160338 - behavior_settings: - - - value: { } - revision_translation_affected: - - - value: true - field_text: - - - value: "

About our CTI program
\r\nCertified Thunder Integrators (CTI) are IT consultancies, developers, agencies, and similar IT professionals with proven knowledge and practical experience in managing and implementing successful Thunder projects. CTIs need to be certified by the Thunder Core Team. They can help you to implement your Thunder site.

\r\n" - format: basic_html - - - entity: - _meta: - version: '1.0' - entity_type: paragraph - uuid: ecea85e2-cc41-48a7-94b0-2924096c2cc6 - bundle: link - default_langcode: en - default: - status: - - - value: true - created: - - - value: 1600160348 - behavior_settings: - - - value: { } - revision_translation_affected: - - - value: true - field_link: - - - uri: 'https://thunder.org/ctis' - title: 'Learn more about our Certified Thunder Integrators' - options: { } - field_seo_title: - - - value: 'Celebrating 20 Certified Thunder Integrators' - field_tags: - - - entity: f9eb68a8-9bc1-4209-a7a0-fa72cbffecf6 - - - entity: 593c8619-b941-4bcb-93ef-0574cbbb49ad - field_teaser_media: - - - entity: 34478597-153e-4b96-b275-4de573e1116c - field_teaser_text: - - - value: 'The Thunder community keeps growing and growing! In December we welcomed our 20th Certified Thunder Integrator and we would like to use this occasion to provide you a short update.' diff --git a/modules/thunder_demo/content/node/bd5c625d-9074-40f8-99e4-91923ffdeb84.yml b/modules/thunder_demo/content/node/bd5c625d-9074-40f8-99e4-91923ffdeb84.yml deleted file mode 100644 index 8b1727c3a..000000000 --- a/modules/thunder_demo/content/node/bd5c625d-9074-40f8-99e4-91923ffdeb84.yml +++ /dev/null @@ -1,243 +0,0 @@ -_meta: - version: '1.0' - entity_type: node - uuid: bd5c625d-9074-40f8-99e4-91923ffdeb84 - bundle: article - default_langcode: en - depends: - 120b4c9c-82e5-4fe9-97b0-da6fefb9b5f3: taxonomy_term - f8ad6684-b110-4751-98b8-dbf9310f91b0: media - d6de25c8-c089-4b62-b69a-d43dfee83492: taxonomy_term - 4fe40f59-8f90-4fc6-8630-fadea609a619: taxonomy_term - 31457b1e-0122-46a6-b3ab-edfa0c4b801a: media -default: - revision_uid: - - - target_id: 1 - status: - - - value: true - uid: - - - target_id: 1 - title: - - - value: 'Burda launches worldwide coalition of industry partners and releases open-source online CMS Thunder' - created: - - - value: 1458200750 - promote: - - - value: true - sticky: - - - value: false - revision_translation_affected: - - - value: true - moderation_state: - - - value: published - path: - - - alias: /burda-released-open-source-cms-thunder - langcode: en - pathauto: 1 - publish_state: - - - value: _none - unpublish_state: - - - value: _none - field_channel: - - - entity: 120b4c9c-82e5-4fe9-97b0-da6fefb9b5f3 - field_paragraphs: - - - entity: - _meta: - version: '1.0' - entity_type: paragraph - uuid: 8ae4ce87-50e0-4d29-9480-fea3124c4b81 - bundle: text - default_langcode: en - default: - status: - - - value: true - created: - - - value: 1600152523 - behavior_settings: - - - value: { } - revision_translation_affected: - - - value: true - field_text: - - - value: "

As of today, international media group Hubert Burda Media makes it's Drupal 8 based Thunder Content Management System (CMS) available online as a free open-source platform for use and further development by other publishers. With this move, Burda joins forces with sector and industry partners, aiming to develop the best open-source CMS platform for publishers. Burda believes that in today’s world, successful media offerings result from the right combination of quality journalism and technology expertise. For the media company, this meant future-proofing its Content Management System by developing Thunder, an open-source system based on leading-edge technology, now available online free of charge for use and continuous development.

\r\n" - format: basic_html - - - entity: - _meta: - version: '1.0' - entity_type: paragraph - uuid: 98805d6a-92f6-41d9-92cf-519ac5d96ad7 - bundle: image - default_langcode: en - default: - status: - - - value: true - created: - - - value: 1600153544 - behavior_settings: - - - value: { } - revision_translation_affected: - - - value: true - field_image: - - - entity: f8ad6684-b110-4751-98b8-dbf9310f91b0 - - - entity: - _meta: - version: '1.0' - entity_type: paragraph - uuid: e5cb5587-0f9e-44f1-9c63-babdfd8a84f7 - bundle: text - default_langcode: en - default: - status: - - - value: true - created: - - - value: 1600153597 - behavior_settings: - - - value: { } - revision_translation_affected: - - - value: true - field_text: - - - value: "

Board Member Philipp Welte explains, “Success in this new era of publishing can only be achieved by keeping up with the lightning speed of technological progress. No publisher in the world can do this alone, so we have to leave our historical silos behind, share our knowledge, cross traditional boundaries and learn how to work in a much more connected way. Thunder symbolizes this new era of collaboration: We have invested a lot of development effort, but we are not keeping the results for ourselves. We are putting it out there, to the core of our industry, so everyone can contribute to its continued enhancement. Our aim is to work with our partners to develop the best technology foundation for publishing the best journalistic content.”

\r\n" - format: basic_html - - - entity: - _meta: - version: '1.0' - entity_type: paragraph - uuid: fb9a345b-bb21-4439-80f8-acca2c97cad6 - bundle: text - default_langcode: en - default: - status: - - - value: true - created: - - - value: 1600153602 - behavior_settings: - - - value: { } - revision_translation_affected: - - - value: true - field_text: - - - value: "

Worldwide collaboration — The Thunder Coalition
\r\nWith the launch of the new CMS, Burda is creating a worldwide coalition for publishers, industry partners, and developers. At the core of the community is a team of publishing experts and developers led by Ingo Rübe, CTO for Burda’s German publishing operations, and initiator of Thunder. This team will also be responsible for coordinating the continuous development and enhancement of Thunder. Ingo Rübe explains,“A CMS is no longer a strategic differentiator, especially in the consumer’s perception. Thunder helps media companies break free from expensive legacy systems, and focus on the development of their content and brands.”

\r\n" - format: basic_html - - - entity: - _meta: - version: '1.0' - entity_type: paragraph - uuid: fa26621a-16c2-4a33-b2fa-a4ab9c749b93 - bundle: text - default_langcode: en - default: - status: - - - value: true - created: - - - value: 1600153621 - behavior_settings: - - - value: { } - revision_translation_affected: - - - value: true - field_text: - - - value: "

Innovative CMS technology enriched by custom features for publishers
\r\nThunder is a Drupal distribution based on the new version 8 of the framework, released in November 2015. It features a range of publisher-centric Drupal modules with custom enhancements, including tools for interactive content, IVW counting tools, single sign-on (SSO) and Responsive Web Design (RWD). With RWD, the layout of both the front-end (websites) and the back-end (authoring tool) automatically adjusts to each user’s device. Thunder users also benefit from a whole range of channel- and feature-specific enhancements through collaboration with industry partners.

\r\n\r\n

Burda have already migrated their Playboy and Instyle brands to Thunder. Florian Boitin, Editor-in-Chief of Playboy, remembers: “Over six months ago, we were one of the first brands to integrate Thunder into our editorial workflows, and we are proud to have laid the foundations for something really big. We were able to contribute to the design of Thunder by leveraging our long-standing experience of different CMS platforms. We are now reaping the benefits of further development efforts by the community, both in terms of technology and content.”

\r\n" - format: basic_html - - - entity: - _meta: - version: '1.0' - entity_type: paragraph - uuid: 86b58a17-82ce-4c69-bb2b-e087b6e756a6 - bundle: text - default_langcode: en - default: - status: - - - value: true - created: - - - value: 1600153630 - behavior_settings: - - - value: { } - revision_translation_affected: - - - value: true - field_text: - - - value: "

Thunder was released under the GNU General Public License, meaning the software can be used and enhanced by all users free of charge.

\r\n" - format: basic_html - - - entity: - _meta: - version: '1.0' - entity_type: paragraph - uuid: 086756da-61ba-4447-9727-e6ddca14e0e7 - bundle: text - default_langcode: en - default: - status: - - - value: true - created: - - - value: 1600153642 - behavior_settings: - - - value: { } - revision_translation_affected: - - - value: true - field_text: - - - value: "

For more information about Thunder, available extensions, and the Thunder Coalition, visit www.thunder.org.

\r\n" - format: basic_html - field_seo_title: - - - value: 'Burda released open source CMS Thunder' - field_tags: - - - entity: d6de25c8-c089-4b62-b69a-d43dfee83492 - - - entity: 4fe40f59-8f90-4fc6-8630-fadea609a619 - field_teaser_media: - - - entity: 31457b1e-0122-46a6-b3ab-edfa0c4b801a - field_teaser_text: - - - value: 'As of today, international media group Hubert Burda Media makes its Drupal 8 based Thunder Content Management System (CMS) available online as a free open-source platform for use and further development by other publishers. With this move, Burda joins forces with sector and industry partners, aiming to develop the best open-source CMS platform for publishers. Burda believes that in today’s world, successful media offerings result from the right combination of quality journalism and technology expertise. For the media company, this meant future-proofing its Content Management System by developing Thunder, an open-source system based on leading-edge technology, now available online free of charge for use and continuous development.' diff --git a/modules/thunder_demo/content/node/efc68dc1-649e-4ac8-ad95-78cd404f22a7.yml b/modules/thunder_demo/content/node/efc68dc1-649e-4ac8-ad95-78cd404f22a7.yml deleted file mode 100644 index 2f6f6f4cf..000000000 --- a/modules/thunder_demo/content/node/efc68dc1-649e-4ac8-ad95-78cd404f22a7.yml +++ /dev/null @@ -1,293 +0,0 @@ -_meta: - version: '1.0' - entity_type: node - uuid: efc68dc1-649e-4ac8-ad95-78cd404f22a7 - bundle: article - default_langcode: en - depends: - a67c24e2-5974-42b4-9210-f918a0f230fd: taxonomy_term - 765b7c3f-e70c-4cdb-85c6-d0d329919eec: media - 83294827-6a30-43ff-b515-b73e86e8205a: media - 1348d981-3575-4c32-81b4-ae758e43d38e: media - 17e3275e-aed4-4780-be08-89e839a0be5f: media - c8b73bd1-1e4b-477e-96d9-580be6dab017: media - 4fe40f59-8f90-4fc6-8630-fadea609a619: taxonomy_term - 038587f9-39d8-4441-a848-a62b54b08a84: taxonomy_term - 81392281-1bf3-4929-b887-c8096ebc01e4: media -default: - revision_uid: - - - target_id: 1 - status: - - - value: true - uid: - - - target_id: 1 - title: - - - value: 'Thunder Day 2018 - cool, global and forward-looking' - created: - - - value: 1543400800 - promote: - - - value: true - sticky: - - - value: false - revision_translation_affected: - - - value: true - moderation_state: - - - value: published - path: - - - alias: /thunder-day-2018-community-meets-berlin - langcode: en - pathauto: 1 - publish_state: - - - value: _none - unpublish_state: - - - value: _none - field_channel: - - - entity: a67c24e2-5974-42b4-9210-f918a0f230fd - field_paragraphs: - - - entity: - _meta: - version: '1.0' - entity_type: paragraph - uuid: 1a382549-f7f3-4828-af64-37ba9cdf7804 - bundle: text - default_langcode: en - default: - status: - - - value: true - created: - - - value: 1600162115 - behavior_settings: - - - value: { } - revision_translation_affected: - - - value: true - field_text: - - - value: "

The future of Online Publishing was the central focus at Thunder Day 2018. Experts from media, IT, and open source not only shared their experiences of the media world with Online Publishing but also provided food for thought regarding future trends, expectations, and challenges. Particular attention was given to the question as to how income can be generated in the future from sources other than classic advertising. Numerous speakers were present, from companies such as Microsoft, Gruner + Jahr, Axel Springer, and BOTlabs who provided insights into their business models and work with Open Source systems such as Drupal or Thunder.

\r\n" - format: basic_html - - - entity: - _meta: - version: '1.0' - entity_type: paragraph - uuid: f3edfd03-ae49-433f-b8d2-827f34b70921 - bundle: video - default_langcode: en - default: - status: - - - value: true - created: - - - value: 1600162421 - behavior_settings: - - - value: { } - revision_translation_affected: - - - value: true - field_video: - - - entity: 765b7c3f-e70c-4cdb-85c6-d0d329919eec - - - entity: - _meta: - version: '1.0' - entity_type: paragraph - uuid: 4e6d04fa-0fb3-45f7-ad76-d85d46e91625 - bundle: text - default_langcode: en - default: - status: - - - value: true - created: - - - value: 1600162414 - behavior_settings: - - - value: { } - revision_translation_affected: - - - value: true - field_text: - - - value: "

With over 150 participants from 10 countries, 23 well selected speakers and a creative presenter, we pulled off a fantastic event for networking, discussions and further learing. There was a bit of everything at the event: content-rich presentations, spontaneous discussions, exciting interactive activitities, entertainment, artistic elements and a very cool location. A really lively atmosphere could be sensed, especially during the breaks and get-togeher in the evening.

\r\n" - format: basic_html - - - entity: - _meta: - version: '1.0' - entity_type: paragraph - uuid: 65714a95-fee2-4d5e-9169-1162d112b4fd - bundle: twitter - default_langcode: en - default: - status: - - - value: true - created: - - - value: 1600162455 - behavior_settings: - - - value: { } - revision_translation_affected: - - - value: true - field_media: - - - entity: 83294827-6a30-43ff-b515-b73e86e8205a - - - entity: - _meta: - version: '1.0' - entity_type: paragraph - uuid: daa345c4-0d3d-41c3-9727-0bf785dd79e3 - bundle: text - default_langcode: en - default: - status: - - - value: true - created: - - - value: 1600333523 - behavior_settings: - - - value: { } - revision_translation_affected: - - - value: true - field_text: - - - value: "

All participants grouped themselves into intense conversations and discussed presentation topics. Business cards were swapped, plans discussed and there was much head-nodding and laughing as old friends met again. Each of the participants contributed to the success of the event, like individual pieces of a jigsaw puzzle. And that is exactly what Thunder Day is all about, a global platform bringing together experts from IT, Media and Open Source, enabling them to talk about topics as equals, network and discuss new ideas and perspectives.

\r\n" - format: basic_html - - - entity: - _meta: - version: '1.0' - entity_type: paragraph - uuid: d2b920ca-a456-471e-945f-4fd62ef63a9c - bundle: twitter - default_langcode: en - default: - status: - - - value: true - created: - - - value: 1600162464 - behavior_settings: - - - value: { } - revision_translation_affected: - - - value: true - field_media: - - - entity: 1348d981-3575-4c32-81b4-ae758e43d38e - - - entity: - _meta: - version: '1.0' - entity_type: paragraph - uuid: 38808a60-4437-41bb-ad69-63d93e3daa17 - bundle: text - default_langcode: en - default: - status: - - - value: true - created: - - - value: 1600333527 - behavior_settings: - - - value: { } - revision_translation_affected: - - - value: true - field_text: - - - value: "

Thunder Day 2018 ran from 26th to 27th November in Berlin and was a great success for us. We are very pleased with the positive feedback from participants which will enable us to strengthen our plans with Thunder and Thunder Day. We are already looking forward to seeing even more old friends and new faces!

\r\n" - format: basic_html - - - entity: - _meta: - version: '1.0' - entity_type: paragraph - uuid: d60bec6f-7f08-4645-a5f5-6d558f4c4094 - bundle: twitter - default_langcode: en - default: - status: - - - value: true - created: - - - value: 1600162474 - behavior_settings: - - - value: { } - revision_translation_affected: - - - value: true - field_media: - - - entity: 17e3275e-aed4-4780-be08-89e839a0be5f - - - entity: - _meta: - version: '1.0' - entity_type: paragraph - uuid: 61167910-2695-45ec-b942-0292d7a3d272 - bundle: gallery - default_langcode: en - default: - status: - - - value: true - created: - - - value: 1600162291 - behavior_settings: - - - value: { } - revision_translation_affected: - - - value: true - field_media: - - - entity: c8b73bd1-1e4b-477e-96d9-580be6dab017 - field_seo_title: - - - value: 'Thunder Day 2018 Community meets in Berlin' - field_tags: - - - entity: 4fe40f59-8f90-4fc6-8630-fadea609a619 - - - entity: 038587f9-39d8-4441-a848-a62b54b08a84 - field_teaser_media: - - - entity: 81392281-1bf3-4929-b887-c8096ebc01e4 - field_teaser_text: - - - value: 'The future of Online Publishing was the central focus at Thunder Day 2018. Experts from media, IT, and open source not only shared their experiences of the media world with Online Publishing but also provided food for thought regarding future trends, expectations, and challenges. Particular attention was given to the question as to how income can be generated in the future from sources other than classic advertising.' diff --git a/modules/thunder_demo/content/taxonomy_term/038587f9-39d8-4441-a848-a62b54b08a84.yml b/modules/thunder_demo/content/taxonomy_term/038587f9-39d8-4441-a848-a62b54b08a84.yml deleted file mode 100644 index 2e3d83f68..000000000 --- a/modules/thunder_demo/content/taxonomy_term/038587f9-39d8-4441-a848-a62b54b08a84.yml +++ /dev/null @@ -1,27 +0,0 @@ -_meta: - version: '1.0' - entity_type: taxonomy_term - uuid: 038587f9-39d8-4441-a848-a62b54b08a84 - bundle: tags - default_langcode: en -default: - status: - - - value: true - name: - - - value: ThunderDay - weight: - - - value: 0 - parent: - - - target_id: 0 - revision_translation_affected: - - - value: true - path: - - - alias: /thunderday - langcode: en - pathauto: 1 diff --git a/modules/thunder_demo/content/taxonomy_term/120b4c9c-82e5-4fe9-97b0-da6fefb9b5f3.yml b/modules/thunder_demo/content/taxonomy_term/120b4c9c-82e5-4fe9-97b0-da6fefb9b5f3.yml deleted file mode 100644 index 4ca77467a..000000000 --- a/modules/thunder_demo/content/taxonomy_term/120b4c9c-82e5-4fe9-97b0-da6fefb9b5f3.yml +++ /dev/null @@ -1,27 +0,0 @@ -_meta: - version: '1.0' - entity_type: taxonomy_term - uuid: 120b4c9c-82e5-4fe9-97b0-da6fefb9b5f3 - bundle: channel - default_langcode: en -default: - status: - - - value: true - name: - - - value: News - weight: - - - value: 0 - parent: - - - target_id: 0 - revision_translation_affected: - - - value: true - path: - - - alias: /news - langcode: en - pathauto: 1 diff --git a/modules/thunder_demo/content/taxonomy_term/4fe40f59-8f90-4fc6-8630-fadea609a619.yml b/modules/thunder_demo/content/taxonomy_term/4fe40f59-8f90-4fc6-8630-fadea609a619.yml deleted file mode 100644 index 5a0334f62..000000000 --- a/modules/thunder_demo/content/taxonomy_term/4fe40f59-8f90-4fc6-8630-fadea609a619.yml +++ /dev/null @@ -1,27 +0,0 @@ -_meta: - version: '1.0' - entity_type: taxonomy_term - uuid: 4fe40f59-8f90-4fc6-8630-fadea609a619 - bundle: tags - default_langcode: en -default: - status: - - - value: true - name: - - - value: Open-Source - weight: - - - value: 0 - parent: - - - target_id: 0 - revision_translation_affected: - - - value: true - path: - - - alias: /open-source - langcode: en - pathauto: 1 diff --git a/modules/thunder_demo/content/taxonomy_term/593c8619-b941-4bcb-93ef-0574cbbb49ad.yml b/modules/thunder_demo/content/taxonomy_term/593c8619-b941-4bcb-93ef-0574cbbb49ad.yml deleted file mode 100644 index 70667eeca..000000000 --- a/modules/thunder_demo/content/taxonomy_term/593c8619-b941-4bcb-93ef-0574cbbb49ad.yml +++ /dev/null @@ -1,27 +0,0 @@ -_meta: - version: '1.0' - entity_type: taxonomy_term - uuid: 593c8619-b941-4bcb-93ef-0574cbbb49ad - bundle: tags - default_langcode: en -default: - status: - - - value: true - name: - - - value: Business - weight: - - - value: 0 - parent: - - - target_id: 0 - revision_translation_affected: - - - value: true - path: - - - alias: /business - langcode: en - pathauto: 1 diff --git a/modules/thunder_demo/content/taxonomy_term/a67c24e2-5974-42b4-9210-f918a0f230fd.yml b/modules/thunder_demo/content/taxonomy_term/a67c24e2-5974-42b4-9210-f918a0f230fd.yml deleted file mode 100644 index 0392abd0e..000000000 --- a/modules/thunder_demo/content/taxonomy_term/a67c24e2-5974-42b4-9210-f918a0f230fd.yml +++ /dev/null @@ -1,27 +0,0 @@ -_meta: - version: '1.0' - entity_type: taxonomy_term - uuid: a67c24e2-5974-42b4-9210-f918a0f230fd - bundle: channel - default_langcode: en -default: - status: - - - value: true - name: - - - value: Events - weight: - - - value: 0 - parent: - - - target_id: 0 - revision_translation_affected: - - - value: true - path: - - - alias: /events - langcode: en - pathauto: 1 diff --git a/modules/thunder_demo/content/taxonomy_term/bdaf83bd-2f64-4b35-a458-2e1ac0fbf4f9.yml b/modules/thunder_demo/content/taxonomy_term/bdaf83bd-2f64-4b35-a458-2e1ac0fbf4f9.yml deleted file mode 100644 index 1aa848025..000000000 --- a/modules/thunder_demo/content/taxonomy_term/bdaf83bd-2f64-4b35-a458-2e1ac0fbf4f9.yml +++ /dev/null @@ -1,27 +0,0 @@ -_meta: - version: '1.0' - entity_type: taxonomy_term - uuid: bdaf83bd-2f64-4b35-a458-2e1ac0fbf4f9 - bundle: tags - default_langcode: en -default: - status: - - - value: true - name: - - - value: 'Case Study' - weight: - - - value: 0 - parent: - - - target_id: 0 - revision_translation_affected: - - - value: true - path: - - - alias: /case-study - langcode: en - pathauto: 1 diff --git a/modules/thunder_demo/content/taxonomy_term/d6de25c8-c089-4b62-b69a-d43dfee83492.yml b/modules/thunder_demo/content/taxonomy_term/d6de25c8-c089-4b62-b69a-d43dfee83492.yml deleted file mode 100644 index 41499dcb6..000000000 --- a/modules/thunder_demo/content/taxonomy_term/d6de25c8-c089-4b62-b69a-d43dfee83492.yml +++ /dev/null @@ -1,27 +0,0 @@ -_meta: - version: '1.0' - entity_type: taxonomy_term - uuid: d6de25c8-c089-4b62-b69a-d43dfee83492 - bundle: tags - default_langcode: en -default: - status: - - - value: true - name: - - - value: CMS - weight: - - - value: 0 - parent: - - - target_id: 0 - revision_translation_affected: - - - value: true - path: - - - alias: /cms - langcode: en - pathauto: 1 diff --git a/modules/thunder_demo/content/taxonomy_term/f9eb68a8-9bc1-4209-a7a0-fa72cbffecf6.yml b/modules/thunder_demo/content/taxonomy_term/f9eb68a8-9bc1-4209-a7a0-fa72cbffecf6.yml deleted file mode 100644 index 264fad357..000000000 --- a/modules/thunder_demo/content/taxonomy_term/f9eb68a8-9bc1-4209-a7a0-fa72cbffecf6.yml +++ /dev/null @@ -1,27 +0,0 @@ -_meta: - version: '1.0' - entity_type: taxonomy_term - uuid: f9eb68a8-9bc1-4209-a7a0-fa72cbffecf6 - bundle: tags - default_langcode: en -default: - status: - - - value: true - name: - - - value: Agency - weight: - - - value: 0 - parent: - - - target_id: 0 - revision_translation_affected: - - - value: true - path: - - - alias: /agency - langcode: en - pathauto: 1 diff --git a/modules/thunder_demo/thunder_demo.info.yml b/modules/thunder_demo/thunder_demo.info.yml deleted file mode 100644 index 16bf7d8f6..000000000 --- a/modules/thunder_demo/thunder_demo.info.yml +++ /dev/null @@ -1,88 +0,0 @@ -name: Thunder Demo -type: module -description: Provide demo content. -package: Thunder Optional -core_version_requirement: ^10 -dependencies: - - default_content:default_content - - drupal:tour - - drupal:help -default_content: - taxonomy_term: - - 120b4c9c-82e5-4fe9-97b0-da6fefb9b5f3 - - a67c24e2-5974-42b4-9210-f918a0f230fd - - d6de25c8-c089-4b62-b69a-d43dfee83492 - - 4fe40f59-8f90-4fc6-8630-fadea609a619 - - f9eb68a8-9bc1-4209-a7a0-fa72cbffecf6 - - 593c8619-b941-4bcb-93ef-0574cbbb49ad - - 038587f9-39d8-4441-a848-a62b54b08a84 - - bdaf83bd-2f64-4b35-a458-2e1ac0fbf4f9 - node: - - bd5c625d-9074-40f8-99e4-91923ffdeb84 - - 383b2b08-01be-464d-8cfb-a265d2fd46b9 - - 17317a9b-c007-4933-99af-57d53e416f5d - - efc68dc1-649e-4ac8-ad95-78cd404f22a7 - - 2f23186e-dcc3-4feb-997b-db72410afe16 - media: - - 31457b1e-0122-46a6-b3ab-edfa0c4b801a - - f8ad6684-b110-4751-98b8-dbf9310f91b0 - - 9c2cafe0-3345-4cd3-ad3c-2d8ff85b9db5 - - 34478597-153e-4b96-b275-4de573e1116c - - dd45a3e7-ce93-41e8-bffe-2020211c2b5b - - 5d0b5981-3c35-4160-9ada-f4f7eaf4f607 - - 2584ef49-8f36-424e-9338-c95d5cf933dc - - 6296b850-fea3-458d-8782-3177f48e2cbe - - 6fcc43bd-c374-4528-b180-ebe94c8fa6a5 - - d5170777-5d26-423a-8710-e009d47ee979 - - 4f4039ab-65a3-4ade-8d2c-6553b21cad58 - - 5734cc42-787a-464e-9836-38ffa34aad7f - - d43954eb-0edc-4aa8-a842-d99f413020be - - 40bbeede-898b-4574-a239-95aae6112a3d - - 40bbeede-898b-4574-a239-95aae6112a3d - - 1c1b3c83-3f91-4110-871c-d612d7df1bb6 - - f34ecf01-3fce-45f6-b507-77cd9104cf96 - - c8b73bd1-1e4b-477e-96d9-580be6dab017 - - 765b7c3f-e70c-4cdb-85c6-d0d329919eec - - 83294827-6a30-43ff-b515-b73e86e8205a - - 1348d981-3575-4c32-81b4-ae758e43d38e - - 17e3275e-aed4-4780-be08-89e839a0be5f - - 81392281-1bf3-4929-b887-c8096ebc01e4 - - d3782161-f7b3-4e8c-a24f-f2545bb2d474 - - 13b6536a-f317-4e74-a71f-66e5c61ede65 - - 486e2773-81e6-4685-80c0-9e4f26c214a1 - - 916d281a-6097-4e26-8805-e5392ac53a0b - - 3c47da20-33f3-4bf2-bee0-bd7669d8e7aa - - 8656ff5b-a9a5-49e4-a8e8-0d7c5bc2678b - - df43ad97-ab4f-4f15-84c0-f10009b8fdb0 - file: - - c5a9a50a-20bc-48ee-89ff-6465c194f2be - - 94a2a059-a253-45a1-83e0-79fcb32133c0 - - 87530ce0-8006-4773-9ec2-98bb85c21d30 - - 50b7f62a-6c43-4ae8-b1fc-2675520fdea7 - - 0044429b-3571-4ccf-b6a1-4e7d2c5c035a - - b08692d3-765c-4422-b001-0aee9b7ea103 - - 82aa86b9-645c-4310-a7b6-9770240663b3 - - 911771d1-f8d5-4d62-ba77-e7040682c07e - - 587ac846-1c3a-4345-8995-122683d5d2a9 - - 4533f02b-f720-46cb-acbb-84255b302ef1 - - 2387f16f-68c8-4297-a998-954c7ef66dc0 - - de73fbb6-9126-4eee-844f-cd4622653f83 - - d2fd4235-9c0d-46bf-a649-e812be18cfbb - - 5abbb82e-76f3-405d-b8e3-e2d890197aba - - 4fc96a05-40d7-4651-9c87-b06f2fcaf95a - - 9a9a6603-6dba-4f33-b467-fd81bcc6a3a4 - - 038a612e-d318-4959-b23b-ee2978cd1f6c - - 7e9e28dd-35a6-48eb-bfdd-5578b250cf8c - - 63c664f3-d403-4509-b90c-b945a69431b5 - crop: - - 73fa0ae6-47b2-4719-b2fd-09dabca808d0 - - 35877b5f-300a-4456-9e8c-760a4c1c37b5 - menu_link_content: - - 41f139d4-f1e7-4cc1-8dd6-37f86c682f49 - - f3cace00-efd5-421d-8366-d7975754e737 - - 5e0b1d08-af33-4a38-b3ba-f4cf85b7315a - - 132c827a-1b30-4f67-a8df-8f41b38797fe - - 9c2a1fbf-a72f-4ca3-b27d-e216788aa6cc - - 61c592ad-015b-43e3-8cd0-03f2fdb1893d - - ddba293d-6e01-4f47-aa16-6a84fbe592da - diff --git a/modules/thunder_demo/thunder_demo.install b/modules/thunder_demo/thunder_demo.install deleted file mode 100644 index 46550e186..000000000 --- a/modules/thunder_demo/thunder_demo.install +++ /dev/null @@ -1,64 +0,0 @@ -loadEntityByUuid('node', 'efc68dc1-649e-4ac8-ad95-78cd404f22a7'); - - \Drupal::configFactory()->getEditable('tour.tour.content-paragraphs') - ->set('routes.0.route_params.node', $node->id()) - ->save(); - - $tour = \Drupal::configFactory()->getEditable('tour.tour.content-add'); - $article_last = $tour->get('tips.article-last.body'); - $article_last = str_replace('/node/7/edit', $node->toUrl('edit-form')->toString(), $article_last); - $tour->set('tips.article-last.body', $article_last)->save(); - - foreach (['editor', 'restricted_editor', 'seo'] as $role) { - if ($role = Role::load($role)) { - $role->grantPermission('access tour') - ->save(); - } - } - } -} - -/** - * Implements hook_uninstall(). - * - * Handling following steps: - * - Remove all tours from configuration. - */ -function thunder_demo_uninstall(): void { - /** @var \Drupal\Core\Config\ConfigFactoryInterface $configFactory */ - $configFactory = \Drupal::configFactory(); - $logger = \Drupal::logger('thunder_demo'); - - $tours = [ - 'tour.tour.content-add', - 'tour.tour.content-list', - 'tour.tour.content-paragraphs', - 'tour.tour.homepage', - ]; - - foreach ($tours as $tour) { - try { - $configFactory->getEditable($tour)->delete(); - } - catch (\Exception $e) { - $logger->warning(sprintf('Unable to uninstall tour: %s.', $tour)); - } - } -} diff --git a/modules/thunder_demo/thunder_demo.module b/modules/thunder_demo/thunder_demo.module deleted file mode 100644 index 895efbaf3..000000000 --- a/modules/thunder_demo/thunder_demo.module +++ /dev/null @@ -1,43 +0,0 @@ - ['olivero'], - 'content-add' => ['gin'], - 'content-list' => ['gin'], - 'content-paragraphs' => ['gin'], - ]; - - // Remove tours that are not whitelisted for provided themes. - $activeTheme = \Drupal::theme()->getActiveTheme()->getName(); - $tourId = $entity->id(); - if (isset($tourThemeMapping[$tourId]) && !in_array($activeTheme, $tourThemeMapping[$tourId])) { - $tour_tips = []; - } -} - -/** - * Implements hook_js_alter(). - */ -function thunder_demo_js_alter(array &$javascript, AttachedAssetsInterface $assets): void { - // Put the tour at the very end, because it depends on elements that are - // generated by JS. - if (isset($javascript['core/modules/tour/js/tour.js'])) { - $javascript['core/modules/tour/js/tour.js']['weight'] = 1; - } -} diff --git a/tests/src/Traits/ThunderTestTrait.php b/tests/src/Traits/ThunderTestTrait.php index b244072ee..c42b21048 100644 --- a/tests/src/Traits/ThunderTestTrait.php +++ b/tests/src/Traits/ThunderTestTrait.php @@ -20,15 +20,6 @@ */ trait ThunderTestTrait { - /** - * {@inheritdoc} - */ - protected function installParameters(): array { - $parameters = parent::installParameters(); - $parameters['forms']['thunder_module_configure_form'] = ['install_modules_thunder_demo' => NULL]; - return $parameters; - } - /** * {@inheritdoc} */