Zend Framework-where do calls to my methods go? Controller of Model?
- by Joel
Hi guys,
I'm confused about exactly what I should have in my controller and what in my method.
Specifically, I have this in the action method:
public function upcomingshowsAction()
{
$gcal = $this->_validateCalendarConnection();
$uncleanedFeedArray = $this->_getCalendarFeed($gcal);
$finishedFeedArray =…