Beispiel #1
0
 protected function postDispatch()
 {
     $cache_flag = Model_Numista_Logger::CACHE_NOT;
     if ($this->data->isForceCache()) {
         $cache_flag = Model_Numista_Logger::CACHE_FORCE;
     } else {
         if ($this->data->isDataFromCache()) {
             $cache_flag = Model_Numista_Logger::CACHE_YES;
         }
     }
     Model_Numista_Logger::logMethodCall($this->is_error, $cache_flag);
     parent::postDispatch();
 }