public function addStakeholderTypeAction()
 {
     $form = new Form_Iadmin_Stakeholders();
     if ($this->_request->isPost()) {
         if ($form->isValid($this->_request->getPost())) {
             $stakeholder_types = new StakeholderTypes();
             $stakeholder_types->setStakeholderTypeName($form->stakeholder_type->getValue());
             $createdBy = $this->_em->getRepository('Users')->find($this->_userid);
             $stakeholder_types->setCreatedBy($createdBy);
             $modifiedBy = $this->_em->getRepository('Users')->find($this->_userid);
             $stakeholder_types->setModifiedBy($modifiedBy);
             $this->_em->persist($stakeholder_types);
             $this->_em->flush();
         }
     }
     $this->_redirect("/iadmin/manage-stakeholders/stakeholder-types");
 }
 public function getCreatedBy()
 {
     $this->__load();
     return parent::getCreatedBy();
 }
 public function getModifiedBy()
 {
     $this->__load();
     return parent::getModifiedBy();
 }