Thread HTC und Loops in Loops (10 answers)
Opened by MartinR at 2007-07-23 13:22

renee
 2007-07-23 14:08
#405 #405
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
ungetestet:

Code (perl): (dl )
1
2
3
4
5
6
7
8
9
10
11
use Data::Tabulate;

my $tab = Data::Tabulate->new();
$tab->min_columns( 7 );
$tab->max_columns( 7 );

my @array = map{ {TAGESZAHL => $_}  }( 1 .. Days_in_Month($month,$year) );

@array = map{ {WOCHE => $_} } $tab->tabulate(@array);

$tmpl->param( ALLE_WOCHEN => \@array );


Du musst allerdings bedenken, dass nicht jeder Monat mit Montag anfÃĪngt...

Edit: Man muss ja auch noch tabulate machen...\n\n

<!--EDIT|renee|1185185711-->
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 HTC und Loops in Loops