public function activateAction()
 {
     $pageProxy = new SxCms_Page_Proxy();
     $page = $pageProxy->getPageById(11);
     $this->view->page = $page;
     $currentSubscribeId = $this->_getParam('id', null);
     $subscribeProxy = new SxModule_Subscribe_Proxy();
     $subscribe = $subscribeProxy->getById($currentSubscribeId);
     $subscribe->activate();
     $this->_helper->layout->setLayout('full');
 }