Exemplo n.º 1
0
 /**
  * comments
  */
 public function RenderAlert()
 {
     //        $m = new Digitalus_View_Message();
     $m = Digitalus_View_Message::getInstance();
     //        $ve = new Digitalus_View_Error();
     $ve = Digitalus_View_Error::getInstance();
     $alert = false;
     $message = null;
     $verror = null;
     $alert = null;
     if ($ve->hasErrors()) {
         //            $verror = '<p>'. $this->view->getTranslation('The following errors have occurred') . ':</p>' . $this->view->HtmlList($ve->get());
         //            $alert .= '<fieldset><legend>'. $this->view->getTranslation('Errors') . '</legend>' . $verror . '</fieldset>';
         $verror = "<div class='title'>Errors !!!</div>" . $this->view->HtmlList($ve->get(), false, array('class' => 'box-item'));
         $alert .= "<div class='box-error'>" . $verror . '</div>';
     }
     if ($m->hasMessage()) {
         //            $message .= '<p>' . $m->get() . '</p>';
         //            $alert   .= '<fieldset><legend>'. $this->view->getTranslation('Message') . '</legend>' . $message . '</fieldset>';
         $alert .= "<div class='tag-info'>{$m->get()}</div>";
     }
     //after this renders it clears the errors and messages
     $m->clear();
     $ve->clear();
     return $alert;
 }
Exemplo n.º 2
0
 function init()
 {
     $this->_errors = Digitalus_View_Error::getInstance();
     $this->_message = Digitalus_View_Message::getInstance();
     $this->_cacheManager = Digitalus_Cache_Manager::getInstance();
     $this->view->currentModuleUrl = $this->_currentModuleUrl = $this->_request->getBaseUrl() . '/' . $this->_request->getModuleName();
     $this->view->currentControllerUrl = $this->_currentControllerUrl = $this->_currentModuleUrl . '/' . $this->_request->getControllerName();
     $this->view->currentActionUrl = $this->_currentActionUrl = $this->_currentControllerUrl . '/' . $this->_request->getActionName();
     //set Helper
     //		$this->view->addHelperPath('Isc/View/Helper', 'Isc_View_Helper');
     //		$this->view->addHelperPath('Isc/View/Helper/IscFrom', 'Isc_View_Helper_IscFrom');
 }
Exemplo n.º 3
0
 public function updatePassword($user_id, $password, $confirmationRequire = true, $confirmation = null)
 {
     $errors = Digitalus_View_Error::getInstance();
     $message = Digitalus_View_Message::getInstance();
     $person = $this->find($user_id)->current();
     if ($person) {
         $person->password = md5($password);
         $result = $person->save();
         $message->add('Updated password successfully !');
         return $result;
     } else {
         $errors->add('User not exists.');
         return false;
     }
 }
Exemplo n.º 4
0
 public function updateFromPost()
 {
     $this->_action = 'update';
     $this->_loadPost();
     //try to run the before method
     if (method_exists($this, 'before')) {
         $this->before();
     }
     if (method_exists($this, 'beforeUpdate')) {
         $this->beforeUpdate();
     }
     $this->validateData();
     //        $id = $this->_data['id'];
     //        unset($this->_data['id']);
     if (!$this->_errors->hasErrors()) {
         //there were no errors validating the data
         $id = $this->_data[$this->_primaryKey];
         unset($this->_data[$this->_primaryKey]);
         //            $this->update($this->_data, 'id=' . $id);
         $number_rows_updated = $this->update($this->_data, $this->_primaryKey . '=' . $id);
         $this->_message = Digitalus_View_Message::getInstance();
         $this->_message->add('Updated current row database successfully !!!');
         //try to run the after method
         if (method_exists($this, 'after')) {
             $this->after($id);
         }
         //return $this->find($id)->current(); //i like to return the whole data object
         return $number_rows_updated;
     }
     return false;
 }