Thread Moo Attribute überschreiben (7 answers)
Opened by Kuerbis at 2015-02-01 14:58

renee
 2015-02-01 17:44
#179428 #179428
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
Code (perl): (dl )
1
2
3
4
5
6
7
8
9
10
    sub hallo {
        my( $self, $str, $ref ) = @_;

        $self->attr1( $ref->{attr1} ) if exists $ref->{attr1};
        $self->attr2( $ref->{attr2} ) if exists $ref->{attr2};

        return sprintf '%s : %s - %s', $str, $self->attr1, $self->attr2;
 
    }
}
OTRS-Erweiterungen (http://feature-addons.de/)
Frankfurt Perlmongers (http://frankfurt.pm/)
--

Unterlagen OTRS-Workshop 2012: http://otrs.perl-services.de/workshop.html
Perl-Entwicklung: http://perl-services.de/

View full thread Moo Attribute überschreiben