/**
  * Show followers
  */
 public function followersAction()
 {
     $Connections = new Application_Model_Connections();
     // flush if user not found
     if (!$this->profile || $this->profile->type !== 'user') {
         $this->redirect('');
     }
     $this->prepareProfile($this->profile);
     $Connections->page_number = $this->preparePagination($this->view->sidebar_followers_count);
     $this->view->users = $Connections->getFollowers($this->profile->id);
     $this->render('userlist');
 }