Skip to content

Commit 5f6f369

Browse files
jalpeshpaul-m
jalpesh
authored andcommitted
Issue #2889474 by jalpesh: Convert FieldExampleController to use DescriptionTemplateTrait
1 parent 7350b03 commit 5f6f369

File tree

2 files changed

+23
-9
lines changed

2 files changed

+23
-9
lines changed

field_example/src/Controller/FieldExampleController.php

+11-9
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,23 @@
22

33
namespace Drupal\field_example\Controller;
44

5-
use Drupal\Core\Controller\ControllerBase;
5+
use Drupal\examples\Utility\DescriptionTemplateTrait;
66

77
/**
8-
* Returns responses for dblog routes.
8+
* Controller for field example description page.
9+
*
10+
* This class uses the DescriptionTemplateTrait to display text we put in the
11+
* templates/description.html.twig file.
912
*/
10-
class FieldExampleController extends ControllerBase {
13+
class FieldExampleController {
14+
15+
use DescriptionTemplateTrait;
1116

1217
/**
13-
* A simple page to explain to the developer what to do.
18+
* {@inheritdoc}
1419
*/
15-
public function description() {
16-
return array(
17-
'#markup' => t(
18-
"The Field Example provides a field composed of an HTML RGB value, like #ff00ff. To use it, add the field to a content type."),
19-
);
20+
protected function getModuleName() {
21+
return 'field_example';
2022
}
2123

2224
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{#
2+
3+
Description text for the Field Example.
4+
5+
#}
6+
7+
{% trans %}
8+
9+
<p>The Field Example provides a field composed of an HTML RGB value, like
10+
<code>#ff00ff</code>. To use it, add the field to a content type.</p>
11+
12+
{% endtrans %}

0 commit comments

Comments
 (0)