Thread Variable als Modulname (4 answers)
Opened by roooot at 2008-03-14 16:24

roooot
 2008-03-14 17:58
#107067 #107067
User since
2008-03-03
276 Artikel
BenutzerIn
[default_avatar]
Ich muss das schon in die while Schleife reinpacken?

Code (perl): (dl )
1
2
3
4
5
6
7
8
9
10
        opendir DIR, './module';
        while( my $datei = readdir DIR ){
                my $module = $datei;
                $module =~ s!\./module/!!;
                $module =~ s!\.pm$!!;
                $module =~ s!/!::!g;
                 
                $xml .= '<modul name="'.$datei.'" version="'. $module->VERSION .'" />'
        }
        closedir DIR;


Das ergibt dann nämlich folgenden Fehler:
Code: (dl )
Can't call method "VERSION" without a package or object reference at module/admin/tools.pm line 212.
Viele Grüße :)

View full thread Variable als Modulname