Esclusione esecuzione hook inutilizzati
This commit is contained in:
parent
a5034e8d0b
commit
6ac418e27f
|
@ -52,21 +52,23 @@ abstract class CachedManager extends Manager
|
|||
{
|
||||
$hook = self::getHook();
|
||||
|
||||
// Rimozione cache precedente
|
||||
$database = database();
|
||||
$database->delete('zz_hook_cache', [
|
||||
'hook_id' => $hook->id,
|
||||
]);
|
||||
if( !empty($hook) ){
|
||||
// Rimozione cache precedente
|
||||
$database = database();
|
||||
$database->delete('zz_hook_cache', [
|
||||
'hook_id' => $hook->id,
|
||||
]);
|
||||
|
||||
// Aggiunta del risultato come cache
|
||||
$cache = json_encode($results);
|
||||
$database->insert('zz_hook_cache', [
|
||||
'hook_id' => $hook->id,
|
||||
'results' => $cache,
|
||||
]);
|
||||
// Aggiunta del risultato come cache
|
||||
$cache = json_encode($results);
|
||||
$database->insert('zz_hook_cache', [
|
||||
'hook_id' => $hook->id,
|
||||
'results' => $cache,
|
||||
]);
|
||||
|
||||
self::$cache = $results;
|
||||
self::$is_cached = null;
|
||||
self::$cache = $results;
|
||||
self::$is_cached = null;
|
||||
}
|
||||
}
|
||||
|
||||
public static function isCached()
|
||||
|
|
Loading…
Reference in New Issue