public function activeAction()
 {
     $id = (int) $this->getRequest()->getParam('id');
     $content = new App_Model_Departments();
     $content->statusDepartment($id);
     return $this->_redirect('/admin/department');
 }