Beispiel #1
0
 function edit(Default_Model_Users $model)
 {
     $this->name->setValue($model->getName());
     $this->name->setLabel(Zend_Registry::get('translate')->_('admin_name'));
     $this->accountName->setValue($model->getAccountName());
     $this->accountName->setLabel(Zend_Registry::get('translate')->_('admin_account_name'));
     $this->email->setValue($model->getEmail());
     $this->email->setLabel(Zend_Registry::get('translate')->_('admin_email'));
     $emailValidateDbNotExists = $this->email->getValidator('Zend_Validate_Db_NoRecordExists');
     $emailValidateDbNotExists->setExclude(array('field' => 'email', 'value' => $model->getEmail()));
     $this->idRole->setValue($model->getIdRole());
     $this->idRole->setLabel(Zend_Registry::get('translate')->_('admin_level'));
     $this->add->setValue(Zend_Registry::get('translate')->_('admin_edit_user'));
 }
Beispiel #2
0
 public function save(Default_Model_Users $value)
 {
     $auth = Zend_Auth::getInstance();
     $authAccount = $auth->getStorage()->read();
     if (null != $authAccount) {
         if (null != $authAccount->getId()) {
             $user = new Default_Model_Users();
             $user->find($authAccount->getId());
             $data = array('idRole' => '1', 'accountName' => $value->getAccountName(), 'email' => $value->getEmail(), 'name' => $value->getName(), 'password' => $value->getPassword(), 'code' => $value->getCode(), 'status' => $value->getStatus(), 'deleted' => '0');
             if (null === ($id = $value->getId())) {
                 $data['created'] = new Zend_Db_Expr('NOW()');
                 $id = $this->getDbTable()->insert($data);
                 //logs	action done
                 $user_name = $user->name;
                 $action_done = ' ' . $user_name . ' a adaugat membrul  ' . $value->getName() . ' ';
                 Needs_Logs::DbLogTracking($user->id, $id, 'users', 'adaugare', $action_done);
                 //end logs action done
             } else {
                 $data['modified'] = new Zend_Db_Expr('NOW()');
                 $this->getDbTable()->update($data, array('id = ?' => $id));
                 //logs	action done
                 $user_name = $user->name;
                 $action_done = ' ' . $user_name . ' a editat membrul  ' . $value->getName() . ' ';
                 Needs_Logs::DbLogTracking($user->id, $id, 'users', 'editare', $action_done);
                 //end logs action done
             }
             return $id;
         }
     }
 }