mirror of
https://github.com/moodle/moodle.git
synced 2025-08-04 16:36:37 +02:00
MDL-42299 course: management category expansion improvements
This commit is contained in:
parent
d5de874727
commit
df460b5a23
6 changed files with 73 additions and 8 deletions
|
@ -196,4 +196,13 @@ $definitions = array(
|
|||
'mode' => cache_store::MODE_APPLICATION,
|
||||
'simplekeys' => true,
|
||||
),
|
||||
// This is the session user selections cache.
|
||||
// It's a special cache that is used to record user selections that should persist for the lifetime of the session.
|
||||
// Things such as which categories the user has expanded can be stored here.
|
||||
// It uses simple keys and simple data, please ensure all uses conform to those two constraints.
|
||||
'userselections' => array(
|
||||
'mode' => cache_store::MODE_SESSION,
|
||||
'simplekeys' => true,
|
||||
'simpledata' => true
|
||||
),
|
||||
);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue