File tree 5 files changed +10
-5
lines changed
5 files changed +10
-5
lines changed Original file line number Diff line number Diff line change 23
23
use Drupal \Core \Entity \EntityTypeManagerInterface ;
24
24
use Drupal \Core \Plugin \ContainerFactoryPluginInterface ;
25
25
use Drupal \Core \Render \Element \RenderElement ;
26
+ use Drupal \Core \Render \Element \RenderElementBase ;
26
27
use Symfony \Component \DependencyInjection \ContainerInterface ;
27
28
28
29
/**
29
30
* Provides an element for listing Apigee entities.
30
31
*
31
32
* @RenderElement("apigee_entity_list")
32
33
*/
33
- class ApigeeEntityListElement extends RenderElement implements ContainerFactoryPluginInterface {
34
+ class ApigeeEntityListElement extends RenderElementBase implements ContainerFactoryPluginInterface {
34
35
35
36
/**
36
37
* The entity type manager.
Original file line number Diff line number Diff line change 21
21
namespace Drupal \apigee_edge \Element ;
22
22
23
23
use Drupal \Core \Render \Element \RenderElement ;
24
+ use Drupal \Core \Render \Element \RenderElementBase ;
24
25
25
26
/**
26
27
* Provides a secret element.
27
28
*
28
29
* @RenderElement("apigee_secret")
29
30
*/
30
- class ApigeeSecret extends RenderElement {
31
+ class ApigeeSecret extends RenderElementBase {
31
32
32
33
/**
33
34
* {@inheritdoc}
Original file line number Diff line number Diff line change 21
21
namespace Drupal \apigee_edge \Element ;
22
22
23
23
use Drupal \Core \Render \Element \RenderElement ;
24
+ use Drupal \Core \Render \Element \RenderElementBase ;
24
25
25
26
/**
26
27
* Provides an app credential element.
27
28
*
28
29
* @RenderElement("app_credential")
29
30
*/
30
- class AppCredentialElement extends RenderElement {
31
+ class AppCredentialElement extends RenderElementBase {
31
32
32
33
/**
33
34
* {@inheritdoc}
Original file line number Diff line number Diff line change 21
21
namespace Drupal \apigee_edge \Element ;
22
22
23
23
use Drupal \Core \Render \Element \RenderElement ;
24
+ use Drupal \Core \Render \Element \RenderElementBase ;
24
25
25
26
/**
26
27
* Provides a product listing element for app credentials.
27
28
*
28
29
* @RenderElement("app_credential_product_list")
29
30
*/
30
- class AppCredentialProductListElement extends RenderElement {
31
+ class AppCredentialProductListElement extends RenderElementBase {
31
32
32
33
/**
33
34
* {@inheritdoc}
Original file line number Diff line number Diff line change 20
20
namespace Drupal \apigee_edge \Element ;
21
21
22
22
use Drupal \Core \Render \Element \RenderElement ;
23
+ use Drupal \Core \Render \Element \RenderElementBase ;
23
24
24
25
/**
25
26
* Provides a status property element.
26
27
*
27
28
* @RenderElement("status_property")
28
29
*/
29
- class StatusPropertyElement extends RenderElement {
30
+ class StatusPropertyElement extends RenderElementBase {
30
31
31
32
/**
32
33
* Indicator status configuration id: OK.
You can’t perform that action at this time.
0 commit comments