Sembra che tu abbia una versione OC 3.0.2.xo superiore.
Nei tuoi $this->data
della Classe evento, hai un evento registrato a cui manca un parametro di azione.
$this->data[] = array(
'trigger' => $trigger,
'action' => $action, // <-- this must be an Action Object with a method execute()
'priority' => $priority
);
Tutti gli eventi vengono registrati tramite il register()
metodo che richiede esplicitamente che un oggetto Action venga passato come parametro.
Poiché l'errore punta a "Call to undefined method Action::execute()", posso presumere che tu abbia un problema con la classe action.
Molto probabilmente devi controllare le Modifiche del system/engine/action.php
nel tuo system/storage/modifications
.
Potrebbe essere che il metodo execute()
è scomparso o in qualche modo danneggiato.
Debug
prova a var_dump $value per vedere cosa c'è:
public function trigger($event, array $args = array()) {
foreach ($this->data as $value) {
//log out the $value before the error to see if the Action object is actually there and see what trigger causes this.
var_dump($value);
if (preg_match('/^' . str_replace(array('\*', '\?'), array('.*', '.'), preg_quote($value['trigger'], '/')) . '/', $event)) {
$result = $value['action']->execute($this->registry, $args);
if (!is_null($result) && !($result instanceof Exception)) {
return $result;
}
}
}
}
Spero che questo aiuti