ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
HelpScreenId.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
28 #[\Attribute(\Attribute::TARGET_CLASS)]
30 {
31  public function __construct(private string $screen_id)
32  {
33  // $screen id can only constist of lowercase letters and underscores. Otherwise, a InvalidArgumentException is thrown.
34  if (!preg_match('/^[a-z0-9_]+$/', $screen_id)) {
35  throw new \InvalidArgumentException('Screen name must only consist of lowercase letters, numbers and underscores.');
36  }
37  }
38 
39  public function getScreenId(): string
40  {
41  return $this->screen_id;
42  }
43 }
__construct(private string $screen_id)