/** * Get a page of Event objects * @param string $page - optional 'nextLink' returned from a previous getEvents() call * @return array - Up to 50 Images and a link to the next page if one exists */ public function getEvents($page=null){ $EventsCollection = new EventsCollection($this->CTCTRequest); return $EventsCollection->getEvents($page); }