Provide an attribute for module hooks to set e.g. the title

Created on 15 February 2025, about 2 months ago

Problem/Motivation

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.

Proposed resolution

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,
    ];
  }

}

Example Usage

/**
 * Implements hook_cron().
 */
#[\Drupal\ultimate_cron\Attribute\UltimateCron(
  title: new \Drupal\Core\StringTranslation\TranslatableMarkup('My fancy title'),
)]
function my_custom_module_cron() {
  // do something
}
Feature request
Status

Active

Version

2.0

Component

Code

Created by

🇦🇹Austria daniel.pernold

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Merge Requests

Comments & Activities

Production build 0.71.5 2024