/** Get account data
  * @access public
  * @param int $id
  * @return string
  */
 public function getAccounts($id)
 {
     $accts = new OnlineAccounts();
     return $accts->getAllAccounts($id);
 }
 /** Display index pages for the individual
  */
 public function indexAction()
 {
     $services = new OnlineAccounts();
     $this->view->services = $services->getAllAccounts((int) $this->getIdentityForForms());
 }
 /** Display index pages for the individual
  * @return void
  * @access public
  */
 public function indexAction()
 {
     $this->view->services = $this->_accounts->getAllAccounts((int) $this->getIdentityForForms());
 }