From ebf76795da6cb23eb26bfdddc664dd49a87effed Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Sun, 18 Feb 2018 21:28:46 +0400 Subject: Change the location of the functions for working with the cache --- locallib.php | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) (limited to 'locallib.php') diff --git a/locallib.php b/locallib.php index a787f12..54d2bd4 100644 --- a/locallib.php +++ b/locallib.php @@ -24,6 +24,50 @@ defined("MOODLE_INTERNAL") || die(); +/** + * Get data from the cache by key. + * + * @param string $eventname + * @return array + */ +function local_webhooks_cache_get($eventname) { + $cache = cache::make("local_webhooks", "webhooks_services"); + return $cache->get($eventname); +} + +/** + * Update the data in the cache by key. + * + * @param string $eventname + * @param array $recordlist + * @return boolean + */ +function local_webhooks_cache_set($eventname, $recordlist = array()) { + $cache = cache::make("local_webhooks", "webhooks_services"); + return $cache->set($eventname, $recordlist); +} + +/** + * Delete the data in the cache by key. + * + * @param string $eventname + * @return boolean + */ +function local_webhooks_cache_delete($eventname) { + $cache = cache::make("local_webhooks", "webhooks_services"); + return $cache->delete($eventname); +} + +/** + * Clear the cache of the plugin. + * + * @return boolean + */ +function local_webhooks_cache_delete_all() { + $cache = cache::make("local_webhooks", "webhooks_services"); + return $cache->purge(); +} + /** * Description of functions of the call of events * -- cgit v1.2.3