Revision ca9e9f88
Von Sven Schöling vor fast 13 Jahren hinzugefügt
SL/Template/Plugin/L.pm | ||
---|---|---|
13 | 13 |
# Do not use these id's to store information across requests. |
14 | 14 |
my $_id_sequence = int rand 1e7; |
15 | 15 |
sub _tag_id { |
16 |
return $_id_sequence = ($_id_sequence + 1) % 1e7;
|
|
16 |
return "id_" . ( $_id_sequence = ($_id_sequence + 1) % 1e7 );
|
|
17 | 17 |
} |
18 | 18 |
} |
19 | 19 |
|
Auch abrufbar als: Unified diff
Layouthelper: Automatisch generierte ids müssen mit einem alphabetischen Zeichen anfangen.