- Issue created by @daniel.pernold
- Merge request !68Add Attribute to predefine the module hook title → (Open) created by daniel.pernold
It is not very user-friendly to find the "Default cron handler" of a module just by the module name. It would be useful if the developer could override the title using an attribute.
Implement an attribute "UltimateCron" with a title.
namespace Drupal\ultimate_cron\Attribute;
use Attribute;
#[Attribute(Attribute::TARGET_FUNCTION)]
class UltimateCron {
public $title;
/**
* @param $title
*/
public function __construct($title) {
$this->title = $title;
}
/**
* @return array
*/
public function toArray(): array {
return [
'title' => $this->title,
];
}
}
/**
* Implements hook_cron().
*/
#[\Drupal\ultimate_cron\Attribute\UltimateCron(
title: new \Drupal\Core\StringTranslation\TranslatableMarkup('My fancy title'),
)]
function my_custom_module_cron() {
// do something
}
Active
2.0
Code