MDL-25290 cache: Plugins are now standard and strings tidied
This commit is contained in:
+4
-4
@@ -43,14 +43,14 @@ $string['cachelock_file_default'] = 'Default file locking';
|
||||
$string['cachestores'] = 'Cache stores';
|
||||
$string['component'] = 'Component';
|
||||
$string['confirmstoredeletion'] = 'Confirm store deletion';
|
||||
$string['defaultmappings'] = 'Default mappings';
|
||||
$string['defaultmappings'] = 'Stores used when no mapping is present';
|
||||
$string['defaultmappings_help'] = 'These are the default stores that will be used if you don\'t map one or more stores to the cache definition.';
|
||||
$string['defaultstoreactions'] = 'Default stores cannot be modified';
|
||||
$string['default_application'] = 'Default application store';
|
||||
$string['default_request'] = 'Default request store';
|
||||
$string['default_session'] = 'Default session store';
|
||||
$string['definition'] = 'Definition';
|
||||
$string['definitionsummaries'] = 'Definition summaries';
|
||||
$string['definitionsummaries'] = 'Known cache definitions';
|
||||
$string['delete'] = 'Delete';
|
||||
$string['deletestore'] = 'Delete store';
|
||||
$string['deletestoreconfirmation'] = 'Are you sure you want to delete the "{$a}" store?';
|
||||
@@ -85,7 +85,7 @@ $string['mode_4'] = 'Request';
|
||||
$string['nativelocking'] = 'This plugin handles its own locking.';
|
||||
$string['none'] = 'None';
|
||||
$string['plugin'] = 'Plugin';
|
||||
$string['pluginsummaries'] = 'Plugin summaries';
|
||||
$string['pluginsummaries'] = 'Installed cache plugins';
|
||||
$string['purge'] = 'Purge';
|
||||
$string['purgestoresuccess'] = 'Successfully purged the requested store.';
|
||||
$string['requestcount'] = 'Test with {$a} requests';
|
||||
@@ -106,7 +106,7 @@ $string['stores'] = 'Stores';
|
||||
$string['store_default_application'] = 'Default file store for application caches';
|
||||
$string['store_default_request'] = 'Default static store for request caches';
|
||||
$string['store_default_session'] = 'Default session store for session caches';
|
||||
$string['storesummaries'] = 'Store summaries';
|
||||
$string['storesummaries'] = 'Configured plugin instances';
|
||||
$string['supports'] = 'Supports';
|
||||
$string['supports_multipleidentifiers'] = 'multiple identifiers';
|
||||
$string['supports_dataguarantee'] = 'data guarantee';
|
||||
|
||||
@@ -71,6 +71,10 @@ $string['type_auth'] = 'Authentication method';
|
||||
$string['type_auth_plural'] = 'Authentication methods';
|
||||
$string['type_block'] = 'Block';
|
||||
$string['type_block_plural'] = 'Blocks';
|
||||
$string['type_cachelock'] = 'Cache lock handler';
|
||||
$string['type_cachelock_plural'] = 'Cache lock handlers';
|
||||
$string['type_cachestore'] = 'Cache store';
|
||||
$string['type_cachestore_plural'] = 'Cache stores';
|
||||
$string['type_coursereport'] = 'Course report';
|
||||
$string['type_coursereport_plural'] = 'Course reports';
|
||||
$string['type_editor'] = 'Editor';
|
||||
|
||||
@@ -405,6 +405,14 @@ class plugin_manager {
|
||||
'exportimscp', 'importhtml', 'print'
|
||||
),
|
||||
|
||||
'cachelock' => array(
|
||||
'file'
|
||||
),
|
||||
|
||||
'cachestore' => array(
|
||||
'file', 'memcache', 'memcached', 'mongodb', 'session', 'static'
|
||||
),
|
||||
|
||||
'coursereport' => array(
|
||||
//deprecated!
|
||||
),
|
||||
|
||||
Reference in New Issue
Block a user