/[Frey]/trunk/lib/App/RoomReservation.pm
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Annotation of /trunk/lib/App/RoomReservation.pm

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1133 - (hide annotations)
Tue Jun 30 15:10:55 2009 UTC (14 years, 10 months ago) by dpavlin
File size: 685 byte(s)
make classes immutable and remove moose droppings to make Perl::Critic::Moose happy
1 dpavlin 1086 package App::RoomReservation;
2     use Moose;
3    
4     extends 'Frey';
5     with 'Frey::Web';
6    
7 dpavlin 1098 use lib 'lib';
8 dpavlin 1095 use App::RoomReservation::Room;
9 dpavlin 1086
10 dpavlin 1098 sub dsn { 'DBI:Pg:dbname=room-reservation' }
11    
12     our $dbh;
13     sub dbh {
14     my ($self) = @_;
15    
16     return $dbh if defined $dbh;
17    
18     $dbh = DBI->connect( $self->dsn, '', '', { RaiseError => 1 } ) || die $DBI::errstr;
19     $dbh->do( qq{ set client_encoding='utf-8' } ) if $self->dsn =~ m{pg}i;
20    
21     return $dbh;
22     }
23    
24 dpavlin 1086 sub as_markup {
25     my ($self) = @_;
26    
27 dpavlin 1095 App::RoomReservation::Room->new->room_markup
28 dpavlin 1098 . qq|<a target="App::RoomReservation::Reservation" href="/App::RoomReservation::Reservation/create_as_markup">seat reservation</a>|
29     ;
30 dpavlin 1086 }
31    
32 dpavlin 1133 __PACKAGE__->meta->make_immutable;
33     no Moose;
34    
35 dpavlin 1086 1;

  ViewVC Help
Powered by ViewVC 1.1.26