/**
  * Index action method
  *
  * @return void
  */
 public function index()
 {
     $this->prepareView('social/index.phtml');
     $social = new Model\Social();
     if ($this->request->isPost()) {
         $social->save($this->request->getPost());
         $this->sess->setRequestValue('saved', true);
         $this->redirect(BASE_PATH . APP_URI . '/social');
     } else {
         $this->view->title = 'Social Media';
         $this->view->socialConfig = $social->getConfig();
     }
     $this->send();
 }