_etsis_cache_init ()

Sets up object cache global scope and assigns it based on the type of caching system used.

Source file: app/functions/global-function.php

View source


Used by

Uses


Source

function _etsis_cache_init()
{
    $app = \Liten\Liten::getInstance();

    $driver = $app->hook->apply_filter('etsis_cache_driver', 'file');
    $cache = new \app\src\Core\Cache\etsis_Object_Cache($driver);
    return $cache;
}


Changelog

  • Since: eduTrac SIS 6.2.0

User Contributed Notes

You must log in before being able to contribute a note.