/**
  * Process action method
  *
  * @return void
  */
 public function process()
 {
     if ($this->request->isPost()) {
         $category = new Model\Category();
         $category->process($this->request->getPost());
     }
     $this->sess->setRequestValue('saved', true);
     $this->redirect(BASE_PATH . APP_URI . '/categories/view/' . $this->request->getPost('category_id'));
 }