Revision d014938d
Von Tamino Steinert vor etwa 1 Jahr hinzugefügt
SL/Model/Record.pm | ||
---|---|---|
60 | 60 |
return $record; |
61 | 61 |
} |
62 | 62 |
|
63 |
sub get_record { |
|
64 |
my ($class, $type, $id) = @_; |
|
65 |
my $record_class = get_class_from_type($type); |
|
66 |
return $record_class->new(id => $id)->load; |
|
67 |
} |
|
68 |
|
|
63 | 69 |
sub new_from_workflow { |
64 | 70 |
my ($class, $source_object, $target_type, %flags) = @_; |
65 | 71 |
|
Auch abrufbar als: Unified diff
Model::Record: Funktion für das Laden von Records