You are here

constant LOCALE_JS_OBJECT_CONTEXT in Drupal 8

Same name and namespace in other branches
  1. 7 includes/locale.inc \LOCALE_JS_OBJECT_CONTEXT
  2. 9 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 core/modules/locale/locale.module
Parses a JavaScript file, extracts strings wrapped in Drupal.t() and Drupal.formatPlural() and inserts them into the database.

File

core/modules/locale/locale.module, line 52
Enables the translation of the user interface to languages other than English.

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
');