On this page
constant 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.
File
- includes/locale.inc, line 59
- Administration functions for locale.module.
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
')
© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/includes!locale.inc/constant/LOCALE_JS_OBJECT_CONTEXT/7.x