Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

ghenry's scratchpad

by ghenry (Vicar)
on Mar 29, 2005 at 13:32 UTC ( [id://443123]=scratchpad: print w/replies, xml ) Need Help??

How to produce random page titles in Catalyst:

=head2 auto # # A list titles, which will be # randomly used for each page title # # i.e. <title>[% page_title %]</title> # =cut sub auto : Private { my ( $self, $c ) = @_; my @titles = qw{ Test1 Test2 Test3 Test4 }; my $rand_title = $titles[ rand @titles ]; $c->stash->{page_title} = $rand_title; return 1; }
Put this in your MyApp.pm

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others exploiting the Monastery: (3)
As of 2024-03-19 05:43 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found