LOCALE_JS_OBJECT_CONTEXT
Same name in other branches
- 9 core/modules/locale/locale.module \LOCALE_JS_OBJECT_CONTEXT
- 8.9.x core/modules/locale/locale.module \LOCALE_JS_OBJECT_CONTEXT
- 10 core/modules/locale/locale.module \LOCALE_JS_OBJECT_CONTEXT
- 11.x core/modules/locale/locale.module \LOCALE_JS_OBJECT_CONTEXT
Regular expression to match an object containing a key 'context'.
Pattern to match a JS object containing a 'context key' with a string value, which is captured. Will fail if there are nested objects.
1 use of LOCALE_JS_OBJECT_CONTEXT
- _locale_parse_js_file in includes/
locale.inc - Parses a JavaScript file, extracts strings wrapped in Drupal.t() and Drupal.formatPlural() and inserts them into the database.
File
-
includes/
locale.inc, line 59
Code
define('LOCALE_JS_OBJECT_CONTEXT', '
\\{ # match object literal start
.*? # match anything, non-greedy
(?: # match a form of "context"
\'context\'
|
"context"
|
context
)
\\s*:\\s* # match key-value separator ":"
(' . LOCALE_JS_STRING . ') # match context string
.*? # match anything, non-greedy
\\} # match end of object literal
');
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.