Added activity type help block

This commit is contained in:
Naomi 2018-10-25 14:55:42 +01:00
parent 7c30d9d02e
commit 78a44718fb
1 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,30 @@
<?php
namespace Drupal\opencase\Plugin\Block;
use Drupal\Core\Block\BlockBase;
/**
* Provides a Block with some help text about actor type fields
*
* @Block(
* id = "activity_type_help",
* admin_label = @Translation("Activity Type Help"),
* category = @Translation("Help"),
* )
*/
class ActivityTypeHelp extends BlockBase {
/**
* {@inheritdoc}
*/
public function build() {
return array(
'#markup' => "
<h3>All activity types have default fields such as description and time taken. Other fields can be added and managed here.</h3>
"
);
}
}