Repository URL to install this package:
|
Version:
1.48.1 ▾
|
<?php
namespace Drupal\customeredit\Element;
use Drupal\Core\Render\Element\RenderElement;
/**
* Provides a responsive background element.
*
* @RenderElement("ct")
*/
class CT extends RenderElement {
/**
* {@inheritdoc}
*/
public function getInfo() {
return [
'#theme' => 'customer_text',
];
}
}