コード例 #1
0
 public function doClean()
 {
     $deleted = ShowtimeService::cleanShowdates();
     echo "Showtimes deleted: ", $deleted, "\n";
     $cleaned = ShowtimeService::cleanPbis();
     echo "PBI deleted: ", $cleaned, "\n";
     exit;
 }
コード例 #2
0
 public function doMovieTheatres()
 {
     $movieId = (int) $this->_request->getQueryParam('movie_id');
     $this->result['movie_theatres'] = $movieId && $this->geocode ? $this->showtimeService->getTheatres($this->geocode, $this->currentDate, $movieId, true) : array();
 }