
WWW::EmpireTheatres::Cinema - A class representing a cinema

# what films are playing?
for my $film ( @{ $cinemas->films } ) {
printf( "%s\n", $film->title );
}
# when is it playing?
for my $showtime ( @{ $cinema->showtimes( film => $film ) } ) {
printf( "%s\n", $showtime->datetime );
}

This class represents a cinema. You can find out what films playing and when.

Creates a new WWW::EmpireTheatres::Cinema object.
Find out when $film is playing @ $cinema.
Find out which films are playing at this cinema.
The name of the cinema.
The city where the cinema is located.
The province where the cinema is located
A link to the listing of films playing at this cinema.
The internal id used on the website.
The parent WWW::EmpireTheatres object.


Copyright 2007 by Brian Cassidy
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.