Classes for displaying Sthlm Filmfestival programmes
Introduction, (*2)
CFilms is a class for displaying screening schedules and details for the scheduled films at Stockholm Filmfestival. It's main purpose is to be used together with ANAX-MVC, but can also be used on its own., (*3)
License, (*4)
This software is free software and carries a MIT license., (*5)
How to install, (*6)
To install the package, add the row below to your composer.json file:, (*7)
"require": { "rolb/sfilm": "dev-master" }, (*8)
To add CFilms:, (*9)
$films = new rolb\CFilm\CFilms("apikey", "date");, (*10)
To get schedule for a certain date:, (*11)
$html = $films->program("apikey", "date");, (*12)
To get individual film details ("filmid" must be initially fetched with $films->program):, (*13)
$html = $films->filmInfo("filmid");, (*14)
A APIkey from Stockholm Filmfestival is needed and is sent out by email!, (*15)