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/ActivityTypeHelp.php

31 lines
599 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 = "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>
"
);
}
}