This repository has been archived on 2022-07-12. You can view files and clone it, but cannot push or open issues or pull requests.
opencase/src/Plugin/Block/ActorTypeHelp.php

31 lines
572 B
PHP

<?php
namespace Drupal\opencase\Plugin\Block;
use Drupal\Core\Block\BlockBase;
/**
* Provides a Block with some help text about actor type fields
*
* @Block(
* id = "actor_type_help",
* admin_label = @Translation("Actor Type Help"),
* category = @Translation("Help"),
* )
*/
class ActorTypeHelp extends BlockBase {
/**
* {@inheritdoc}
*/
public function build() {
return array(
'#markup' => "
<h3>All person types have contact details fields by default. Other fields can be added and managed here.</h3>
"
);
}
}