description.html.twig
Same filename in this branch
- 8.x-1.x menu_example/templates/description.html.twig
- 8.x-1.x form_api_example/templates/description.html.twig
- 8.x-1.x js_example/templates/description.html.twig
- 8.x-1.x page_example/templates/description.html.twig
- 8.x-1.x pager_example/templates/description.html.twig
- 8.x-1.x block_example/templates/description.html.twig
- 8.x-1.x tabledrag_example/templates/description.html.twig
- 8.x-1.x testing_example/templates/description.html.twig
- 8.x-1.x tour_example/templates/description.html.twig
- 8.x-1.x config_entity_example/templates/description.html.twig
- 8.x-1.x tests/modules/examples_description_test/templates/description.html.twig
- 8.x-1.x phpunit_example/templates/description.html.twig
- 8.x-1.x render_example/templates/description.html.twig
- 8.x-1.x field_permission_example/templates/description.html.twig
- 8.x-1.x stream_wrapper_example/templates/description.html.twig
- 8.x-1.x ajax_example/templates/description.html.twig
- 8.x-1.x hooks_example/templates/description.html.twig
- 8.x-1.x field_example/templates/description.html.twig
Same filename in other branches
- 3.x modules/menu_example/templates/description.html.twig
- 3.x modules/form_api_example/templates/description.html.twig
- 3.x modules/js_example/templates/description.html.twig
- 3.x modules/page_example/templates/description.html.twig
- 3.x modules/node_type_example/templates/description.html.twig
- 3.x modules/pager_example/templates/description.html.twig
- 3.x modules/block_example/templates/description.html.twig
- 3.x modules/tabledrag_example/templates/description.html.twig
- 3.x modules/rest_example/templates/description.html.twig
- 3.x modules/testing_example/templates/description.html.twig
- 3.x modules/tour_example/templates/description.html.twig
- 3.x modules/config_entity_example/templates/description.html.twig
- 3.x modules/phpunit_example/templates/description.html.twig
- 3.x modules/render_example/templates/description.html.twig
- 3.x modules/field_permission_example/templates/description.html.twig
- 3.x modules/stream_wrapper_example/templates/description.html.twig
- 3.x modules/ajax_example/templates/description.html.twig
- 3.x modules/hooks_example/templates/description.html.twig
- 3.x modules/field_example/templates/description.html.twig
- 3.x tests/modules/examples_description_test/templates/description.html.twig
- 4.0.x modules/menu_example/templates/description.html.twig
- 4.0.x modules/form_api_example/templates/description.html.twig
- 4.0.x modules/js_example/templates/description.html.twig
- 4.0.x modules/page_example/templates/description.html.twig
- 4.0.x modules/node_type_example/templates/description.html.twig
- 4.0.x modules/pager_example/templates/description.html.twig
- 4.0.x modules/block_example/templates/description.html.twig
- 4.0.x modules/tabledrag_example/templates/description.html.twig
- 4.0.x modules/rest_example/templates/description.html.twig
- 4.0.x modules/testing_example/templates/description.html.twig
- 4.0.x modules/tour_example/templates/description.html.twig
- 4.0.x modules/config_entity_example/templates/description.html.twig
- 4.0.x modules/phpunit_example/templates/description.html.twig
- 4.0.x modules/render_example/templates/description.html.twig
- 4.0.x modules/field_permission_example/templates/description.html.twig
- 4.0.x modules/stream_wrapper_example/templates/description.html.twig
- 4.0.x modules/ajax_example/templates/description.html.twig
- 4.0.x modules/hooks_example/templates/description.html.twig
- 4.0.x modules/field_example/templates/description.html.twig
- 4.0.x tests/modules/examples_description_test/templates/description.html.twig
- 4.0.x modules/config_simple_example/templates/description.html.twig
{# Description text for the Node type Example. #} {% set content_type_path = path('entity.node_type.collection') %} {% set add_types = path ('node.type_add') %} {% trans %}Config Node Type Example is a basic example of defining a content type through configuration YAML files.
In this example we create two content types for Drupal 8, using only YAML files. Well, mostly only YAML files... One of our content types is locked, so the user can't delete it while the module is installed. For this we need a very tiny amount of support code.
You can observe these content types on the content type admin page.
The simplest way to author the per-type YAML files is to create the content types within Drupal and then take the YAML files from the configuration directory. Like this:
- Install Drupal 8.
- Create a new content type at {{ add_types }}. Let's call it 'Nifty Content Type'.
- Export the configuration from
admin/config/development/configuration
. Specific steps depending on needs, and decisions made during Drupal 8 beta. You'll see a file callednode.type.nifty_content_type.yml
. - Copy or move that file to your module's
config/install
directory, along with associated field and form yml files. - Remove the uuid information from the configuration files.
You can see some of these YAML files in this module's config/install
directory.
If you want to lock a content type created in this way, you'll have to implement hook_install()
and
hook_uninstall()
. In hook_install()
, you'll set the content type to be locked.
In hook_uninstall()
you'll set the content type to be unlocked.
Content types created in this way will remain available after the user has uninstalled the module. If you were to fail to set the content type as unlocked, the user would not be able to delete it.
This example is based on this change notification: https://drupal.org/node/2029519
{% endtrans %}File
-
node_type_example/
templates/ description.html.twig
View source
- {#
-
- Description text for the Node type Example.
-
- #}
-
-
- {% set content_type_path = path('entity.node_type.collection') %}
- {% set add_types = path ('node.type_add') %}
-
- {% trans %}
-
-
- <p>Config Node Type Example is a basic example of defining a content type through configuration YAML files.</p>
- <p>In this example we create two content types for Drupal 8, using only YAML files. Well, mostly only YAML files...
- One of our content types is locked, so the user can't delete it while the module is installed. For this we need
- a very tiny amount of support code.</p>
- <p>You can observe these content types on <a href= {{ content_type_path }}>the content type admin page</a>.</p>
- <p>The simplest way to author the per-type YAML files is to create the content types within Drupal and then take the
- YAML files from the configuration directory. Like this:</p>
- <ul>
- <li>Install Drupal 8.</li>
- <li>Create a new content type at {{ add_types }}. Let's call it 'Nifty Content Type'.</li>
- <li>Export the configuration from <code>admin/config/development/configuration</code>. Specific steps depending
- on needs, and decisions made during Drupal 8 beta. You'll see a file called
- <code>node.type.nifty_content_type.yml</code>.</li>
- <li>Copy or move that file to your module's <code>config/install</code> directory, along with associated field
- and form yml files.</li>
- <li>Remove the uuid information from the configuration files.</li>
- </ul>
- <p>You can see some of these YAML files in this module's <code>config/install</code> directory.</p>
- <p>If you want to lock a content type created in this way, you'll have to implement <code>hook_install()</code> and
- <code>hook_uninstall()</code>. In <code>hook_install()</code>, you'll set the content type to be locked.
- In <code>hook_uninstall()</code> you'll set the content type to be unlocked.</p>
- <p>Content types created in this way will remain available after the user has uninstalled the module.
- If you were to fail to set the content type as unlocked, the user would not be able to delete it.</p>
- <p>This example is based on this change notification: <a href="https://drupal.org/node/2029519">https://drupal.org/node/2029519</a></p>
-
- {% endtrans %}