- <?php
- * @file
- * Common functions that many Backdrop modules will need to reference.
- *
- * The functions that are critical and need to be available even when serving
- * a cached page are instead located in bootstrap.inc.
- */
-
- * @defgroup php_wrappers PHP wrapper functions
- * @{
- * Functions that are wrappers or custom implementations of PHP functions.
- *
- * Certain PHP functions should not be used in Backdrop. Instead, Backdrop's
- * replacement functions should be used.
- *
- * For example, for improved or more secure UTF8-handling, or RFC-compliant
- * handling of URLs in Backdrop.
- *
- * For ease of use and memorizing, all these wrapper functions use the same name
- * as the original PHP function, but prefixed with "backdrop_". Beware, however,
- * that not all wrapper functions support the same arguments as the original
- * functions.
- *
- * You should always use these wrapper functions in your code.
- *
- * Wrong:
- * @code
- * $my_substring = substr($original_string, 0, 5);
- * @endcode
- *
- * Correct:
- * @code
- * $my_substring = backdrop_substr($original_string, 0, 5);
- * @endcode
- *
- * @}
- */
-
- * Return status for saving which involved creating a new item.
- */
- define('SAVED_NEW', 1);
-
- * Return status for saving which involved an update to an existing item.
- */
- define('SAVED_UPDATED', 2);
-
- * Return status for saving which deleted an existing item.
- */
- define('SAVED_DELETED', 3);
-
- * The default group for system CSS files added to the page.
- */
- define('CSS_SYSTEM', -100);
-
- * The default group for module CSS files added to the page.
- */
- define('CSS_DEFAULT', 0);
-
- * The default group for theme CSS files added to the page.
- */
- define('CSS_THEME', 100);
-
- * The default group for JavaScript and jQuery libraries added to the page.
- */
- define('JS_LIBRARY', -100);
-
- * The default group for module JavaScript code added to the page.
- */
- define('JS_DEFAULT', 0);
-
- * The default group for theme JavaScript code added to the page.
- */
- define('JS_THEME', 100);
-
- * The default group for JavaScript settings added to the page.
- */
- define('JS_SETTING', -200);
-
- * Error code indicating that the request exceeded the specified timeout.
- *
- * @see backdrop_http_request()
- */
- define('HTTP_REQUEST_TIMEOUT', -1);
-
- * @defgroup block_caching Block Caching
- * @{
- * Constants that define each block's caching state.
- *
- * Modules specify how their blocks can be cached in their hook_block_info()
- * implementations. Caching can be turned off (BACKDROP_NO_CACHE), managed by
- * the module declaring the block (BACKDROP_CACHE_CUSTOM), or managed by the
- * core Block module. If the Block module is managing the cache, you can specify
- * that the block is the same for every page and user (BACKDROP_CACHE_GLOBAL),
- * or that it can change depending on the page (BACKDROP_CACHE_PER_PAGE) or by
- * user (BACKDROP_CACHE_PER_ROLE or BACKDROP_CACHE_PER_USER). Page and user
- * settings can be combined with a bitwise-binary or operator; for example,
- * BACKDROP_CACHE_PER_ROLE | BACKDROP_CACHE_PER_PAGE means that the block can
- * change depending on the user role or page it is on.
- *
- * The block cache is cleared in cache_clear_all(), and uses the same clearing
- * policy than page cache (node, comment, user, taxonomy added or updated...).
- * Blocks requiring more fine-grained clearing might consider disabling the
- * built-in block cache (BACKDROP_NO_CACHE) and roll their own.
- *
- * Note that user 1 is excluded from block caching.
- */
-
- * The block should not get cached.
- *
- * This setting should be used:
- * - For simple blocks (notably those that do not perform any db query), where
- * querying the db cache would be more expensive than directly generating the
- * content.
- * - For blocks that change too frequently.
- */
- define('BACKDROP_NO_CACHE', -1);
-
- * The block is handling its own caching in its hook_block_view().
- *
- * This setting is useful when time based expiration is needed or a site uses a
- * node access which invalidates standard block cache.
- */
- define('BACKDROP_CACHE_CUSTOM', -2);
-
- * The block or element can change depending on the user's roles.
- *
- * This is the default setting for blocks, used when the block does not specify
- * anything.
- */
- define('BACKDROP_CACHE_PER_ROLE', 0x0001);
-
- * The block or element can change depending on the user.
- *
- * This setting can be resource-consuming for sites with large number of users,
- * and thus should only be used when BACKDROP_CACHE_PER_ROLE is not sufficient.
- */
- define('BACKDROP_CACHE_PER_USER', 0x0002);
-
- * The block or element can change depending on the page being viewed.
- */
- define('BACKDROP_CACHE_PER_PAGE', 0x0004);
-
- * The block or element is the same for every user and page that it is visible.
- */
- define('BACKDROP_CACHE_GLOBAL', 0x0008);
-
- * @} End of "defgroup block_caching".
- */
-
- * Gets the name of the currently active installation profile.
- *
- * When this function is called during Backdrop's initial installation process,
- * the name of the profile that's about to be installed is stored in the global
- * installation state. At all other times, the standard Backdrop system.core
- * config file contains the name of the current profile.
- *
- * @return $profile
- * The name of the installation profile.
- */
- function backdrop_get_profile() {
- global $install_state;
-
- if (isset($install_state['parameters']['profile'])) {
- $profile = $install_state['parameters']['profile'];
- }
- else {
- try {
- $profile = config_get('system.core', 'install_profile');
- }
- catch (ConfigException $e) {}
- }
- if (empty($profile)) {
- $profile = 'standard';
- }
-
- return $profile;
- }
-
- * Sets the breadcrumb trail for the current page.
- *
- * @param array $breadcrumb
- * Array of links, starting with "home" and proceeding up to but not including
- * the current page.
- *
- * @return array
- * The current breadcrumb trail array.
- */
- function backdrop_set_breadcrumb($breadcrumb = NULL) {
- $stored_breadcrumb = &backdrop_static(__FUNCTION__);
-
- if (isset($breadcrumb)) {
- $stored_breadcrumb = $breadcrumb;
- }
- return $stored_breadcrumb;
- }
-
- * Gets the breadcrumb trail for the current page.
- */
- function backdrop_get_breadcrumb() {
- $breadcrumb = backdrop_set_breadcrumb();
-
- if (!isset($breadcrumb)) {
- $breadcrumb = menu_get_active_breadcrumb();
- }
-
- return $breadcrumb;
- }
-
- * Gets the path and dimensions of the site wide logo.
- *
- * @return array
- * An array containing "path", "width", and "height".
- */
- function backdrop_get_logo_info() {
- $info = array(
- 'path' => '',
- 'width' => NULL,
- 'height' => NULL,
- );
-
-
-
-
- try {
- $site_config = config('system.core');
-
- if ($site_config->get('site_logo_theme')) {
- global $theme;
- $theme_data = list_themes();
- $theme_object = $theme_data[$theme];
- $logo = dirname($theme_object->filename) . '/logo.png';
- if (file_exists($logo)) {
- $info['path'] = $logo;
- }
- }
- elseif ($site_config->get('site_logo_path')) {
- $info['path'] = $site_config->get('site_logo_path');
- }
-
-
- if ($attributes = $site_config->get('site_logo_attributes')) {
- $info = array_merge($info, $attributes);
- }
-
- elseif ($info['path'] && $dimensions = @getimagesize($info['path'])) {
- $attributes = array();
- list($attributes['width'], $attributes['height']) = $dimensions;
- $site_config->set('site_logo_attributes', $attributes);
- $info = array_merge($info, $attributes);
- }
- }
- catch (ConfigException $e) {
-
- }
-
- return $info;
- }
-
- * Gets the site logo.
- *
- * Falls back to none (empty string) if not defined or theme provided.
- *
- * @return (string) $logo
- * URL to the logo file to use for the site.
- *
- * @see backdrop_get_logo_properties()
- */
- function backdrop_get_logo() {
- $logo = '';
- $logo_info = backdrop_get_logo_info();
- if ($logo_info['path']) {
- $logo = file_create_url($logo_info['path']);
- }
-
- return $logo;
- }
-
- * Gets the file location and mime type for site favicon.
- *
- * Falls back to the Backdrop favicon if not defined or theme provided.
- *
- * @return (array) $favicon
- * Information about the favicon to use for the site. Keys include:
- * - path: Relative path to the file to be used.
- * - type: mime type for the icon being used.
- */
- function backdrop_get_favicon() {
- $favicon = array(
- 'path' => file_create_url('core/misc/favicon.ico'),
- 'type' => 'image/vnd.microsoft.icon',
- );
-
-
- try {
- $site_config = config('system.core');
-
- if ($site_config->get('site_favicon_theme')) {
- global $theme;
- $theme_data = list_themes();
- $theme_object = $theme_data[$theme];
- $theme_favicon = dirname($theme_object->filename) . '/favicon.ico';
- if (file_exists($theme_favicon)) {
- $favicon['path'] = file_create_url($theme_favicon);
- }
- }
- elseif ($site_config->get('site_favicon_path')) {
- $favicon['path'] = file_create_url($site_config->get('site_favicon_path'));
- $favicon['type'] = $site_config->get('site_favicon_mimetype');
- }
- }
- catch (ConfigException $e) {
-
- }
-
-
- $favicon['path'] = backdrop_strip_dangerous_protocols($favicon['path']);
-
- return $favicon;
- }
-
- * Adds output to the HEAD tag of the HTML page.
- *
- * This function can be called as long as the headers aren't sent. Pass no
- * arguments (or NULL for both) to retrieve the currently stored elements.
- *
- * @param $data
- * A renderable array. If the '#type' key is not set then 'head_tag' will be
- * added as the default '#type'.
- * @param $key
- * A unique string key to allow implementations of hook_html_head_alter() to
- * identify the element in $data. Required if $data is not NULL.
- *
- * @return
- * An array of all stored HEAD elements.
- *
- * @see theme_head_tag()
- */
- function backdrop_add_html_head($data = NULL, $key = NULL) {
- $stored_head = &backdrop_static(__FUNCTION__);
-
- if (!isset($stored_head)) {
-
- $stored_head = _backdrop_default_html_head();
- }
-
- if (isset($data) && isset($key)) {
- if (!isset($data['#type'])) {
- $data['#type'] = 'head_tag';
- }
- $stored_head[$key] = $data;
- }
- return $stored_head;
- }
-
- * Returns elements that are always displayed in the HEAD tag of the HTML page.
- */
- function _backdrop_default_html_head() {
-
-
-
- $elements['system_meta_content_type'] = array(
- '#type' => 'head_tag',
- '#tag' => 'meta',
- '#attributes' => array(
- 'charset' => 'utf-8',
- ),
-
- '#weight' => -1000,
- );
-
-
- list($version, ) = explode('.', BACKDROP_VERSION);
- $elements['system_meta_generator'] = array(
- '#type' => 'head_tag',
- '#tag' => 'meta',
- '#attributes' => array(
- 'name' => 'Generator',
- 'content' => 'Backdrop CMS ' . $version . ' (https://backdropcms.org)',
- ),
- );
-
- $elements['system_meta_generator']['#attached']['backdrop_add_http_header'][] = array('X-Generator', $elements['system_meta_generator']['#attributes']['content']);
- return $elements;
- }
-
- * Retrieves output to be displayed in the HEAD tag of the HTML page.
- */
- function backdrop_get_html_head() {
- $elements = backdrop_add_html_head();
-
-
- $elements['viewport'] = array(
- '#type' => 'head_tag',
- '#tag' => 'meta',
- '#attributes' => array(
- 'name' => 'viewport',
- 'content' => 'width=device-width, initial-scale=1',
- ),
- );
-
- backdrop_alter('html_head', $elements);
- return backdrop_render($elements);
- }
-
- * Adds a feed URL for the current page.
- *
- * This function can be called as long the HTML header hasn't been sent.
- *
- * @param $url
- * An internal system path or a fully qualified external URL of the feed.
- * @param $title
- * The title of the feed.
- */
- function backdrop_add_feed($url = NULL, $title = '') {
- $stored_feed_links = &backdrop_static(__FUNCTION__, array());
-
- if (isset($url)) {
- $stored_feed_links[$url] = theme('feed_icon', array('url' => $url, 'title' => $title));
-
- backdrop_add_html_head_link(array(
- 'rel' => 'alternate',
- 'type' => 'application/rss+xml',
- 'title' => $title,
-
-
- 'href' => url($url, array('absolute' => TRUE)),
- ));
- }
- return $stored_feed_links;
- }
-
- * Gets the feed URLs for the current page.
- *
- * @param string $delimiter
- * A delimiter to split feeds by.
- *
- * @return string
- * The list of feed URLs joined together by the given delimiter.
- */
- function backdrop_get_feeds($delimiter = "\n") {
- $feeds = backdrop_add_feed();
- return implode($delimiter, $feeds);
- }
-
- * @defgroup http_handling HTTP handling
- * @{
- * Functions to properly handle HTTP responses.
- */
-
- * Processes a URL query parameter array to remove unwanted elements.
- *
- * @param $query
- * (optional) An array to be processed. Defaults to $_GET.
- * @param $exclude
- * (optional) A list of $query array keys to remove. Use "parent[child]" to
- * exclude nested items. Defaults to array('q').
- * @param $parent
- * Internal use only. Used to build the $query array key for nested items.
- *
- * @return
- * An array containing query parameters, which can be used for url().
- */
- function backdrop_get_query_parameters(array $query = NULL, array $exclude = array('q'), $parent = '') {
-
- if (!isset($query)) {
- $query = $_GET;
- }
-
- if (empty($exclude)) {
- return $query;
- }
- elseif (!$parent) {
- $exclude = array_flip($exclude);
- }
-
- $params = array();
- foreach ($query as $key => $value) {
- $string_key = ($parent ? $parent . '[' . $key . ']' : $key);
- if (isset($exclude[$string_key])) {
- continue;
- }
-
- if (is_array($value)) {
- $params[$key] = backdrop_get_query_parameters($value, $exclude, $string_key);
- }
- else {
- $params[$key] = $value;
- }
- }
-
- return $params;
- }
-
- * Splits a URL-encoded query string into an array.
- *
- * @param $query
- * The query string to split.
- *
- * @return
- * An array of URL decoded couples $param_name => $value.
- */
- function backdrop_get_query_array($query) {
- $result = array();
- if (!empty($query)) {
- foreach (explode('&', $query) as $param) {
- $param = explode('=', $param, 2);
- $result[$param[0]] = isset($param[1]) ? rawurldecode($param[1]) : '';
- }
- }
- return $result;
- }
-
- * Take a full URL and return only the bare domain, with sub-domains removed.
- *
- * @param string $url
- * A fully-qualified URL like https://www.example.co.uk/path-to-page or a
- * partial URL without the protocol, such as www.example.co.uk, as would be
- * provided by $_SERVER['SERVER_NAME'].
- *
- * @return string|FALSE
- * The bare domain of the starting URL like example.com or example.co.uk.
- */
- function backdrop_get_bare_domain($url) {
- $parts = parse_url(trim($url, '/'));
- $domain = FALSE;
-
-
- if (array_key_exists('host', $parts)) {
- $domain = $parts['host'];
- }
-
- elseif (array_key_exists('path', $parts)) {
-
- $parts_array = explode('/', $parts['path'], 2);
- $domain = array_shift($parts_array);
- }
-
- if ($domain) {
-
- if (substr($domain, 0, 4) == 'www.') {
- $domain = substr($domain, 3);
- }
-
-
- $sub_parts = explode('.', $domain);
- if (count($sub_parts) > 2) {
- $last = array_pop($sub_parts);
- $second_to_last = array_pop($sub_parts);
-
- if (strlen($last) === 2 && count($sub_parts)) {
- $domain = array_pop($sub_parts) . '.' . $second_to_last . '.' . $last;
- }
-
-
- else {
- $domain = $second_to_last . '.' . $last;
- }
- }
- }
-
- return $domain;
- }
-
- * Parses an array into a valid, rawurlencoded query string.
- *
- * This differs from http_build_query() as we need to rawurlencode() (instead of
- * urlencode()) all query parameters.
- *
- * @param $query
- * The query parameter array to be processed, e.g. $_GET.
- * @param $parent
- * Internal use only. Used to build the $query array key for nested items.
- *
- * @return
- * A rawurlencoded string which can be used as or appended to the URL query
- * string.
- *
- * @see backdrop_get_query_parameters()
- * @ingroup php_wrappers
- */
- function backdrop_http_build_query(array $query, $parent = '') {
- $params = array();
-
- foreach ($query as $key => $value) {
- $key = $parent ? $parent . rawurlencode('[' . $key . ']') : rawurlencode($key);
-
-
- $key = str_replace('%2F', '/', $key);
-
-
- if (is_array($value)) {
- $params[] = backdrop_http_build_query($value, $key);
- }
-
- elseif (!isset($value)) {
- $params[] = $key;
- }
- else {
-
- $params[] = $key . '=' . str_replace('%2F', '/', rawurlencode($value));
- }
- }
-
- return implode('&', $params);
- }
-
- * Prepares a 'destination' URL query parameter for use with backdrop_goto().
- *
- * Used to direct the user back to the referring page after completing a form.
- * By default the current URL is returned. If a destination exists in the
- * previous request, that destination is returned. As such, a destination can
- * persist across multiple pages.
- *
- * @see backdrop_goto()
- */
- function backdrop_get_destination() {
- $destination = &backdrop_static(__FUNCTION__);
-
- if (isset($destination)) {
- return $destination;
- }
-
- if (isset($_GET['destination'])) {
- $destination = array('destination' => $_GET['destination']);
- }
- else {
- $path = $_GET['q'];
- $query = backdrop_http_build_query(backdrop_get_query_parameters());
- if ($query != '') {
- $path .= '?' . $query;
- }
- $destination = array('destination' => $path);
- }
- return $destination;
- }
-
- * Parses a system URL string into an associative array suitable for url().
- *
- * This function should only be used for URLs that have been generated by the
- * system, such as via url(). It should not be used for URLs that come from
- * external sources, or URLs that link to external resources.
- *
- * The returned array contains a 'path' that may be passed separately to url().
- * For example:
- * @code
- * $options = backdrop_parse_url($_GET['destination']);
- * $my_url = url($options['path'], $options);
- * $my_link = l('Example link', $options['path'], $options);
- * @endcode
- *
- * This is required, because url() does not support relative URLs containing a
- * query string or fragment in its $path argument. Instead, any query string
- * needs to be parsed into an associative query parameter array in
- * $options['query'] and the fragment into $options['fragment'].
- *
- * @param $url
- * The URL string to parse, f.e. $_GET['destination'].
- *
- * @return
- * An associative array containing the keys:
- * - 'path': The path of the URL. If the given $url is external, this includes
- * the scheme and host.
- * - 'query': An array of query parameters of $url, if existent.
- * - 'fragment': The fragment of $url, if existent.
- *
- * @see url()
- * @see backdrop_goto()
- * @ingroup php_wrappers
- */
- function backdrop_parse_url($url) {
- $options = array(
- 'path' => NULL,
- 'query' => array(),
- 'fragment' => '',
- );
-
-
-
- if (strpos($url, '://') !== FALSE) {
-
- $parts = explode('?', $url);
- $options['path'] = $parts[0];
-
- if (isset($parts[1])) {
- $query_parts = explode('#', $parts[1]);
- parse_str($query_parts[0], $options['query']);
-
- if (isset($query_parts[1])) {
- $options['fragment'] = $query_parts[1];
- }
- }
- }
-
- else {
-
-
- $parts = parse_url('http://example.com/' . $url);
-
- $options['path'] = substr($parts['path'], 1);
- if (isset($parts['query'])) {
- parse_str($parts['query'], $options['query']);
- }
- if (isset($parts['fragment'])) {
- $options['fragment'] = $parts['fragment'];
- }
- }
-
-
-
-
- if (isset($options['query']['q']) && is_string($options['query']['q'])) {
- $options['path'] = $options['query']['q'];
- unset($options['query']['q']);
- }
-
- return $options;
- }
-
- * Encodes a Backdrop path for use in a URL.
- *
- * For aesthetic reasons slashes are not escaped.
- *
- * Note that url() takes care of calling this function, so a path passed to that
- * function should not be encoded in advance.
- *
- * @param string $path
- * The Backdrop path to encode.
- *
- * @return string
- * The encoded path.
- */
- function backdrop_encode_path($path) {
- return str_replace('%2F', '/', rawurlencode((string) $path));
- }
-
- * Wraps backdrop_goto() to include a deprecated log message.
- *
- * In earlier versions of Backdrop, this was sometimes used directly as a menu
- * callback. It is now recommended to use system_redirect_deprecated_page()
- * instead when deprecating paths, because that function can handle wildcards
- * and path mapping. It resolves the final path and then calls this function to
- * perform the redirect.
- *
- * @see backdrop_goto()
- * @see system_redirect_deprecated_page()
- *
- * @since 1.5.0
- */
- function backdrop_goto_deprecated($path = '', array $options = array(), $http_response_code = 302) {
- watchdog('system', 'The path %path has been deprecated and will be removed in the next major release of Backdrop. This path was called from %referrer. It is recommended to remove it from any existing links.', array('%path' => $_GET['q'], '%referrer' => $_SERVER['HTTP_REFERER']), WATCHDOG_DEPRECATED);
- backdrop_goto($path, $options, $http_response_code);
- }
-
- * Sends the user to a different page.
- *
- * This issues an on-site HTTP redirect. The function makes sure the redirected
- * URL is formatted correctly.
- *
- * If a destination was specified in the current request's URI (i.e.,
- * $_GET['destination']) then it will override the $path and $options values
- * passed to this function. This provides the flexibility to build a link to
- * user/login and override the default redirection so that the user is
- * redirected to a specific path after logging in:
- * @code
- * $query = array('destination' => "node/$node->nid");
- * $link = l(t('Log in'), 'user/login', array('query' => $query));
- * @endcode
- *
- * Backdrop will ensure that messages set by backdrop_set_message() and other
- * session data are written to the database before the user is redirected.
- *
- * This function ends the request; use it instead of a return in your menu
- * callback.
- *
- * @param $path
- * (optional) A Backdrop path or a full URL, which will be passed to url() to
- * compute the redirect for the URL.
- * @param $options
- * (optional) An associative array of additional URL options to pass to url().
- * @param $http_response_code
- * (optional) The HTTP status code to use for the redirection, defaults to
- * 302. The valid values for 3xx redirection status codes are defined in
- * @link http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.3 RFC 2616 @endlink
- * and the
- * @link http://tools.ietf.org/html/draft-reschke-http-status-308-07 draft for the new HTTP status codes: @endlink
- * - 301: Moved Permanently (the recommended value for most redirects).
- * - 302: Found (default in Backdrop and PHP, sometimes used for spamming search
- * engines).
- * - 303: See Other.
- * - 304: Not Modified.
- * - 305: Use Proxy.
- * - 307: Temporary Redirect.
- *
- * @see backdrop_get_destination()
- * @see url()
- */
- function backdrop_goto($path = '', array $options = array(), $http_response_code = 302) {
-
-
- if (isset($_GET['destination']) && !url_is_external($_GET['destination'])) {
- $destination = backdrop_parse_url($_GET['destination']);
-
- if (!url_is_external($destination['path'])) {
- $path = $destination['path'];
- }
- $options['query'] = $destination['query'];
- $options['fragment'] = $destination['fragment'];
- }
-
-
-
- if ($path === current_path() && empty($options['external']) && url_is_external($path)) {
-
- $options['external'] = FALSE;
- }
-
- backdrop_alter('backdrop_goto', $path, $options, $http_response_code);
-
-
- $options['absolute'] = TRUE;
-
- $url = url($path, $options);
-
- if (!backdrop_is_background()) {
- header('Location: ' . $url, TRUE, $http_response_code);
- }
-
-
-
-
- backdrop_exit($url);
- }
-
- * Delivers a "site is under maintenance" message to the browser.
- *
- * Page callback functions wanting to report a "site offline" message should
- * return MENU_SITE_OFFLINE instead of calling backdrop_site_offline(). However,
- * functions that are invoked in contexts where that return value might not
- * bubble up to menu_execute_active_handler() should call backdrop_site_offline().
- */
- function backdrop_site_offline() {
- backdrop_deliver_page(MENU_SITE_OFFLINE);
- }
-
- * Delivers a "page not found" error to the browser.
- *
- * Page callback functions wanting to report a "page not found" message should
- * return MENU_NOT_FOUND instead of calling backdrop_not_found(). However,
- * functions that are invoked in contexts where that return value might not
- * bubble up to menu_execute_active_handler() should call backdrop_not_found().
- */
- function backdrop_not_found() {
- backdrop_deliver_page(MENU_NOT_FOUND);
- }
-
- * Delivers an "access denied" error to the browser.
- *
- * Page callback functions wanting to report an "access denied" message should
- * return MENU_ACCESS_DENIED instead of calling backdrop_access_denied(). However,
- * functions that are invoked in contexts where that return value might not
- * bubble up to menu_execute_active_handler() should call
- * backdrop_access_denied().
- */
- function backdrop_access_denied() {
- backdrop_deliver_page(MENU_ACCESS_DENIED);
- }
-
- * Performs an HTTP request.
- *
- * This is a flexible and powerful HTTP client implementation. Correctly
- * handles GET, POST, PUT or any other HTTP requests. Handles redirects.
- *
- * @param $url
- * A string containing a fully qualified URI.
- * @param array $options
- * (optional) An array that can have one or more of the following elements:
- * - headers: An array containing request headers to send as name/value pairs.
- * - method: A string containing the request method. Defaults to 'GET'.
- * - data: An array containing the values for the request body or a string
- * containing the request body, formatted as 'param=value¶m=value&...'.
- * To generate this, use backdrop_http_build_query(). Defaults to NULL.
- * - max_redirects: An integer representing how many times a redirect
- * may be followed. Defaults to 3.
- * - timeout: A float representing the maximum number of seconds the function
- * call may take. The default is 30 seconds. If a timeout occurs, the error
- * code is set to the HTTP_REQUEST_TIMEOUT constant.
- * - context: A context resource created with stream_context_create().
- *
- * @return stdClass
- * An object that can have one or more of the following components:
- * - request: A string containing the request body that was sent.
- * - code: An integer containing the response status code, or the error code
- * if an error occurred.
- * - protocol: The response protocol (e.g. HTTP/1.1 or HTTP/1.0).
- * - status_message: The status message from the response, if a response was
- * received.
- * - redirect_code: If redirected, an integer containing the initial response
- * status code.
- * - redirect_url: If redirected, a string containing the URL of the redirect
- * target.
- * - error: If an error occurred, the error message. Otherwise not set.
- * - headers: An array containing the response headers as name/value pairs.
- * HTTP header names are case-insensitive (RFC 2616, section 4.2), so for
- * easy access the array keys are returned in lower case.
- * - data: A string containing the response body that was received.
- *
- * @see backdrop_http_build_query()
- *
- * @since 1.18.4 The $options['data'] key may now be passed as an array.
- * @since 1.27.2 Support added for the 429 response code (previously treaded as
- * a 400).
- * @since 1.27.2 Now removes any potentially sensitive headers before following
- * a redirect. See the 'strip_sensitive_headers_on_host_change' setting in
- * settings.php for details.
- */
- function backdrop_http_request($url, array $options = array()) {
-
-
- $alternate_http_system = &backdrop_static('__FUNCTION__');
- if (!isset($alternate_http_system)) {
- $class = settings_get('http_system');
-
- $alternate_http_system = $class ? new $class() : FALSE;
- }
- if ($alternate_http_system) {
- return $alternate_http_system->request($url, $options);
- }
-
- $result = new stdClass();
-
-
- $uri = @parse_url($url);
-
- if ($uri == FALSE) {
- $result->error = 'unable to parse URL';
- $result->code = -1001;
- return $result;
- }
-
- if (!isset($uri['scheme'])) {
- $result->error = 'missing schema';
- $result->code = -1002;
- return $result;
- }
-
- timer_start(__FUNCTION__);
-
-
- $options += array(
- 'headers' => array(),
- 'method' => 'GET',
- 'data' => NULL,
- 'max_redirects' => 3,
- 'timeout' => 30.0,
- 'context' => NULL,
- );
-
-
- $options['headers'] += array(
- 'User-Agent' => 'Backdrop CMS (+https://backdropcms.org)',
- );
-
-
- $options['timeout'] = (float) $options['timeout'];
-
-
- $proxy_server = settings_get('proxy_server', '');
- if ($proxy_server && _backdrop_http_use_proxy($uri['host'])) {
-
- $uri['scheme'] = 'proxy';
-
- $uri['path'] = $url;
-
- unset($uri['query']);
-
-
- if ($proxy_username = settings_get('proxy_username', '')) {
- $proxy_password = settings_get('proxy_password', '');
- $options['headers']['Proxy-Authorization'] = 'Basic ' . base64_encode($proxy_username . (!empty($proxy_password) ? ":" . $proxy_password : ''));
- }
-
-
- $proxy_user_agent = settings_get('proxy_user_agent', '');
-
- if ($proxy_user_agent === NULL) {
- unset($options['headers']['User-Agent']);
- }
- elseif ($proxy_user_agent) {
- $options['headers']['User-Agent'] = $proxy_user_agent;
- }
- }
-
- switch ($uri['scheme']) {
- case 'proxy':
-
- $socket = 'tcp://' . $proxy_server . ':' . settings_get('proxy_port', 8080);
-
- if (!isset($options['headers']['Host'])) {
- $options['headers']['Host'] = $uri['host'];
- $options['headers']['Host'] .= isset($uri['port']) && $uri['port'] != 80 ? ':' . $uri['port'] : '';
- }
- break;
-
- case 'http':
- case 'feed':
- $port = isset($uri['port']) ? $uri['port'] : 80;
- $socket = 'tcp://' . $uri['host'] . ':' . $port;
-
-
-
- if (!isset($options['headers']['Host'])) {
- $options['headers']['Host'] = $uri['host'] . ($port != 80 ? ':' . $port : '');
- }
- break;
-
- case 'https':
-
- $port = isset($uri['port']) ? $uri['port'] : 443;
- $socket = 'ssl://' . $uri['host'] . ':' . $port;
- if (!isset($options['headers']['Host'])) {
- $options['headers']['Host'] = $uri['host'] . ($port != 443 ? ':' . $port : '');
- }
- break;
-
- default:
- $result->error = 'invalid schema ' . $uri['scheme'];
- $result->code = -1003;
- return $result;
- }
-
- if (empty($options['context'])) {
- $fp = @stream_socket_client($socket, $errno, $errstr, $options['timeout']);
- }
- else {
-
- $fp = @stream_socket_client($socket, $errno, $errstr, $options['timeout'], STREAM_CLIENT_CONNECT, $options['context']);
- }
-
-
- if (!$fp) {
-
-
- $result->code = -$errno;
- $result->error = trim($errstr) ? trim($errstr) : t('Error opening socket @socket', array('@socket' => $socket));
-
- return $result;
- }
-
-
- $path = isset($uri['path']) ? $uri['path'] : '/';
- if (isset($uri['query'])) {
- $path .= '?' . $uri['query'];
- }
-
-
- if (is_array($options['data'])) {
- $options['data'] = backdrop_http_build_query($options['data']);
- }
-
-
-
-
-
- $content_length = strlen((string) $options['data']);
- if ($content_length > 0 || $options['method'] == 'POST' || $options['method'] == 'PUT') {
- $options['headers']['Content-Length'] = $content_length;
- }
-
-
- if (isset($uri['user'])) {
- $options['headers']['Authorization'] = 'Basic ' . base64_encode($uri['user'] . (isset($uri['pass']) ? ':' . $uri['pass'] : ':'));
- }
-
-
-
-
-
-
-
- $test_info = &$GLOBALS['backdrop_test_info'];
- if (!empty($test_info['test_run_id'])) {
- $options['headers']['User-Agent'] = backdrop_generate_test_ua($test_info['test_run_id']);
- }
-
- $request = $options['method'] . ' ' . $path . " HTTP/1.0\r\n";
- foreach ($options['headers'] as $name => $value) {
- $request .= $name . ': ' . trim($value) . "\r\n";
- }
- $request .= "\r\n" . $options['data'];
- $result->request = $request;
-
- $timeout = $options['timeout'] - timer_read(__FUNCTION__) / 1000;
- if ($timeout > 0) {
- stream_set_timeout($fp, floor($timeout), floor(1000000 * fmod($timeout, 1)));
- fwrite($fp, $request);
- }
-
-
-
-
- $info = stream_get_meta_data($fp);
- $alive = !$info['eof'] && !$info['timed_out'];
- $response = '';
-
- while ($alive) {
-
- $timeout = $options['timeout'] - timer_read(__FUNCTION__) / 1000;
- if ($timeout <= 0) {
- $info['timed_out'] = TRUE;
- break;
- }
- stream_set_timeout($fp, floor($timeout), floor(1000000 * fmod($timeout, 1)));
- $chunk = fread($fp, 1024);
- $response .= $chunk;
- $info = stream_get_meta_data($fp);
- $alive = !$info['eof'] && !$info['timed_out'] && $chunk;
- }
- fclose($fp);
-
- if ($info['timed_out']) {
- $result->code = HTTP_REQUEST_TIMEOUT;
- $result->error = 'request timed out';
- return $result;
- }
-
-
-
- list($response, $result->data) = preg_split("/\r\n\r\n|\n\n|\r\r/", $response, 2);
- $response = preg_split("/\r\n|\n|\r/", $response);
-
-
- $response_status_array = _backdrop_parse_response_status(trim(array_shift($response)));
- $result->protocol = $response_status_array['http_version'];
- $result->status_message = $response_status_array['reason_phrase'];
- $code = $response_status_array['response_code'];
-
- $result->headers = array();
-
-
- while ($line = trim((string) array_shift($response))) {
- list($name, $value) = explode(':', $line, 2);
- $name = strtolower($name);
- if (isset($result->headers[$name]) && $name == 'set-cookie') {
-
-
- $result->headers[$name] .= ',' . trim($value);
- }
- else {
- $result->headers[$name] = trim($value);
- }
- }
-
- $responses = array(
- 100 => 'Continue',
- 101 => 'Switching Protocols',
- 200 => 'OK',
- 201 => 'Created',
- 202 => 'Accepted',
- 203 => 'Non-Authoritative Information',
- 204 => 'No Content',
- 205 => 'Reset Content',
- 206 => 'Partial Content',
- 300 => 'Multiple Choices',
- 301 => 'Moved Permanently',
- 302 => 'Found',
- 303 => 'See Other',
- 304 => 'Not Modified',
- 305 => 'Use Proxy',
- 307 => 'Temporary Redirect',
- 400 => 'Bad Request',
- 401 => 'Unauthorized',
- 402 => 'Payment Required',
- 403 => 'Forbidden',
- 404 => 'Not Found',
- 405 => 'Method Not Allowed',
- 406 => 'Not Acceptable',
- 407 => 'Proxy Authentication Required',
- 408 => 'Request Time-out',
- 409 => 'Conflict',
- 410 => 'Gone',
- 411 => 'Length Required',
- 412 => 'Precondition Failed',
- 413 => 'Request Entity Too Large',
- 414 => 'Request-URI Too Large',
- 415 => 'Unsupported Media Type',
- 416 => 'Requested range not satisfiable',
- 417 => 'Expectation Failed',
- 429 => 'Too Many Requests',
- 500 => 'Internal Server Error',
- 501 => 'Not Implemented',
- 502 => 'Bad Gateway',
- 503 => 'Service Unavailable',
- 504 => 'Gateway Time-out',
- 505 => 'HTTP Version not supported',
- );
-
-
- if (!isset($responses[$code])) {
- $code = floor($code / 100) * 100;
- }
- $result->code = $code;
-
- switch ($code) {
- case 200:
- case 201:
- case 202:
- case 203:
- case 204:
- case 205:
- case 206:
- case 304:
- break;
- case 301:
- case 302:
- case 307:
- $location = $result->headers['location'];
- $options['timeout'] -= timer_read(__FUNCTION__) / 1000;
- if ($options['timeout'] <= 0) {
- $result->code = HTTP_REQUEST_TIMEOUT;
- $result->error = 'request timed out';
- }
- elseif ($options['max_redirects']) {
-
- $options['max_redirects']--;
-
-
-
-
- if (_backdrop_should_strip_sensitive_headers_on_http_redirect($url, $location)) {
- unset($options['headers']['Cookie']);
- unset($options['headers']['Authorization']);
- }
-
-
-
- if (isset($options['headers']['Host'])) {
- unset($options['headers']['Host']);
- }
- $result = backdrop_http_request($location, $options);
- $result->redirect_code = $code;
- }
- if (!isset($result->redirect_url)) {
- $result->redirect_url = $location;
- }
- break;
- default:
- $result->error = $result->status_message;
- }
-
- return $result;
- }
-
- * Determine whether to strip sensitive headers from a request when redirected.
- *
- * @param string $url
- * The url from the original outbound http request.
- *
- * @param string $location
- * The location to which the request has been redirected.
- *
- * @return boolean
- * Whether sensitive headers should be stripped from the request before
- * following the redirect.
- */
- function _backdrop_should_strip_sensitive_headers_on_http_redirect($url, $location) {
- $url_parsed = parse_url($url);
- $location_parsed = parse_url($location);
- if (!isset($location_parsed['host'])) {
- return FALSE;
- }
- $strip_on_host_change = config_get('system.core', 'backdrop_http_request.strip_sensitive_headers_on_host_change');
- $strip_on_https_downgrade = config_get('system.core', 'backdrop_http_request.strip_sensitive_headers_on_https_downgrade');
- if ($strip_on_host_change && strcasecmp($url_parsed['host'], $location_parsed['host']) !== 0) {
- return TRUE;
- }
- if ($strip_on_https_downgrade && $url_parsed['scheme'] !== $location_parsed['scheme'] && $location_parsed['scheme'] !== 'https') {
- return TRUE;
- }
- return FALSE;
- }
-
- * Split an HTTP response status line into components.
- *
- * Refactored out of backdrop_http_request() so it can be unit tested.
- *
- * @link http://www.w3.org/Protocols/rfc2616/rfc2616-sec6.html Status line definition @endlink
- *
- * @param string $response
- * The response status line, e.g. 'HTTP/1.1 500 Internal Server Error'
- *
- * @return array
- * Keyed array containing the component parts. If the response is malformed,
- * all possible parts will be extracted. 'reason_phrase' could be empty.
- * Possible keys:
- * - 'http_version'
- * - 'response_code'
- * - 'reason_phrase'
- */
- function _backdrop_parse_response_status($response) {
- $response_array = explode(' ', trim($response), 3);
-
- $result = array(
- 'reason_phrase' => '',
- );
- $result['http_version'] = $response_array[0];
- $result['response_code'] = $response_array[1];
- if (isset($response_array[2])) {
- $result['reason_phrase'] = $response_array[2];
- }
- return $result;
- }
-
- * Helper function for determining hosts excluded from needing a proxy.
- *
- * @return
- * TRUE if a proxy should be used for this host.
- */
- function _backdrop_http_use_proxy($host) {
- $proxy_exceptions = settings_get('proxy_exceptions', array('localhost', '127.0.0.1'));
- return !in_array(strtolower($host), $proxy_exceptions, TRUE);
- }
-
- * @} End of "HTTP handling".
- */
-
- * Strips slashes from a string or array of strings.
- *
- * Callback for array_walk() within fix_gpx_magic().
- *
- * @param $item
- * An individual string or array of strings from superglobals.
- */
- function _fix_gpc_magic(&$item) {
- if (is_array($item)) {
- array_walk($item, '_fix_gpc_magic');
- }
- else {
- $item = stripslashes($item);
- }
- }
-
- * Strips slashes from $_FILES items.
- *
- * Callback for array_walk() within fix_gpc_magic().
- *
- * The tmp_name key is skipped keys since PHP generates single backslashes for
- * file paths on Windows systems.
- *
- * @param $item
- * An item from $_FILES.
- * @param $key
- * The key for the item within $_FILES.
- *
- * @see http://php.net/manual/features.file-upload.php#42280
- */
- function _fix_gpc_magic_files(&$item, $key) {
- if ($key != 'tmp_name') {
- if (is_array($item)) {
- array_walk($item, '_fix_gpc_magic_files');
- }
- else {
- $item = stripslashes($item);
- }
- }
- }
-
- * Fixes double-escaping caused by "magic quotes" in some PHP installations.
- *
- * @see _fix_gpc_magic()
- * @see _fix_gpc_magic_files()
- */
- function fix_gpc_magic() {
- static $fixed = FALSE;
- if (!$fixed && ini_get('magic_quotes_gpc')) {
- array_walk($_GET, '_fix_gpc_magic');
- array_walk($_POST, '_fix_gpc_magic');
- array_walk($_COOKIE, '_fix_gpc_magic');
- array_walk($_REQUEST, '_fix_gpc_magic');
- array_walk($_FILES, '_fix_gpc_magic_files');
- }
- $fixed = TRUE;
- }
-
- * @defgroup validation Input validation
- * @{
- * Functions to validate user input.
- */
-
- * Verifies the syntax of the given email address.
- *
- * See @link http://tools.ietf.org/html/rfc5321 RFC 5321 @endlink for details.
- *
- * @param $mail
- * A string containing an email address.
- *
- * @return
- * TRUE if the address is in a valid format.
- */
- function valid_email_address($mail) {
- return (bool)filter_var($mail, FILTER_VALIDATE_EMAIL);
- }
-
- * Verifies the syntax of the given URL.
- *
- * This function should only be used on actual URLs. It should not be used for
- * Backdrop menu paths, which can contain arbitrary characters.
- * Valid values per RFC 3986.
- * @param $url
- * The URL to verify.
- * @param $absolute
- * Whether the URL is absolute (beginning with a scheme such as "http:").
- *
- * @return
- * TRUE if the URL is in a valid format.
- */
- function valid_url($url, $absolute = FALSE) {
- if ($absolute) {
- return (bool)preg_match("
- /^ # Start at the beginning of the text
- (?:ftp|https?|feed):\/\/ # Look for ftp, http, https or feed schemes
- (?: # Userinfo (optional) which is typically
- (?:(?:[\w\.\-\+!$&'\(\)*\+,;=]|%[0-9a-f]{2})+:)* # a username or a username and password
- (?:[\w\.\-\+%!$&'\(\)*\+,;=]|%[0-9a-f]{2})+@ # combination
- )?
- (?:
- (?:[a-z0-9\-\.]|%[0-9a-f]{2})+ # A domain name or a IPv4 address
- |(?:\[(?:[0-9a-f]{0,4}:)*(?:[0-9a-f]{0,4})\]) # or a well formed IPv6 address
- )
- (?::[0-9]+)? # Server port number (optional)
- (?:[\/|\?]
- (?:[\w#!:\.\?\+=&@$'~*,;\/\(\)\[\]\-]|%[0-9a-f]{2}) # The path and query (optional)
- *)?
- $/xi", $url);
- }
- else {
- return (bool)preg_match("/^(?:[\w#!:\.\?\+=&@$'~*,;\/\(\)\[\]\-]|%[0-9a-f]{2})+$/i", $url);
- }
- }
-
- * Verifies that a number is a multiple of a given step.
- *
- * The implementation assumes it is dealing with IEEE 754 double precision
- * floating point numbers that are used by PHP on most systems.
- *
- * @param mixed $value
- * The numeric value that needs to be checked, integer or float.
- * @param mixed $step
- * The step scale factor, integer or float. Must be positive.
- * @param mixed $offset
- * (optional) An offset, to which the difference must be a multiple of the
- * given step, integer or float.
- *
- * @return bool
- * TRUE if no step mismatch has occurred, or FALSE otherwise.
- */
- function valid_number_step($value, $step, $offset = 0.0) {
-
- if ($step == 0) {
- return FALSE;
- }
-
-
- $value = abs($value - $offset);
- $step = abs($step);
-
-
- if ($value == $step) {
- return TRUE;
- }
-
-
- if ((int) $value == $value && (int) $step == $step) {
- return $value % $step == 0;
- }
-
-
-
-
-
-
-
-
- $max_scale = 13;
- $step_string = rtrim(sprintf("%.{$max_scale}F", $step), '0');
- $value_string = rtrim(sprintf("%.{$max_scale}F", $value), '0');
-
-
-
-
-
-
-
- $step_scale = strpos(strrev($step_string), '.');
- $value_scale = strpos(strrev($value_string), '.');
- if ($value_scale > $step_scale) {
- if ($value_scale > 10 && $step_scale > 0 && strlen($value_string) - 1 > ini_get('precision')) {
- $value = round($value, $step_scale);
- }
- else {
- return FALSE;
- }
- }
-
-
-
-
- $step_int = intval($step * pow(10, $step_scale));
- $value_int = intval($value * pow(10, $step_scale));
- return $value_int % $step_int == 0;
- }
-
- * @} End of "defgroup validation".
- */
-
- * Registers an event for the current visitor to the flood control mechanism.
- *
- * @param $name
- * The name of an event.
- * @param $window
- * Optional number of seconds before this event expires. Defaults to 3600 (1
- * hour). Typically uses the same value as the flood_is_allowed() $window
- * parameter. Expired events are purged on cron run to prevent the flood table
- * from growing indefinitely.
- * @param $identifier
- * Optional identifier (defaults to the current user's IP address).
- */
- function flood_register_event($name, $window = 3600, $identifier = NULL) {
- if (!isset($identifier)) {
- $identifier = ip_address();
- }
- db_insert('flood')
- ->fields(array(
- 'event' => $name,
- 'identifier' => $identifier,
- 'timestamp' => REQUEST_TIME,
- 'expiration' => REQUEST_TIME + $window,
- ))
- ->execute();
- }
-
- * Makes the flood control mechanism forget an event for the current visitor.
- *
- * @param $name
- * The name of an event.
- * @param $identifier
- * Optional identifier (defaults to the current user's IP address).
- */
- function flood_clear_event($name, $identifier = NULL) {
- if (!isset($identifier)) {
- $identifier = ip_address();
- }
- db_delete('flood')
- ->condition('event', $name)
- ->condition('identifier', $identifier)
- ->execute();
- }
-
- * Checks whether a user is allowed to proceed with the specified event.
- *
- * Events can have thresholds saying that each user can only do that event
- * a certain number of times in a time window. This function verifies that the
- * current user has not exceeded this threshold.
- *
- * @param $name
- * The unique name of the event.
- * @param $threshold
- * The maximum number of times each user can do this event per time window.
- * @param $window
- * Number of seconds in the time window for this event (default is 3600
- * seconds, or 1 hour).
- * @param $identifier
- * Unique identifier of the current user. Defaults to their IP address.
- *
- * @return
- * TRUE if the user is allowed to proceed. FALSE if they have exceeded the
- * threshold and should not be allowed to proceed.
- */
- function flood_is_allowed($name, $threshold, $window = 3600, $identifier = NULL) {
- if (!isset($identifier)) {
- $identifier = ip_address();
- }
- $number = db_query("SELECT COUNT(*) FROM {flood} WHERE event = :event AND identifier = :identifier AND timestamp > :timestamp", array(
- ':event' => $name,
- ':identifier' => $identifier,
- ':timestamp' => REQUEST_TIME - $window))
- ->fetchField();
- return ($number < $threshold);
- }
-
- * @defgroup key_value_expire Temporary key-value store functions
- * @{
- * Functions to temporarily store arrays or objects.
- *
- * A "temp store" can be used to make temporary, non-cache data available across
- * requests. The data for the temp store is stored in one key/value collection.
- * Temp store data expires automatically after a given time frame.
- *
- * The temp store is different from a cache, because the data in it is not yet
- * saved permanently and so it cannot be rebuilt. Typically, the temp store
- * might be used to store work in progress that is later saved permanently
- * elsewhere, e.g. autosave data, multistep forms, or in-progress changes
- * to complex configuration that are not ready to be saved..
- */
-
- * Gets an object from the temp store.
- *
- * @param string $collection
- * A string defining the collection or group indicator. Must be less than 128
- * characters.
- * @param string $name
- * The name of the object being stored. Must be less than 128 characters.
- *
- * @return
- * The data that was stored.
- */
- function tempstore_get($collection, $name) {
- $data = db_query('SELECT * FROM {tempstore} WHERE collection = :collection AND name = :name', array(':collection' => $collection, ':name' => $name))->fetchObject();
- if ($data) {
- $data = unserialize($data->value);
- }
- return $data;
- }
-
- * Stores an object in the semi-persistent key-value store.
- *
- * @param string $collection
- * A string defining the collection or group indicator. Must be less than 128
- * characters.
- * @param string $name
- * The name of the object being stored. Must be less than 128 characters.
- * @param array|object $value
- * The data to be stored. This will be serialized prior to writing.
- * @param int $expire
- * The UNIX timestamp at which this value can be deleted.
- */
- function tempstore_set($collection, $name, $value, $expire) {
- tempstore_clear($collection, $name);
- db_insert('tempstore')
- ->fields(array(
- 'collection' => $collection,
- 'name' => $name,
- 'value' => serialize($value),
- 'expire' => $expire,
- ))
- ->execute();
- }
-
- * Removes an object from the semi-persistent key-value store.
- *
- * @param string $collection
- * A string defining the collection or group indicator.
- * @param string $name
- * The name of the object being cleared.
- */
- function tempstore_clear($collection, $name) {
- db_delete('tempstore')
- ->condition('collection', $collection)
- ->condition('name', $name)
- ->execute();
- }
-
- * Removes an entire group of objects from the semi-persistent key-value store.
- *
- * @param string $collection
- * A string defining the collection or group indicator.
- */
- function tempstore_clear_all($collection) {
- db_delete('tempstore')
- ->condition('collection', $collection)
- ->execute();
- }
-
- * @} End of "defgroup key_value_expire".
- */
-
- * @defgroup sanitization Sanitization functions
- * @{
- * Functions to sanitize values.
- *
- * See http://drupal.org/writing-secure-code for information
- * on writing secure code.
- */
-
- * Strips dangerous protocols (e.g. 'javascript:') from a URI.
- *
- * This function must be called for all URIs within user-entered input prior
- * to being output to an HTML attribute value. It is often called as part of
- * check_url() or filter_xss(), but those functions return an HTML-encoded
- * string, so this function can be called independently when the output needs to
- * be a plain-text string for passing to t(), l(), backdrop_attributes(), or
- * another function that will call check_plain() separately.
- *
- * @param $uri
- * A plain-text URI that might contain dangerous protocols.
- *
- * @return
- * A plain-text URI stripped of dangerous protocols. As with all plain-text
- * strings, this return value must not be output to an HTML page without
- * check_plain() being called on it. However, it can be passed to functions
- * expecting plain-text strings.
- *
- * @see check_url()
- */
- function backdrop_strip_dangerous_protocols($uri) {
- static $allowed_protocols;
-
- if (!isset($allowed_protocols)) {
- $allowed_protocols = array_flip(settings_get('filter_allowed_protocols', array('ftp', 'http', 'https', 'irc', 'mailto', 'news', 'nntp', 'rtsp', 'sftp', 'ssh', 'tel', 'telnet', 'webcal')));
- }
-
-
- do {
- $before = $uri;
- $colon_position = strpos($uri, ':');
- if ($colon_position > 0) {
-
- $protocol = substr($uri, 0, $colon_position);
-
-
-
- if (preg_match('![/?#]!', $protocol)) {
- break;
- }
-
-
- if (!isset($allowed_protocols[strtolower($protocol)])) {
- $uri = substr($uri, $colon_position + 1);
- }
- }
- } while ($before != $uri);
-
- return $uri;
- }
-
- * Strips dangerous protocols from a URI and encodes it for output to HTML.
- *
- * @param $uri
- * A plain-text URI that might contain dangerous protocols.
- *
- * @return
- * A URI stripped of dangerous protocols and encoded for output to an HTML
- * attribute value. Because it is already encoded, it should not be set as a
- * value within a $attributes array passed to backdrop_attributes(), because
- * backdrop_attributes() expects those values to be plain-text strings. To pass
- * a filtered URI to backdrop_attributes(), call
- * backdrop_strip_dangerous_protocols() instead.
- *
- * @see backdrop_strip_dangerous_protocols()
- */
- function check_url($uri) {
- return check_plain(backdrop_strip_dangerous_protocols($uri));
- }
-
- * Applies a very permissive XSS/HTML filter for admin-only use.
- *
- * Use only for fields where it is impractical to use the
- * whole filter system, but where some (mainly inline) mark-up
- * is desired (so check_plain() is not acceptable).
- *
- * Allows all tags that can be used inside an HTML body, save
- * for scripts and styles.
- */
- function filter_xss_admin($string) {
- return filter_xss($string, array('a', 'abbr', 'acronym', 'address', 'article', 'aside', 'b', 'bdi', 'bdo', 'big', 'blockquote', 'br', 'caption', 'cite', 'code', 'col', 'colgroup', 'command', 'dd', 'del', 'details', 'dfn', 'div', 'dl', 'dt', 'em', 'figcaption', 'figure', 'footer', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'header', 'hgroup', 'hr', 'i', 'img', 'ins', 'kbd', 'li', 'mark', 'menu', 'meter', 'nav', 'ol', 'output', 'p', 'pre', 'progress', 'q', 'rp', 'rt', 'ruby', 's', 'samp', 'section', 'small', 'span', 'strong', 'sub', 'summary', 'sup', 'table', 'tbody', 'td', 'tfoot', 'th', 'thead', 'time', 'tr', 'tt', 'u', 'ul', 'var', 'wbr'));
- }
-
- * Filters HTML to prevent cross-site-scripting (XSS) vulnerabilities.
- *
- * Based on kses by Ulf Harnhammar, see http://sourceforge.net/projects/kses.
- * For examples of various XSS attacks, see: http://ha.ckers.org/xss.html.
- *
- * This code does four things:
- * - Removes characters and constructs that can trick browsers.
- * - Makes sure all HTML entities are well-formed.
- * - Makes sure all HTML tags and attributes are well-formed.
- * - Makes sure no HTML tags contain URLs with a disallowed protocol (e.g.
- * javascript:).
- *
- * @param $string
- * The string with raw HTML in it. It will be stripped of everything that can
- * cause an XSS attack.
- * @param $allowed_tags
- * An array of allowed tags. Defaults to the array returned by
- * _filter_xss_allowed_tags().
- *
- * @return
- * An XSS safe version of $string, or an empty string if $string is not
- * valid UTF-8.
- *
- * @see backdrop_validate_utf8()
- */
- function filter_xss($string, $allowed_tags = NULL) {
- if ($allowed_tags === NULL) {
- $allowed_tags = _filter_xss_allowed_tags();
- }
-
-
- if (!backdrop_validate_utf8($string)) {
- return '';
- }
- $string = (string) $string;
-
- _filter_xss_split($allowed_tags, TRUE);
-
- $string = str_replace(chr(0), '', $string);
-
- $string = preg_replace('%&\s*\{[^}]*(\}\s*;?|$)%', '', $string);
-
-
- $string = str_replace('&', '&', $string);
-
-
- $string = preg_replace('/&#([0-9]+;)/', '&#\1', $string);
-
- $string = preg_replace('/&#[Xx]0*((?:[0-9A-Fa-f]{2})+;)/', '&#x\1', $string);
-
- $string = preg_replace('/&([A-Za-z][A-Za-z0-9]*;)/', '&\1', $string);
-
- return preg_replace_callback('%
- (
- <(?=[^a-zA-Z!/]) # a lone <
- | # or
- <!--.*?--> # a comment
- | # or
- <[^>]*(>|$) # a string that starts with a <, up until the > or the end of the string
- | # or
- > # just a >
- )%x', '_filter_xss_split', $string);
- }
-
- * List of the default tags allowed by filter_xss().
- */
- function _filter_xss_allowed_tags() {
- return array('a', 'em', 'strong', 'cite', 'blockquote', 'code', 'ul', 'ol', 'li', 'dl', 'dt', 'dd');
- }
-
- * Human-readable list of the default tags allowed by filter_xss(), for display
- * in help texts.
- */
- function _filter_xss_display_allowed_tags() {
- return '<' . implode('> <', _filter_xss_allowed_tags()) . '>';
- }
-
- * Processes an HTML tag.
- *
- * @param $m
- * An array with various meaning depending on the value of $store.
- * If $store is TRUE then the array contains the allowed tags.
- * If $store is FALSE then the array has one element, the HTML tag to process.
- * @param $store
- * Whether to store $m.
- *
- * @return string
- * If the element isn't allowed, an empty string. Otherwise, the cleaned up
- * version of the HTML element.
- */
- function _filter_xss_split($m, $store = FALSE) {
- static $allowed_html;
-
- if ($store) {
- $allowed_html = array_flip($m);
- return '';
- }
-
- $string = $m[1];
-
- if (substr($string, 0, 1) != '<') {
-
- return '>';
- }
- elseif (strlen($string) == 1) {
-
- return '<';
- }
-
- if (!preg_match('%^<\s*(/\s*)?([a-zA-Z0-9\-]+)([^>]*)>?|(<!--.*?-->)$%', $string, $matches)) {
-
- return '';
- }
-
- $slash = trim($matches[1]);
- $elem = &$matches[2];
- $attrlist = &$matches[3];
- $comment = &$matches[4];
-
- if ($comment) {
- $elem = '!--';
- }
-
- if (!isset($allowed_html[strtolower($elem)])) {
-
- return '';
- }
-
- if ($comment) {
- return $comment;
- }
-
- if ($slash != '') {
- return "</$elem>";
- }
-
-
- $attrlist = preg_replace('%(\s?)/\s*$%', '\1', $attrlist, -1, $count);
- $xhtml_slash = $count ? ' /' : '';
-
-
- $attr2 = implode(' ', _filter_xss_attributes($attrlist));
- $attr2 = preg_replace('/[<>]/', '', $attr2);
- $attr2 = strlen($attr2) ? ' ' . $attr2 : '';
-
- return "<$elem$attr2$xhtml_slash>";
- }
-
- * Processes a string of HTML attributes.
- *
- * @return
- * Cleaned up version of the HTML attributes.
- */
- function _filter_xss_attributes($attr) {
- $attrarr = array();
- $skip = FALSE;
- $mode = 0;
- $attrname = '';
-
- while (strlen($attr) != 0) {
-
- $working = 0;
-
- switch ($mode) {
- case 0:
-
- if (preg_match('/^([-a-zA-Z]+)/', $attr, $match)) {
- $attrname = strtolower($match[1]);
- $skip = (
- $attrname == 'style' ||
- substr($attrname, 0, 2) == 'on' ||
- substr($attrname, 0, 1) == '-' ||
-
- strlen($attrname) > 96
- );
- $working = $mode = 1;
- $attr = preg_replace('/^[-a-zA-Z]+/', '', $attr);
- }
- break;
-
- case 1:
-
- if (preg_match('/^\s*=\s*/', $attr)) {
- $working = 1; $mode = 2;
- $attr = preg_replace('/^\s*=\s*/', '', $attr);
- break;
- }
-
- if (preg_match('/^\s+/', $attr)) {
- $working = 1; $mode = 0;
- if (!$skip) {
- $attrarr[] = $attrname;
- }
- $attr = preg_replace('/^\s+/', '', $attr);
- }
- break;
-
- case 2:
-
- if (preg_match('/^"([^"]*)"(\s+|$)/', $attr, $match)) {
-
-
- if (strpos($attrname, 'data-') === 0 || $attrname == 'alt' || $attrname == 'title') {
- $thisval = $match[1];
- }
-
- else {
- $thisval = filter_xss_bad_protocol($match[1]);
- }
-
- if (!$skip) {
- $attrarr[] = "$attrname=\"$thisval\"";
- }
- $working = 1;
- $mode = 0;
- $attr = preg_replace('/^"[^"]*"(\s+|$)/', '', $attr);
- break;
- }
-
- if (preg_match("/^'([^']*)'(\s+|$)/", $attr, $match)) {
- $thisval = filter_xss_bad_protocol($match[1]);
-
- if (!$skip) {
- $attrarr[] = "$attrname='$thisval'";
- }
- $working = 1; $mode = 0;
- $attr = preg_replace("/^'[^']*'(\s+|$)/", '', $attr);
- break;
- }
-
- if (preg_match("%^([^\s\"']+)(\s+|$)%", $attr, $match)) {
- $thisval = filter_xss_bad_protocol($match[1]);
-
- if (!$skip) {
- $attrarr[] = "$attrname=\"$thisval\"";
- }
- $working = 1; $mode = 0;
- $attr = preg_replace("%^[^\s\"']+(\s+|$)%", '', $attr);
- }
- break;
- }
-
- if ($working == 0) {
-
- $attr = preg_replace('/
- ^
- (
- "[^"]*("|$) # - a string that starts with a double quote, up until the next double quote or the end of the string
- | # or
- \'[^\']*(\'|$)| # - a string that starts with a quote, up until the next quote or the end of the string
- | # or
- \S # - a non-whitespace character
- )* # any number of the above three
- \s* # any number of whitespaces
- /x', '', $attr);
- $mode = 0;
- }
- }
-
-
- if ($mode == 1 && !$skip) {
- $attrarr[] = $attrname;
- }
- return $attrarr;
- }
-
- * Processes an HTML attribute value and strips dangerous protocols from URLs.
- *
- * @param $string
- * The string with the attribute value.
- * @param $decode
- * (deprecated) Whether to decode entities in the $string. Set to FALSE if the
- * $string is in plain text, TRUE otherwise. Defaults to TRUE. This parameter
- * is deprecated and will be removed. To process a plain-text URI,
- * call backdrop_strip_dangerous_protocols() or check_url() instead.
- *
- * @return
- * Cleaned up and HTML-escaped version of $string.
- */
- function filter_xss_bad_protocol($string, $decode = TRUE) {
-
-
- if ($decode) {
- if (!function_exists('decode_entities')) {
- require_once BACKDROP_ROOT . '/core/includes/unicode.inc';
- }
-
- $string = decode_entities($string);
- }
- return check_plain(backdrop_strip_dangerous_protocols($string));
- }
-
- * @} End of "defgroup sanitization".
- */
-
- * @defgroup format Formatting
- * @{
- * Functions to format numbers, strings, dates, etc.
- */
-
- * Formats an RSS channel.
- *
- * Arbitrary elements may be added using the $args associative array.
- */
- function format_rss_channel($title, $link, $description, $items, $langcode = NULL, $args = array()) {
- global $language_content;
- $langcode = $langcode ? $langcode : $language_content->langcode;
-
- $output = "<channel>\n";
- $output .= ' <title>' . check_plain($title) . "</title>\n";
- $output .= ' <link>' . check_url($link) . "</link>\n";
-
-
-
-
- $output .= ' <description>' . check_plain(decode_entities(strip_tags($description))) . "</description>\n";
- $output .= ' <language>' . check_plain($langcode) . "</language>\n";
- $output .= format_xml_elements($args);
- $output .= $items;
- $output .= "</channel>\n";
-
- return $output;
- }
-
- * Formats a single RSS item.
- *
- * Arbitrary elements may be added using the $args associative array.
- */
- function format_rss_item($title, $link, $description, $args = array()) {
- $output = "<item>\n";
- $output .= ' <title>' . check_plain($title) . "</title>\n";
- $output .= ' <link>' . check_url($link) . "</link>\n";
- $output .= ' <description>' . check_plain($description) . "</description>\n";
- $output .= format_xml_elements($args);
- $output .= "</item>\n";
-
- return $output;
- }
-
- * Recursively formats nested XML array elements as a string.
- *
- * @param array $array
- * An array where each item represents an element and is either a:
- * - (key => value) pair (<key>value</key>)
- * - Associative array with fields:
- * - 'key': element name
- * - 'value': element contents
- * - 'attributes': associative array of element attributes
- * - 'encoded': TRUE if 'value' is already encoded
- *
- * In both cases, 'value' can be a simple string, or it can be another array
- * with the same format as $array itself for nesting.
- *
- * If 'encoded' is TRUE it is up to the caller to ensure that 'value' is
- * either entity-encoded or CDATA-escaped. Using this option is not
- * recommended when working with untrusted user input, since failing to escape
- * the data correctly has security implications.
- *
- * @param int $indentation_level
- * Internal-use only indentation level. This function is called recursively
- * and this parameter is used to increase indentation in each nesting.
- *
- * @since 1.12.7 Added $indentation_level parameter.
- *
- * @return string
- * A string of XML representing the elements passed in.
- */
- function format_xml_elements(array $array, $indentation_level = 0) {
- $output = '';
-
-
- $indentation = str_repeat(' ', $indentation_level * 2);
-
- foreach ($array as $key => $value) {
- if (is_numeric($key)) {
- if ($value['key']) {
- $output .= $indentation . '<' . $value['key'];
- if (isset($value['attributes']) && is_array($value['attributes'])) {
- $output .= backdrop_attributes($value['attributes']);
- }
-
- if (isset($value['value']) && $value['value'] != '') {
- $output .= '>';
- if (is_array($value['value'])) {
- $output .= "\n" . format_xml_elements($value['value'], $indentation_level + 1);
- $output .= $indentation . '</' . $value['key'] . ">\n";
- }
- else {
- if (!empty($value['encoded'])) {
- $output .= $value['value'];
- }
- else {
- $output .= check_plain($value['value']);
- }
- $output .= '</' . $value['key'] . ">\n";
- }
- }
- else {
- $output .= " />\n";
- }
- }
- }
- else {
- $output .= $indentation . '<' . $key . '>';
- if (is_array($value)) {
- $output .= "\n" . format_xml_elements($value, $indentation_level + 1);
- $output .= $indentation . "</$key>\n";
- }
- else {
- $output .= check_plain($value) . "</$key>\n";
- }
- }
- }
- return $output;
- }
-
- * Formats a string containing a count of items.
- *
- * This function ensures that the string is pluralized correctly. Since t() is
- * called by this function, make sure not to pass already-localized strings to
- * it.
- *
- * For example:
- * @code
- * $output = format_plural($node->comment_count, '1 comment', '@count comments');
- * @endcode
- *
- * Example with additional replacements:
- * @code
- * $output = format_plural($update_count,
- * 'Changed the content type of 1 post from %old-type to %new-type.',
- * 'Changed the content type of @count posts from %old-type to %new-type.',
- * array('%old-type' => $info->old_type, '%new-type' => $info->new_type));
- * @endcode
- *
- * @param $count
- * The item count to display.
- * @param $singular
- * The string for the singular case. Make sure it is clear this is singular,
- * to ease translation (e.g. use "1 new comment" instead of "1 new"). Do not
- * use @count in the singular string.
- * @param $plural
- * The string for the plural case. Make sure it is clear this is plural, to
- * ease translation. Use @count in place of the item count, as in
- * "@count new comments".
- * @param $args
- * An associative array of replacements to make after translation. Instances
- * of any key in this array are replaced with the corresponding value.
- * Based on the first character of the key, the value is escaped and/or
- * themed. See format_string(). Note that you do not need to include @count
- * in this array; this replacement is done automatically for the plural case.
- * @param $options
- * An associative array of additional options. See t() for allowed keys.
- *
- * @return
- * A translated string.
- *
- * @see t()
- * @see format_string()
- */
- function format_plural($count, $singular, $plural, array $args = array(), array $options = array()) {
- $args['@count'] = $count;
- if ($count == 1) {
- return t($singular, $args, $options);
- }
-
-
- $index = (function_exists('locale_get_plural')) ? locale_get_plural($count, isset($options['langcode']) ? $options['langcode'] : NULL) : -1;
-
-
- if ($index < 0) {
- return t($plural, $args, $options);
- }
- else {
- switch ($index) {
- case "0":
- return t($singular, $args, $options);
- case "1":
- return t($plural, $args, $options);
- default:
- unset($args['@count']);
- $args['@count[' . $index . ']'] = $count;
- return t(strtr($plural, array('@count' => '@count[' . $index . ']')), $args, $options);
- }
- }
- }
-
- * Parses a given byte count.
- *
- * @param $size
- * A size expressed as a number of bytes with optional SI or IEC binary unit
- * prefix (e.g. 2, 3K, 5MB, 10G, 6GiB, 8 bytes, 9mbytes).
- *
- * @return
- * An integer representation of the size in bytes.
- */
- function parse_size($size) {
- $unit = preg_replace('/[^bkmgtpezy]/i', '', $size);
- $size = (float) preg_replace('/[^0-9\.]/', '', $size);
- if ($unit) {
-
- return round($size * pow(BACKDROP_KILOBYTE, stripos('bkmgtpezy', $unit[0])));
- }
- else {
- return round($size);
- }
- }
-
- * Generates a string representation for the given byte count.
- *
- * @param $size
- * A size in bytes.
- * @param $langcode
- * Optional language code to translate to a language other than what is used
- * to display the page.
- *
- * @return
- * A translated string representation of the size.
- */
- function format_size($size, $langcode = NULL) {
- if ($size < BACKDROP_KILOBYTE) {
- return format_plural($size, '1 byte', '@count bytes', array(), array('langcode' => $langcode));
- }
- else {
- $size = $size / BACKDROP_KILOBYTE;
- $units = array(
- t('@size KB', array(), array('langcode' => $langcode)),
- t('@size MB', array(), array('langcode' => $langcode)),
- t('@size GB', array(), array('langcode' => $langcode)),
- t('@size TB', array(), array('langcode' => $langcode)),
- t('@size PB', array(), array('langcode' => $langcode)),
- t('@size EB', array(), array('langcode' => $langcode)),
- t('@size ZB', array(), array('langcode' => $langcode)),
- t('@size YB', array(), array('langcode' => $langcode)),
- );
- $unit = reset($units);
- foreach ($units as $unit) {
- if (round($size, 2) >= BACKDROP_KILOBYTE) {
- $size = $size / BACKDROP_KILOBYTE;
- }
- else {
- break;
- }
- }
- return str_replace('@size', round($size, 2), $unit);
- }
- }
-
- * Formats a time interval with the requested granularity.
- *
- * @param $interval
- * The length of the interval in seconds.
- * @param $granularity
- * How many different units to display in the string.
- * @param $langcode
- * Optional language code to translate to a language other than
- * what is used to display the page.
- *
- * @return
- * A translated string representation of the interval.
- */
- function format_interval($interval, $granularity = 2, $langcode = NULL) {
- $units = array(
- '1 year|@count years' => 31536000,
- '1 month|@count months' => 2592000,
- '1 week|@count weeks' => 604800,
- '1 day|@count days' => 86400,
- '1 hour|@count hours' => 3600,
- '1 min|@count min' => 60,
- '1 sec|@count sec' => 1
- );
- $output = '';
- foreach ($units as $key => $value) {
- $key = explode('|', $key);
- if ($interval >= $value) {
- $output .= ($output ? ' ' : '') . format_plural(floor($interval / $value), $key[0], $key[1], array(), array('langcode' => $langcode));
- $interval = (int) $interval % $value;
- $granularity--;
- }
-
- if ($granularity == 0) {
- break;
- }
- }
- return $output ? $output : t('0 sec', array(), array('langcode' => $langcode));
- }
-
- * Formats a date, using a date type or a custom date format string.
- *
- * @param $timestamp
- * A UNIX timestamp to format.
- * @param $date_format_name
- * (optional) The format to use, one of:
- * - One of the built-in formats: 'short', 'medium', 'long', 'html_datetime',
- * 'html_date', 'html_time', 'html_yearless_date', 'html_week',
- * 'html_month', 'html_year'.
- * - The machine name of an administrator-defined date format.
- * - 'custom', to use $format.
- * Defaults to 'medium'.
- * @param $pattern
- * (optional) If $date_format_name is 'custom', a PHP date format string
- * suitable for input to date(). Use a backslash to escape ordinary text, so
- * it does not get interpreted as date format characters.
- * @param $timezone
- * (optional) Time zone identifier, as described at
- * http://php.net/manual/timezones.php Defaults to the time zone used to
- * display the page.
- * @param $langcode
- * (optional) Language code to translate to. Defaults to the language used to
- * display the page.
- *
- * @return
- * A translated date string in the requested format.
- */
- function format_date($timestamp, $date_format_name = 'medium', $pattern = '', $timezone = NULL, $langcode = NULL) {
-
- static $backdrop_static_fast;
- if (!isset($backdrop_static_fast)) {
- $backdrop_static_fast['timezones'] = &backdrop_static(__FUNCTION__);
- }
- $timezones = &$backdrop_static_fast['timezones'];
-
- if (!isset($timezone)) {
- $timezone = date_default_timezone_get();
- }
-
-
- if (!isset($timezones[$timezone])) {
- $timezones[$timezone] = timezone_open($timezone);
- }
-
-
- global $language;
- if (empty($langcode)) {
- $langcode = isset($language->langcode) ? $language->langcode : LANGUAGE_SYSTEM;
- }
-
-
- $date_time = date_create('@' . $timestamp);
-
- date_timezone_set($date_time, $timezones[$timezone]);
-
-
- if ($date_format_name != 'custom') {
- $date_format = system_date_format_load($date_format_name);
- if (!empty($date_format)) {
- $pattern = isset($date_format['locales'][$langcode]) ? $date_format['locales'][$langcode] : $date_format['pattern'];
- }
- }
-
-
- if (empty($pattern)) {
- $date_format = system_date_format_load('medium');
- $pattern = $date_format['pattern'];
- }
-
-
-
-
-
-
- $pattern = preg_replace(array('/\\\\\\\\/', '/(?<!\\\\)([AaeDlMTF])/'), array("\xEF\\\\\\\\\xFF", "\xEF\\\\\$1\$1\xFF"), $pattern);
-
-
- $formatted_date_time = date_format($date_time, $pattern);
-
-
- _format_date_callback(NULL, $langcode);
-
-
- return preg_replace_callback('/\xEF([AaeDlMTF]?)(.*?)\xFF/', '_format_date_callback', $formatted_date_time);
- }
-
- * Translates a formatted date string.
- *
- * Callback for preg_replace_callback() within format_date().
- *
- * @param array $matches
- * The array of matches as found by preg_replace_callback().
- * @param string $new_langcode
- * Sets the internal langcode to be used. Set the langcode prior to calling
- * preg_replace_callback().
- *
- * @return string
- * The date from $matches as a translated string.
- */
- function _format_date_callback(array $matches = NULL, $new_langcode = NULL) {
-
- static $cache, $langcode;
-
- if (!isset($matches)) {
- $langcode = $new_langcode;
- return NULL;
- }
-
- $code = $matches[1];
- $string = $matches[2];
-
- if (!isset($cache[$langcode][$code][$string])) {
- $options = array(
- 'langcode' => $langcode,
- );
-
- if ($code == 'F') {
- $options['context'] = 'Long month name';
- }
-
- if ($code == '') {
- $cache[$langcode][$code][$string] = $string;
- }
- else {
- $cache[$langcode][$code][$string] = t($string, array(), $options);
- }
- }
- return $cache[$langcode][$code][$string];
- }
-
- * @} End of "defgroup format".
- */
-
- * Generates an internal or external URL.
- *
- * When creating links in modules, consider whether l() could be a better
- * alternative than url().
- *
- * @param $path
- * (optional) The internal path or external URL being linked to, such as
- * "node/34" or "http://example.com/foo". The default value is equivalent to
- * passing in '<front>'. A few notes:
- * - If you provide a full URL, it will be considered an external URL.
- * - If you provide only the path (e.g. "node/34"), it will be
- * considered an internal link. In this case, it should be a system URL,
- * and it will be replaced with the alias, if one exists. Additional query
- * arguments for internal paths must be supplied in $options['query'], not
- * included in $path.
- * - If you provide an internal path and $options['alias'] is set to TRUE, the
- * path is assumed already to be the correct URL alias, and the alias is
- * not looked up.
- * - The special string '<front>' generates a link to the site's base URL.
- * - If your external URL contains a query (e.g. http://example.com/foo?a=b),
- * then you can either URL encode the query keys and values yourself and
- * include them in $path, or use $options['query'] to let this function
- * URL encode them.
- * @param $options
- * (optional) An associative array of additional options, with the following
- * elements:
- * - 'query': An array of query key/value-pairs (without any URL-encoding) to
- * append to the URL.
- * - 'fragment': A fragment identifier (named anchor) to append to the URL.
- * Do not include the leading '#' character.
- * - 'absolute': Defaults to FALSE. Whether to force the output to be an
- * absolute link (beginning with http:). Useful for links that will be
- * displayed outside the site, such as in an RSS feed.
- * - 'alias': Defaults to FALSE. Whether the given path is a URL alias
- * already.
- * - 'external': Whether the given path is an external URL.
- * - 'language': An optional language object. If the path being linked to is
- * internal to the site, $options['language'] is used to look up the alias
- * for the URL. If $options['language'] is omitted, the global $language_url
- * will be used.
- * - 'clean': Force the enabling or disabling of the "Clean URLs" option for
- * the returned URL. If omitted, the site-wide setting will be used.
- * - 'https': Whether this URL should point to a secure location. If not
- * defined, the current scheme is used, so the user stays on HTTP or HTTPS
- * respectively. TRUE enforces HTTPS and FALSE enforces HTTP, but HTTPS can
- * only be enforced when the variable 'https' is set to TRUE.
- * - 'base_url': Only used internally, to modify the base URL when a language
- * dependent URL requires so.
- * - 'prefix': Only used internally, to modify the path when a language
- * dependent URL requires so.
- * - 'script': The script filename in Backdrop's root directory to use when
- * clean URLs are disabled, such as 'index.php'. Defaults to an empty
- * string, as most modern web servers automatically find 'index.php'. If
- * clean URLs are disabled, the value of $path is appended as query
- * parameter 'q' to $options['script'] in the returned URL. When deploying
- * Backdrop on a web server that cannot be configured to automatically find
- * index.php, then hook_url_outbound_alter() can be implemented to force
- * this value to 'index.php'.
- * - 'entity_type': The entity type of the object that called url(). Only
- * set if url() is invoked by entity_uri().
- * - 'entity': The entity object (such as a node) for which the URL is being
- * generated. Only set if url() is invoked by entity_uri().
- *
- * @return
- * A string containing a URL to the given path.
- */
- function url($path = NULL, array $options = array()) {
-
- $options += array(
- 'fragment' => '',
- 'query' => array(),
- 'absolute' => FALSE,
- 'alias' => FALSE,
- 'prefix' => ''
- );
-
-
-
-
- if (!isset($options['external'])) {
- $options['external'] = (isset($_GET['q']) && $path === $_GET['q']) ? FALSE : url_is_external($path);
- }
-
-
- $original_path = $path;
-
-
- backdrop_alter('url_outbound', $path, $options, $original_path);
-
- if (isset($options['fragment']) && $options['fragment'] !== '') {
- $options['fragment'] = '#' . $options['fragment'];
- }
-
- if ($options['external']) {
-
- if (strpos($path, '#') !== FALSE) {
- list($path, $old_fragment) = explode('#', $path, 2);
-
- if (isset($old_fragment) && !$options['fragment']) {
- $options['fragment'] = '#' . $old_fragment;
- }
- }
-
- if ($options['query']) {
- $path .= (strpos($path, '?') !== FALSE ? '&' : '?') . backdrop_http_build_query($options['query']);
- }
- if (isset($options['https']) && settings_get('https', FALSE)) {
- if ($options['https'] === TRUE) {
- $path = str_replace('http://', 'https://', $path);
- }
- elseif ($options['https'] === FALSE) {
- $path = str_replace('https://', 'http://', $path);
- }
- }
-
- return $path . $options['fragment'];
- }
-
-
-
-
- $path = ltrim((string) $path, '/');
-
- global $base_url, $base_secure_url, $base_insecure_url;
-
-
- if (!isset($options['base_url'])) {
- if (isset($options['https']) && settings_get('https', FALSE)) {
- if ($options['https'] === TRUE) {
- $options['base_url'] = $base_secure_url;
- $options['absolute'] = TRUE;
- }
- elseif ($options['https'] === FALSE) {
- $options['base_url'] = $base_insecure_url;
- $options['absolute'] = TRUE;
- }
- }
- else {
- $options['base_url'] = $base_url;
- }
- }
-
-
- if ($path == '<front>') {
- $path = '';
- }
- elseif (!empty($path) && !$options['alias']) {
- $langcode = isset($options['language']) && isset($options['language']->langcode) ? $options['language']->langcode : '';
- $alias = backdrop_get_path_alias($original_path, $langcode);
- if ($alias != $original_path) {
-
-
-
- $path = ltrim($alias, '/');
- }
- }
-
- $base = $options['absolute'] ? $options['base_url'] . '/' : base_path();
- $prefix = empty($path) ? rtrim((string) $options['prefix'], '/') : $options['prefix'];
-
-
- static $backdrop_static_fast;
- if (!isset($backdrop_static_fast)) {
- $backdrop_static_fast['clean_urls_enabled'] = &backdrop_static(__FUNCTION__);
- }
- $clean_urls_enabled = &$backdrop_static_fast['clean_urls_enabled'];
- if (!isset($clean_urls_enabled)) {
- try {
- $clean_urls_enabled = config_get('system.core', 'clean_url') ? TRUE : FALSE;
- }
- catch (ConfigException $e) {
- $clean_urls_enabled = FALSE;
- }
- }
-
- if (isset($options['clean'])) {
- $clean_url = $options['clean'];
- }
- else {
- $clean_url = $clean_urls_enabled;
- }
-
-
- if (!empty($clean_url)) {
- $path = backdrop_encode_path($prefix . $path);
- if ($options['query']) {
- return $base . $path . '?' . backdrop_http_build_query($options['query']) . $options['fragment'];
- }
- else {
- return $base . $path . $options['fragment'];
- }
- }
-
- else {
- $path = $prefix . $path;
- $query = array();
- if (!empty($path)) {
- $query['q'] = $path;
- }
- if ($options['query']) {
-
-
- $query += $options['query'];
- }
- $query = $query ? ('?' . backdrop_http_build_query($query)) : '';
- $script = isset($options['script']) ? $options['script'] : '';
- return $base . $script . $query . $options['fragment'];
- }
- }
-
- * Returns TRUE if a path is external to Backdrop (e.g. http://example.com).
- *
- * If a path cannot be assessed by Backdrop's menu handler, then we must
- * treat it as potentially insecure.
- *
- * @param $path
- * The internal path or external URL being linked to, such as "node/34" or
- * "http://example.com/foo".
- *
- * @return
- * Boolean TRUE or FALSE, where TRUE indicates an external path.
- */
- function url_is_external($path) {
- $path = (string) $path;
- $colon_position = strpos($path, ':');
-
- $path = str_replace('\\', '/', $path);
-
-
-
- return (strpos($path, '//') === 0)
-
-
-
- || (preg_match('/^\p{C}/u', $path) !== 0)
-
-
- || ($colon_position !== FALSE
- && !preg_match('![/?#]!', substr($path, 0, $colon_position))
- && backdrop_strip_dangerous_protocols($path) == $path);
- }
-
- * Formats an attribute string for an HTTP header.
- *
- * @param $attributes
- * An associative array of attributes such as 'rel'.
- *
- * @return
- * A ; separated string ready for insertion in a HTTP header. No escaping is
- * performed for HTML entities, so this string is not safe to be printed.
- *
- * @see backdrop_add_http_header()
- */
- function backdrop_http_header_attributes(array $attributes = array()) {
- foreach ($attributes as $attribute => &$data) {
- if (is_array($data)) {
- $data = implode(' ', $data);
- }
- $data = $attribute . '="' . $data . '"';
- }
- return $attributes ? ' ' . implode('; ', $attributes) : '';
- }
-
- * Converts an associative array to an XML/HTML tag attribute string.
- *
- * Each array key and its value will be formatted into an attribute string.
- * If a value is itself an array, then its elements are concatenated to a single
- * space-delimited string (for example, a class attribute with multiple values).
- *
- * Attribute values are sanitized by running them through check_plain().
- * Attribute names are not automatically sanitized. When using user-supplied
- * attribute names, it is strongly recommended to ensure that they are allowed,
- * since certain attributes carry security risks and can be abused.
- *
- * Examples of security aspects when using backdrop_attributes:
- * @code
- * // By running the value in the following statement through check_plain,
- * // the malicious script is neutralized.
- * backdrop_attributes(array('title' => t('<script>steal_cookie();</script>')));
- *
- * // The statement below demonstrates dangerous use of backdrop_attributes, and
- * // will return an onmouseout attribute with JavaScript code that, when used
- * // as attribute in a tag, will cause users to be redirected to another site.
- * //
- * // In this case, the 'onmouseout' attribute should not be allowed --
- * // you don't want users to have the ability to add this attribute or others
- * // that take JavaScript commands.
- * backdrop_attributes(array('onmouseout' => 'window.location="http://malicious.com/";')));
- * @endcode
- *
- * @param $attributes
- * An associative array of key-value pairs to be converted to attributes.
- *
- * @return
- * A string ready for insertion in a tag (starts with a space).
- *
- * @ingroup sanitization
- */
- function backdrop_attributes(array $attributes = array()) {
- foreach ($attributes as $attribute => &$data) {
- $data = implode(' ', (array) $data);
- $data = $attribute . '="' . check_plain($data) . '"';
- }
- return $attributes ? ' ' . implode(' ', $attributes) : '';
- }
-
- * Formats an internal or external URL link as an HTML anchor tag.
- *
- * This function correctly handles aliased paths and adds an 'active' class
- * attribute to links that point to the current page (for theme development),
- * so all internal links output by modules should be generated by this function
- * if possible.
- *
- * However, for links enclosed in translatable text you should use t() and
- * embed the HTML anchor tag directly in the translated string. For example:
- * @code
- * t('Visit the <a href="@url">settings</a> page', array('@url' => url('admin')));
- * @endcode
- * This keeps the context of the link title ('settings' in the example) for
- * translators.
- *
- * @param string $text
- * The translated link text for the anchor tag.
- * @param string $path
- * The internal path or external URL being linked to, such as "node/34" or
- * "http://example.com/foo". After the url() function is called to construct
- * the URL from $path and $options, the resulting URL is passed through
- * check_plain() before it is inserted into the HTML anchor tag, to ensure
- * well-formed HTML. See url() for more information and notes.
- * @param array $options
- * An associative array of additional options. Defaults to an empty array. It
- * may contain the following elements.
- * - 'attributes': An associative array of HTML attributes to apply to the
- * anchor tag. If element 'class' is included, it must be an array; 'title'
- * must be a string; other elements are more flexible, as they just need
- * to work in a call to backdrop_attributes($options['attributes']).
- * - 'html' (default FALSE): Whether $text is HTML or just plain-text. For
- * example, to make an image tag into a link, this must be set to TRUE, or
- * you will see the escaped HTML image tag. $text is not sanitized if
- * 'html' is TRUE. The calling function must ensure that $text is already
- * safe.
- * - 'language': An optional language object. If the path being linked to is
- * internal to the site, $options['language'] is used to determine whether
- * the link is "active", or pointing to the current page (the language as
- * well as the path must match). This element is also used by url().
- * - Additional $options elements used by the url() function.
- *
- * @return string
- * An HTML string containing a link to the given path.
- *
- * @see url()
- * @see theme_link()
- */
- function l($text, $path, array $options = array()) {
- global $language_url;
-
-
- $options += array(
- 'attributes' => array(),
- 'query' => array(),
- 'html' => FALSE,
- 'language' => NULL,
- );
-
-
- if (($path == $_GET['q'] || ($path == '<front>' && backdrop_is_front_page())) &&
- (empty($options['language']) || $options['language']->langcode == $language_url->langcode)) {
- $options['attributes']['class'][] = 'active';
- $options['attributes']['aria-current'] = 'page';
- }
-
-
-
- if (isset($options['attributes']['title']) && strpos($options['attributes']['title'], '<') !== FALSE) {
- $options['attributes']['title'] = strip_tags($options['attributes']['title']);
- }
-
-
- $attributes = backdrop_attributes($options['attributes']);
- unset($options['attributes']);
-
- $url = url($path, $options);
- $skip_js_paths = array(
- 'javascript:void()',
- 'javascript:void();',
- 'javascript:void(0)',
- 'javascript:void(0);',
- );
- if (!(is_null($path) || in_array(strtolower($path), $skip_js_paths))) {
- $url = check_url($url);
- }
-
-
- if (!$options['html']) {
- $text = check_plain($text);
- }
-
- return '<a href="' . $url . '"' . $attributes . '>' . $text . '</a>';
- }
-
- * Delivers a page callback result to the browser in the appropriate format.
- *
- * This function is most commonly called by menu_execute_active_handler(), but
- * can also be called by error conditions such as backdrop_not_found(),
- * backdrop_access_denied(), and backdrop_site_offline().
- *
- * When a user requests a page, index.php calls menu_execute_active_handler(),
- * which calls the 'page callback' function registered in hook_menu(). The page
- * callback function can return one of:
- * - NULL: to indicate no content.
- * - An integer menu status constant: to indicate an error condition.
- * - A string of HTML content.
- * - A renderable array of content.
- * Returning a renderable array rather than a string of HTML is preferred,
- * because that provides modules with more flexibility in customizing the final
- * result.
- *
- * When the page callback returns its constructed content to
- * menu_execute_active_handler(), this function gets called. The purpose of
- * this function is to determine the most appropriate 'delivery callback'
- * function to route the content to. The delivery callback function then
- * sends the content to the browser in the needed format. The default delivery
- * callback is backdrop_deliver_html_page(), which delivers the content as an HTML
- * page, complete with blocks in addition to the content. This default can be
- * overridden on a per menu router item basis by setting 'delivery callback' in
- * hook_menu() or hook_menu_alter(), and can also be overridden on a per request
- * basis in hook_page_delivery_callback_alter().
- *
- * For example, the same page callback function can be used for an HTML
- * version of the page and an Ajax version of the page. The page callback
- * function just needs to decide what content is to be returned and the
- * delivery callback function will send it as an HTML page or an Ajax
- * response, as appropriate.
- *
- * In order for page callbacks to be reusable in different delivery formats,
- * they should not issue any "print" or "echo" statements, but instead just
- * return content.
- *
- * Also note that this function does not perform access checks. The delivery
- * callback function specified in hook_menu(), hook_menu_alter(), or
- * hook_page_delivery_callback_alter() will be called even if the router item
- * access checks fail. This is intentional (it is needed for JSON and other
- * purposes), but it has security implications. Do not call this function
- * directly unless you understand the security implications, and be careful in
- * writing delivery callbacks, so that they do not violate security. See
- * backdrop_deliver_html_page() for an example of a delivery callback that
- * respects security.
- *
- * @param $page_callback_result
- * The result of a page callback. Can be one of:
- * - NULL: to indicate no content.
- * - An integer menu status constant: to indicate an error condition.
- * - A string of HTML content.
- * - A renderable array of content.
- * @param $default_delivery_callback
- * (Optional) If given, it is the name of a delivery function most likely
- * to be appropriate for the page request as determined by the calling
- * function (e.g., menu_execute_active_handler()). If not given, it is
- * determined from the menu router information of the current page.
- *
- * @see menu_execute_active_handler()
- * @see hook_menu()
- * @see hook_menu_alter()
- * @see hook_page_delivery_callback_alter()
- */
- function backdrop_deliver_page($page_callback_result, $default_delivery_callback = NULL) {
- if (!isset($default_delivery_callback) && ($router_item = menu_get_item())) {
- $default_delivery_callback = $router_item['delivery_callback'];
- }
- $delivery_callback = !empty($default_delivery_callback) ? $default_delivery_callback : 'backdrop_deliver_html_page';
-
-
- backdrop_alter('page_delivery_callback', $delivery_callback, $page_callback_result);
- if (function_exists($delivery_callback)) {
- $delivery_callback($page_callback_result);
- }
- else {
-
-
-
- watchdog('delivery callback not found', 'callback %callback not found: %q.', array('%callback' => $delivery_callback, '%q' => $_GET['q']), WATCHDOG_ERROR);
- }
- }
-
- * Packages and sends the result of a page callback to the browser as HTML.
- *
- * @param $page_callback_result
- * The result of a page callback. Can be one of:
- * - NULL: to indicate no content.
- * - An integer menu status constant: to indicate an error condition.
- * - A string of HTML content.
- * - A renderable array of content.
- *
- * @see backdrop_deliver_page()
- */
- function backdrop_deliver_html_page($page_callback_result) {
- $site_config = config('system.core');
-
-
-
-
-
- if (isset($page_callback_result) && is_null(backdrop_get_http_header('Content-Type'))) {
- backdrop_add_http_header('Content-Type', 'text/html; charset=utf-8');
- }
-
-
- global $language;
- backdrop_add_http_header('Content-Language', $language->langcode);
-
-
-
-
-
- $frame_options = $site_config->get('x_frame_options');
- if ($frame_options && is_null(backdrop_get_http_header('X-Frame-Options'))) {
- backdrop_add_http_header('X-Frame-Options', $frame_options);
- }
-
-
- if (is_int($page_callback_result)) {
-
- switch ($page_callback_result) {
- case MENU_NOT_FOUND:
-
- backdrop_add_http_header('Status', '404 Not Found');
-
- watchdog('page not found', check_plain($_GET['q']), NULL, WATCHDOG_WARNING);
-
-
- fast_404();
-
-
- if (!isset($_GET['destination'])) {
-
- if (!url_is_external($_GET['q'])) {
- $_GET['destination'] = $_GET['q'];
- }
- }
-
- $path = backdrop_get_normal_path($site_config->get('site_404'));
- if (empty($path)) {
- $path = 'system/404';
- }
- menu_set_active_item($path);
- $return = menu_execute_active_handler($path, FALSE);
- print backdrop_render_page($return);
- break;
-
- case MENU_ACCESS_DENIED:
-
- backdrop_add_http_header('Status', '403 Forbidden');
- watchdog('access denied', check_plain($_GET['q']), NULL, WATCHDOG_WARNING);
-
-
- if (!isset($_GET['destination'])) {
-
- if (!url_is_external($_GET['q'])) {
- $_GET['destination'] = $_GET['q'];
- }
- }
-
- $path = backdrop_get_normal_path($site_config->get('site_403'));
- if (empty($path)) {
- $path = 'system/403';
- }
-
-
- menu_set_active_item($path);
- $return = menu_execute_active_handler($path, FALSE);
- print backdrop_render_page($return);
- break;
-
- case MENU_SITE_OFFLINE:
-
- backdrop_add_http_header('Status', '503 Service unavailable');
- backdrop_set_title(t('Site under maintenance'));
- print theme('maintenance_page', array('content' => filter_xss_admin(token_replace(config_get_translated('system.core', 'maintenance_mode_message')))));
- break;
- }
- }
- elseif (isset($page_callback_result)) {
-
-
- print backdrop_render_page($page_callback_result);
- }
-
-
- backdrop_page_footer();
- }
-
- * Performs end-of-request tasks.
- *
- * This function sets the page cache if appropriate, and allows modules to
- * react to the closing of the page by calling hook_exit().
- */
- function backdrop_page_footer() {
- module_invoke_all('exit');
-
-
-
- backdrop_session_commit();
-
-
-
-
- if (!backdrop_is_background()) {
- header('Connection: close');
- }
-
-
-
- $page_length = ob_get_length();
- $page_content = ob_get_clean();
-
- if (config_get('system.core', 'cache') && backdrop_page_is_cacheable()) {
- $cache = backdrop_page_create_cache($page_content);
-
-
- if (!backdrop_is_background()) {
- backdrop_serve_page_from_cache($cache);
- }
- }
- else {
- backdrop_set_length_headers($page_length);
-
-
- if ($_SERVER['REQUEST_METHOD'] !== 'HEAD') {
- print $page_content;
- }
- }
-
-
- if (!backdrop_is_background() && $_SERVER['REQUEST_METHOD'] !== 'HEAD') {
-
- if (function_exists('fastcgi_finish_request')) {
- fastcgi_finish_request();
- }
-
- elseif (function_exists('litespeed_finish_request')) {
- litespeed_finish_request();
- }
-
- else {
- flush();
- }
- }
-
-
- if (isset($cache)) {
- backdrop_page_save_cache($cache);
- }
- backdrop_cache_system_paths();
- module_implements_write_cache();
- system_run_automated_cron();
- }
-
- * Performs end-of-request tasks.
- *
- * In some cases page requests need to end without calling backdrop_page_footer().
- * In these cases, call backdrop_exit() instead. There should rarely be a reason
- * to call exit instead of backdrop_exit();
- *
- * @param $destination
- * If this function is called from backdrop_goto(), then this argument
- * will be a fully-qualified URL that is the destination of the redirect.
- * This should be passed along to hook_exit() implementations.
- */
- function backdrop_exit($destination = NULL) {
- if (backdrop_get_bootstrap_phase() == BACKDROP_BOOTSTRAP_FULL) {
- if (!defined('MAINTENANCE_MODE') || MAINTENANCE_MODE != 'update') {
- module_invoke_all('exit', $destination);
- }
- backdrop_session_commit();
- }
- exit;
- }
-
- * Forms an associative array from a linear array.
- *
- * This function walks through the provided array and constructs an associative
- * array out of it. The keys of the resulting array will be the values of the
- * input array. The values will be the same as the keys unless a function is
- * specified, in which case the output of the function is used for the values
- * instead.
- *
- * @param $array
- * A linear array.
- * @param $function
- * A name of a function to apply to all values before output.
- *
- * @return
- * An associative array.
- */
- function backdrop_map_assoc($array, $function = NULL) {
-
-
- $array = !empty($array) ? array_combine($array, $array) : array();
- if (is_callable($function)) {
- $array = array_map($function, $array);
- }
- return $array;
- }
-
- * Attempts to set the PHP maximum execution time.
- *
- * This function is a wrapper around the PHP function set_time_limit().
- * When called, set_time_limit() restarts the timeout counter from zero.
- * In other words, if the timeout is the default 30 seconds, and 25 seconds
- * into script execution a call such as set_time_limit(20) is made, the
- * script will run for a total of 45 seconds before timing out.
- *
- * If the current time limit is not unlimited it is possible to decrease the
- * total time limit if the sum of the new time limit and the current time spent
- * running the script is inferior to the original time limit. It is inherent to
- * the way set_time_limit() works, it should rather be called with an
- * appropriate value every time you need to allocate a certain amount of time
- * to execute a task than only once at the beginning of the script.
- *
- * Before calling set_time_limit(), we check if this function is available
- * because it could be disabled by the server administrator. We also hide all
- * the errors that could occur when calling set_time_limit(), because it is
- * not possible to reliably ensure that PHP or a security extension will
- * not issue a warning/error if they prevent the use of this function.
- *
- * @param int $time_limit
- * An integer specifying the new time limit, in seconds. A value of 0
- * indicates unlimited execution time.
- *
- * @ingroup php_wrappers
- */
- function backdrop_set_time_limit($time_limit) {
- if (function_exists('set_time_limit')) {
- $current = ini_get('max_execution_time');
-
- if ($current != 0) {
- @set_time_limit($time_limit);
- }
- }
- }
-
- * Returns the path to a system item (module, theme, etc.).
- *
- * @param string $type
- * The type of the item (i.e. theme, theme_engine, module, profile).
- * @param string $name
- * The name of the item for which the path is requested.
- *
- * @return string
- * The path to the requested item or an empty string if the item is not found.
- */
- function backdrop_get_path($type, $name) {
- $path = (string) backdrop_get_filename($type, $name);
- return dirname($path);
- }
-
- * Returns the base path (i.e., directory) of the Backdrop installation.
- *
- * base_path() adds a "/" to the beginning and end of the returned path if the
- * path is not empty. At the very least, this will return "/".
- *
- * Examples:
- * - http://example.com returns "/" because the path is empty.
- * - http://example.com/backdrop/folder returns "/backdrop/folder/".
- */
- function base_path() {
- return $GLOBALS['base_path'];
- }
-
- * Adds a LINK tag with a distinct 'rel' attribute to the page's HEAD.
- *
- * This function can be called as long the HTML header hasn't been sent, which
- * on normal pages is up through the preprocess step of theme('html'). Adding
- * a link will overwrite a prior link with the exact same 'rel' and 'href'
- * attributes.
- *
- * @param array $attributes
- * Associative array of element attributes including 'href' and 'rel'.
- * @param bool $header
- * Optional flag to determine if a HTTP 'Link:' header should be sent.
- */
- function backdrop_add_html_head_link($attributes, $header = FALSE) {
- $element = array(
- '#tag' => 'link',
- '#attributes' => $attributes,
- );
- $href = $attributes['href'];
-
- if ($header) {
-
- $href = '<' . check_plain($attributes['href']) . '>;';
- unset($attributes['href']);
- $element['#attached']['backdrop_add_http_header'][] = array('Link', $href . backdrop_http_header_attributes($attributes));
- }
-
- backdrop_add_html_head($element, 'backdrop_add_html_head_link:' . $attributes['rel'] . ':' . $href);
- }
-
- * Constructs an array of the defaults that are used for styles items.
- *
- * @param array|null $data
- * (optional) The default data parameter for the style item array.
- *
- * @see backdrop_get_css()
- * @see backdrop_add_css()
- *
- * @return array
- * An array of key and values.
- *
- * @since 1.19.0 Function added.
- */
- function backdrop_css_defaults($data = NULL) {
- return array(
- 'type' => 'file',
- 'group' => CSS_DEFAULT,
- 'weight' => 0,
- 'every_page' => FALSE,
- 'media' => 'all',
- 'preprocess' => TRUE,
- 'data' => $data,
- 'browsers' => array(),
- 'attributes' => array(),
- );
- }
-
- * Adds a cascading stylesheet to the stylesheet queue.
- *
- * Calling backdrop_static_reset('backdrop_add_css') will clear all cascading
- * stylesheets added so far.
- *
- * If CSS aggregation/compression is enabled, all cascading style sheets added
- * with $options['preprocess'] set to TRUE will be merged into one aggregate
- * file and compressed by removing all extraneous white space.
- * Preprocessed inline stylesheets will not be aggregated into this single file;
- * instead, they are just compressed upon output on the page. Externally hosted
- * stylesheets are never aggregated or compressed.
- *
- * The reason for aggregating the files is outlined quite thoroughly here:
- * http://www.die.net/musings/page_load_time/ "Load fewer external objects. Due
- * to request overhead, one bigger file just loads faster than two smaller ones
- * half its size."
- *
- * $options['preprocess'] should be only set to TRUE when a file is required for
- * all typical visitors and most pages of a site. It is critical that all
- * preprocessed files are added unconditionally on every page, even if the
- * files do not happen to be needed on a page. However, it is preferred that
- * modules do not use this function, but declare CSS files intended for all
- * pages in their .info file instead.
- *
- * Non-preprocessed files should only be added to the page when they are
- * actually needed.
- *
- * @param array|null $data
- * (optional) The stylesheet data to be added, depending on what is passed
- * through to the $options['type'] parameter:
- * - 'file': The path to the CSS file relative to the base_path(), or a
- * stream wrapper URI. For example: "modules/devel/devel.css" or
- * "public://generated_css/stylesheet_1.css". Note that Modules should
- * always prefix the names of their CSS files with the module name; for
- * example, system-menus.css rather than simply menus.css. Themes can
- * override module-supplied CSS files based on their filenames, and this
- * prefixing helps prevent confusing name collisions for theme developers.
- * See backdrop_get_css() where the overrides are performed.
- * - 'inline': A string of CSS that should be placed in the given scope. Note
- * that it is better practice to use 'file' stylesheets, rather than
- * 'inline', as the CSS would then be aggregated and cached.
- * - 'external': The absolute path to an external CSS file that is not hosted
- * on the local server. These files will not be aggregated if CSS
- * aggregation is enabled.
- * @param array|null $options
- * (optional) A string defining the 'type' of CSS that is being added in the
- * $data parameter ('file', 'inline', or 'external'), or an array which can
- * have any or all of the following keys:
- * - 'type': The type of stylesheet being added. Available options are 'file',
- * 'inline' or 'external'. Defaults to 'file'.
- * - 'basename': Force a basename for the file being added. Modules are
- * expected to use stylesheets with unique filenames, but integration of
- * external libraries may make this impossible. The basename of
- * 'core/modules/node/node.css' is 'node.css'. If the external library
- * "node.js" ships with a 'node.css', then a different, unique basename
- * would be 'node.js.css'.
- * - 'group': A number identifying the group in which to add the stylesheet.
- * Available constants are:
- * - CSS_SYSTEM: Any system-layer CSS.
- * - CSS_DEFAULT: (default) Any module-layer CSS.
- * - CSS_THEME: Any theme-layer CSS.
- * The group number serves as a weight: the markup for loading a stylesheet
- * within a lower weight group is output to the page before the markup for
- * loading a stylesheet within a higher weight group, so CSS within higher
- * weight groups take precedence over CSS within lower weight groups.
- * - 'every_page': For optimal front-end performance when aggregation is
- * enabled, this should be set to TRUE if the stylesheet is present on every
- * page of the website for users for whom it is present at all. This
- * defaults to FALSE. It is set to TRUE for stylesheets added via module and
- * theme .info files. Modules that add stylesheets within hook_init()
- * implementations, or from other code that ensures that the stylesheet is
- * added to all website pages, should also set this flag to TRUE. All
- * stylesheets within the same group that have the 'every_page' flag set to
- * TRUE and do not have 'preprocess' set to FALSE are aggregated together
- * into a single aggregate file, and that aggregate file can be reused
- * across a user's entire site visit, leading to faster navigation between
- * pages. However, stylesheets that are only needed on pages less frequently
- * visited, can be added by code that only runs for those particular pages,
- * and that code should not set the 'every_page' flag. This minimizes the
- * size of the aggregate file that the user needs to download when first
- * visiting the website. Stylesheets without the 'every_page' flag are
- * aggregated into a separate aggregate file. This other aggregate file is
- * likely to change from page to page, and each new aggregate file needs to
- * be downloaded when first encountered, so it should be kept relatively
- * small by ensuring that most commonly needed stylesheets are added to
- * every page.
- * - 'weight': The weight of the stylesheet specifies the order in which the
- * CSS will appear relative to other stylesheets with the same group and
- * 'every_page' flag. The exact ordering of stylesheets is as follows:
- * - First by group.
- * - Then by the 'every_page' flag, with TRUE coming before FALSE.
- * - Then by weight.
- * - Then by the order in which the CSS was added. For example, all else
- * being the same, a stylesheet added by a call to backdrop_add_css() that
- * happened later in the page request gets added to the page after one for
- * which backdrop_add_css() happened earlier in the page request.
- * - 'media': The media type for the stylesheet, e.g., all, print, screen.
- * Defaults to 'all'.
- * - attributes: An associative array of attributes for the <link> tag. This
- * may be used to add 'integrity' or custom attributes. Note that setting
- * any attributes will disable preprocessing as though the 'preprocess'
- * option was set to FALSE.
- * - 'preprocess': If TRUE and CSS aggregation/compression is enabled, the
- * styles will be aggregated and compressed. Defaults to TRUE.
- * - 'browsers': An array containing information specifying which browsers
- * should load the CSS item. See backdrop_pre_render_conditional_comments()
- * for details. This option is deprecated and no longer has an effect.
- *
- * @return array
- * An array of queued cascading stylesheets.
- *
- * @since 1.27.0 The 'browsers' option is deprecated.
- *
- * @see backdrop_get_css()
- */
- function backdrop_add_css($data = NULL, $options = NULL) {
- $css = &backdrop_static(__FUNCTION__, array());
- $count = &backdrop_static(__FUNCTION__ . '_count', 0);
-
-
- if (count($css) === 0) {
- $count = 0;
- }
-
-
- if (isset($options)) {
- if (!is_array($options)) {
- $options = array('type' => $options);
- }
- }
- else {
- $options = array();
- }
-
- $defaults = backdrop_css_defaults($data);
- $options += $defaults;
- $options['attributes'] += $defaults['attributes'];
-
-
- $options['preprocess'] = empty($options['attributes']) ? $options['preprocess'] : FALSE;
-
-
-
- if (isset($data)) {
- $options['browsers'] += array(
- 'IE' => TRUE,
- '!IE' => TRUE,
- );
-
-
- if ($options['type'] === 'file' && $options['preprocess'] && strpos($options['data'], '?') !== FALSE) {
- $options['preprocess'] = FALSE;
- }
-
-
- $options['weight'] += $count / 1000;
- $count++;
-
-
- $options['every_page_weight'] = $options['every_page'] ? -1 : 1;
-
-
- switch ($options['type']) {
- case 'inline':
-
-
- $css[] = $options;
- break;
- default:
-
-
- $css[$data] = $options;
- }
- }
-
- return $css;
- }
-
- * Returns a themed representation of all stylesheets to attach to the page.
- *
- * It loads the CSS in order, with 'module' first, then 'theme' afterwards.
- * This ensures proper cascading of styles so themes can override module styles
- * through CSS selectors.
- *
- * Themes may replace module-defined CSS files by adding a stylesheet with the
- * same filename. For example, themes/bartik/system-menus.css would replace
- * modules/system/system-menus.css. This allows themes to override complete
- * CSS files, rather than specific selectors, when necessary.
- *
- * @param $css
- * (optional) An array of CSS files. If no array is provided, the default
- * stylesheets array is used instead.
- * @param $skip_alter
- * (optional) If set to TRUE, this function skips calling backdrop_alter() on
- * $css, useful when the calling function passes a $css array that has already
- * been altered.
- *
- * @return
- * A string of XHTML CSS tags.
- *
- * @see backdrop_add_css()
- */
- function backdrop_get_css($css = NULL, $skip_alter = FALSE) {
- if (!isset($css)) {
- $css = backdrop_add_css();
- }
-
-
- if (!$skip_alter) {
- backdrop_alter('css', $css);
- }
-
-
- foreach ($css as $key => &$item) {
- if (!isset($item['every_page_weight'])) {
- $item['every_page_weight'] = $item['every_page'] ? -1 : 1;
- }
- }
-
-
- backdrop_sort($css, array('group', 'every_page_weight', 'weight'));
-
-
-
-
-
-
-
-
- if (!empty($css)) {
-
- $setting['ajaxPageState']['css'] = (object) array_fill_keys(array_keys($css), 1);
- }
-
-
- $previous_item = array();
- foreach ($css as $key => $item) {
- if ($item['type'] == 'file') {
-
- $basename = isset($item['basename']) ? $item['basename'] : backdrop_basename($item['data']);
- if (isset($previous_item[$basename])) {
-
- unset($css[$previous_item[$basename]]);
- }
- $previous_item[$basename] = $key;
- }
- }
-
-
- $styles = array(
- '#type' => 'styles',
- '#items' => $css,
- );
- if (!empty($setting)) {
- $styles['#attached']['js'][] = array('type' => 'setting', 'data' => $setting);
- }
-
- return backdrop_render($styles);
- }
-
- * Grouping callback: Groups CSS items by their types, media, and browsers.
- *
- * This function arranges the CSS items that are in the #items property of the
- * styles element into groups. Arranging the CSS items into groups serves two
- * purposes. When aggregation is enabled, files within a group are aggregated
- * into a single file, significantly improving page loading performance by
- * minimizing network traffic overhead. When aggregation is disabled, grouping
- * allows multiple files to be loaded from a single STYLE tag, enabling sites
- * with many modules enabled or a complex theme being used to stay within IE's
- * 31 CSS inclusion tag limit: http://drupal.org/node/228818.
- *
- * This function puts multiple items into the same group if they are groupable
- * and if they are for the same 'media' and 'browsers'. Items of the 'file' type
- * are groupable if their 'preprocess' flag is TRUE, items of the 'inline' type
- * are always groupable, and items of the 'external' type are never groupable.
- * This function also ensures that the process of grouping items does not change
- * their relative order. This requirement may result in multiple groups for the
- * same type, media, and browsers, if needed to accommodate other items in
- * between.
- *
- * @param $css
- * An array of CSS items, as returned by backdrop_add_css(), but after
- * alteration performed by backdrop_get_css().
- *
- * @return
- * An array of CSS groups. Each group contains the same keys (e.g., 'media',
- * 'data', etc.) as a CSS item from the $css parameter, with the value of
- * each key applying to the group as a whole. Each group also contains an
- * 'items' key, which is the subset of items from $css that are in the group.
- *
- * @see backdrop_pre_render_styles()
- * @see system_element_info()
- */
- function backdrop_group_css($css) {
- $groups = array();
-
-
-
-
- $current_group_keys = NULL;
-
-
- $i = -1;
- foreach ($css as $item) {
-
-
-
-
- ksort($item['browsers']);
-
-
-
-
-
-
-
-
-
-
-
- $group_keys = NULL;
- switch ($item['type']) {
- case 'file':
-
-
-
-
- $group_keys = $item['preprocess'] ? array($item['type'], $item['group'], $item['every_page'], $item['media'], $item['browsers']) : FALSE;
- break;
- case 'inline':
-
- $group_keys = array($item['type'], $item['media'], $item['browsers']);
- break;
- case 'external':
-
- $group_keys = FALSE;
- break;
- }
-
-
-
- if ($group_keys !== $current_group_keys) {
- $i++;
-
-
-
- $groups[$i] = $item;
- unset($groups[$i]['data'], $groups[$i]['weight']);
- $groups[$i]['items'] = array();
- $current_group_keys = $group_keys ? $group_keys : NULL;
- }
-
-
- $groups[$i]['items'][] = $item;
- }
- return $groups;
- }
-
- * Aggregation callback: Aggregates CSS files and inline content.
- *
- * Having the browser load fewer CSS files results in much faster page loads
- * than when it loads many small files. This function aggregates files within
- * the same group into a single file unless the site-wide setting to do so is
- * disabled (commonly the case during site development). To optimize download,
- * it also compresses the aggregate files by removing comments, whitespace, and
- * other unnecessary content. Additionally, this functions aggregates inline
- * content together, regardless of the site-wide aggregation setting.
- *
- * @param $css_groups
- * An array of CSS groups as returned by backdrop_group_css(). This function
- * modifies the group's 'data' property for each group that is aggregated.
- *
- * @see backdrop_group_css()
- * @see backdrop_pre_render_styles()
- * @see system_element_info()
- */
- function backdrop_aggregate_css(&$css_groups) {
- $preprocess_css = !defined('MAINTENANCE_MODE') && config_get('system.core', 'preprocess_css');
-
-
- foreach ($css_groups as $key => $group) {
- switch ($group['type']) {
-
-
- case 'file':
- if ($group['preprocess'] && $preprocess_css) {
- $css_groups[$key]['data'] = backdrop_build_css_cache($group['items']);
- }
- break;
-
- case 'inline':
- $css_groups[$key]['data'] = '';
- foreach ($group['items'] as $item) {
- $css_groups[$key]['data'] .= backdrop_load_stylesheet_content($item['data'], $item['preprocess']);
- }
- break;
- }
- }
- }
-
- * Pre-render callback: Adds the elements needed for CSS tags to be rendered.
- *
- * For production websites, LINK tags are preferable to STYLE tags with @import
- * statements, because:
- * - They are the standard tag intended for linking to a resource.
- * - On Firefox 2 and perhaps other browsers, CSS files included with @import
- * statements don't get saved when saving the complete web page for offline
- * use: http://drupal.org/node/145218.
- * - On IE, if only LINK tags and no @import statements are used, all the CSS
- * files are downloaded in parallel, resulting in faster page load, but if
- * @import statements are used and span across multiple STYLE tags, all the
- * ones from one STYLE tag must be downloaded before downloading begins for
- * the next STYLE tag. Furthermore, IE7 does not support media declaration on
- * the @import statement, so multiple STYLE tags must be used when different
- * files are for different media types. Non-IE browsers always download in
- * parallel, so this is an IE-specific performance quirk:
- * http://www.stevesouders.com/blog/2009/04/09/dont-use-import/.
- *
- * However, IE has an annoying limit of 31 total CSS inclusion tags
- * (http://drupal.org/node/228818) and LINK tags are limited to one file per
- * tag, whereas STYLE tags can contain multiple @import statements allowing
- * multiple files to be loaded per tag. When CSS aggregation is disabled, a
- * Backdrop site can have more than 31 CSS files that need to be loaded, so
- * using LINK tags exclusively would result in a site that would display
- * incorrectly in IE. Depending on different needs, different strategies can be
- * employed to decide when to use LINK tags and when to use STYLE tags.
- *
- * The strategy employed by this function is to use LINK tags for all aggregate
- * files and for all files that cannot be aggregated (e.g., if 'preprocess' is
- * set to FALSE or the type is 'external'), and to use STYLE tags for groups
- * of files that could be aggregated together but aren't (e.g., if the site-wide
- * aggregation setting is disabled). This results in all LINK tags when
- * aggregation is enabled, a guarantee that as many or only slightly more tags
- * are used with aggregation disabled than enabled (so that if the limit were to
- * be crossed with aggregation enabled, the site developer would also notice the
- * problem while aggregation is disabled), and an easy way for a developer to
- * view HTML source while aggregation is disabled and know what files will be
- * aggregated together when aggregation becomes enabled.
- *
- * This function evaluates the aggregation enabled/disabled condition on a group
- * by group basis by testing whether an aggregate file has been made for the
- * group rather than by testing the site-wide aggregation setting. This allows
- * this function to work correctly even if modules have implemented custom
- * logic for grouping and aggregating files.
- *
- * @param $element
- * A render array containing:
- * - '#items': The CSS items as returned by backdrop_add_css() and altered by
- * backdrop_get_css().
- * - '#group_callback': A function to call to group #items to enable the use
- * of fewer tags by aggregating files and/or using multiple @import
- * statements within a single tag.
- * - '#aggregate_callback': A function to call to aggregate the items within
- * the groups arranged by the #group_callback function.
- *
- * @return
- * A render array that will render to a string of XHTML CSS tags.
- *
- * @see backdrop_get_css()
- */
- function backdrop_pre_render_styles($elements) {
-
- if (isset($elements['#group_callback'])) {
- $elements['#groups'] = $elements['#group_callback']($elements['#items']);
- }
- if (isset($elements['#aggregate_callback'])) {
- $elements['#aggregate_callback']($elements['#groups']);
- }
-
-
-
-
-
- $query_string = !defined('MAINTENANCE_MODE') ? state_get('css_js_query_string', '0') : '';
-
-
- $link_element_defaults = array(
- '#type' => 'head_tag',
- '#tag' => 'link',
- '#attributes' => array(
- 'rel' => 'stylesheet',
- ),
- );
- $style_element_defaults = array(
- '#type' => 'head_tag',
- '#tag' => 'style',
- );
-
-
- foreach ($elements['#groups'] as $group) {
- switch ($group['type']) {
-
-
-
-
-
-
-
-
-
-
-
- case 'file':
-
-
- if (isset($group['data'])) {
- $element = $link_element_defaults;
- $element['#attributes']['href'] = file_create_url($group['data']);
- $element['#attributes']['media'] = $group['media'];
- $element['#browsers'] = $group['browsers'];
- $elements[] = $element;
- }
-
-
- elseif ($group['preprocess']) {
- $import = array();
- foreach ($group['items'] as $item) {
-
-
-
-
-
-
-
-
-
-
-
- if (file_exists($item['data'])) {
-
-
-
-
- $import[] = '@import url("' . check_plain(file_create_url($item['data']) . '?' . $query_string) . '");';
- }
- }
-
-
- while (!empty($import)) {
- $import_batch = array_slice($import, 0, 31);
- $import = array_slice($import, 31);
- $element = $style_element_defaults;
-
-
-
-
- $element['#value'] = "\n" . implode("\n", $import_batch) . "\n";
- $element['#attributes']['media'] = $group['media'];
- $element['#browsers'] = $group['browsers'];
- $elements[] = $element;
- }
- }
-
-
- else {
- foreach ($group['items'] as $item) {
- $element = $link_element_defaults;
-
-
-
-
-
-
-
-
-
-
- $query_string_separator = (strpos($item['data'], '?') !== FALSE) ? '&' : '?';
- if (isset($item['attributes'])) {
- $element['#attributes'] += $item['attributes'];
- }
- $element['#attributes']['href'] = file_create_url($item['data']) . $query_string_separator . $query_string;
- $element['#attributes']['media'] = $item['media'];
- $element['#browsers'] = $group['browsers'];
- $elements[] = $element;
- }
- }
- break;
-
-
-
- case 'inline':
- if (isset($group['data'])) {
- $element = $style_element_defaults;
- $element['#value'] = $group['data'];
- $element['#attributes']['media'] = $group['media'];
- $element['#browsers'] = $group['browsers'];
- $elements[] = $element;
- }
- else {
- foreach ($group['items'] as $item) {
- $element = $style_element_defaults;
- $element['#value'] = $item['data'];
- if (isset($item['attributes'])) {
- $element['#attributes'] += $item['attributes'];
- }
- $element['#attributes']['media'] = $item['media'];
- $element['#browsers'] = $group['browsers'];
- $elements[] = $element;
- }
- }
- break;
-
-
- case 'external':
- foreach ($group['items'] as $item) {
- $element = $link_element_defaults;
- if (isset($item['attributes'])) {
- $element['#attributes'] += $item['attributes'];
- }
- $element['#attributes']['href'] = $item['data'];
- $element['#attributes']['media'] = $item['media'];
- $element['#browsers'] = $group['browsers'];
- $elements[] = $element;
- }
- break;
- }
- }
-
- return $elements;
- }
-
- * Aggregates and optimizes CSS files into a cache file in the files directory.
- *
- * The file name for the CSS cache file is generated from the hash of the
- * aggregated contents of the files in $css. This forces proxies and browsers
- * to download new CSS when the CSS changes.
- *
- * The cache file name is retrieved on a page load via a lookup variable that
- * contains an associative array. The array key is the hash of the file names
- * in $css while the value is the cache file name. The cache file is generated
- * in two cases. First, if there is no file name value for the key, which will
- * happen if a new file name has been added to $css or after the lookup
- * variable is emptied to force a rebuild of the cache. Second, the cache file
- * is generated if it is missing on disk. Old cache files are not deleted
- * immediately when the lookup variable is emptied, but are deleted after a set
- * period by backdrop_delete_file_if_stale(). This ensures that files referenced
- * by a cached page will still be available.
- *
- * @param $css
- * An array of CSS files to aggregate and compress into one file.
- *
- * @return
- * The URI of the CSS cache file, or FALSE if the file could not be saved.
- */
- function backdrop_build_css_cache($css) {
- $data = '';
- $uri = '';
- $map = state_get('css_cache_files', array());
-
-
- $css_data = array();
- foreach ($css as $css_file) {
- $css_data[] = $css_file['data'];
- }
- $key = hash('sha256', serialize($css_data));
- if (isset($map[$key])) {
- $uri = $map[$key];
- }
-
- if (empty($uri) || !file_exists($uri)) {
-
- foreach ($css as $stylesheet) {
-
- if ($stylesheet['type'] == 'file') {
- $contents = backdrop_load_stylesheet($stylesheet['data'], TRUE);
-
-
- $css_base_url = file_create_url($stylesheet['data']);
-
- $css_base_url = substr($css_base_url, 0, strrpos($css_base_url, '/'));
-
-
- if (substr($css_base_url, 0, strlen($GLOBALS['base_root'])) == $GLOBALS['base_root']) {
- $css_base_url = substr($css_base_url, strlen($GLOBALS['base_root']));
- }
-
- _backdrop_build_css_path(NULL, $css_base_url . '/');
-
- $data .= preg_replace_callback('/url\(\s*[\'"]?(?![a-z]+:|\/+)([^\'")]+)[\'"]?\s*\)/i', '_backdrop_build_css_path', $contents);
- }
- }
-
-
-
- $regexp = '/@import[^;\'"]*(?:\'[^\']*\'|"[^"]*")[^;]*;/i';
- preg_match_all($regexp, $data, $matches);
- $data = preg_replace($regexp, '', $data);
- $data = implode('', $matches[0]) . $data;
-
-
-
- $filename = 'css_' . backdrop_hash_base64($data) . '.css';
-
- $csspath = 'public://css';
- $uri = $csspath . '/' . $filename;
-
- file_prepare_directory($csspath, FILE_CREATE_DIRECTORY);
- if (!file_exists($uri) && !file_unmanaged_save_data($data, $uri, FILE_EXISTS_REPLACE)) {
- return FALSE;
- }
-
-
-
-
- if (settings_get('css_gzip_compression', TRUE) && config_get('system.core', 'clean_url') && extension_loaded('zlib')) {
- if (!file_exists($uri . '.gz') && !file_unmanaged_save_data(gzencode($data, 9, FORCE_GZIP), $uri . '.gz', FILE_EXISTS_REPLACE)) {
- return FALSE;
- }
- }
-
- $map[$key] = $uri;
- state_set('css_cache_files', $map);
- }
- return $uri;
- }
-
- * Prefixes all paths within a CSS file for backdrop_build_css_cache().
- */
- function _backdrop_build_css_path($matches, $base = NULL) {
- $_base = &backdrop_static(__FUNCTION__);
-
- if (isset($base)) {
- $_base = $base;
- }
-
-
- if (is_array($matches)) {
- $path = $_base . $matches[1];
- }
- else {
- $path = $_base;
- }
- $last = '';
- while ($path != $last) {
- $last = $path;
- $path = preg_replace('`(^|/)(?!\.\./)([^/]+)/\.\./`', '$1', $path);
- }
- return 'url(' . $path . ')';
- }
-
- * Loads the stylesheet and resolves all @import commands.
- *
- * Loads a stylesheet and replaces @import commands with the contents of the
- * imported file. Use this instead of file_get_contents when processing
- * stylesheets.
- *
- * The returned contents are compressed removing white space and comments only
- * when CSS aggregation is enabled. This optimization will not apply for
- * color.module enabled themes with CSS aggregation turned off.
- *
- * @param $file
- * Name of the stylesheet to be processed.
- * @param $optimize
- * Defines if CSS contents should be compressed or not.
- * @param $reset_basepath
- * Used internally to facilitate recursive resolution of @import commands.
- *
- * @return
- * Contents of the stylesheet, including any resolved @import commands.
- */
- function backdrop_load_stylesheet($file, $optimize = NULL, $reset_basepath = TRUE) {
-
- static $_optimize, $basepath;
- if ($reset_basepath) {
- $basepath = '';
- }
-
-
- if (isset($optimize)) {
- $_optimize = $optimize;
- }
-
-
-
- if ($basepath && !file_uri_scheme($file)) {
- $file = $basepath . '/' . $file;
- }
-
- $parent_base_path = $basepath;
-
- $basepath = dirname($file);
-
-
-
-
- $content = '';
- if ($contents = @file_get_contents($file)) {
-
- $content = backdrop_load_stylesheet_content($contents, $_optimize);
- }
-
-
- $basepath = $parent_base_path;
- return $content;
- }
-
- * Processes the contents of a stylesheet for aggregation.
- *
- * @param $contents
- * The contents of the stylesheet.
- * @param $optimize
- * (optional) Boolean whether CSS contents should be minified. Defaults to
- * FALSE.
- *
- * @return
- * Contents of the stylesheet including the imported stylesheets.
- */
- function backdrop_load_stylesheet_content($contents, $optimize = FALSE) {
-
- $contents = preg_replace('/^@charset\s+[\'"](\S*?)\b[\'"];/i', '', $contents);
-
- if ($optimize) {
-
-
- $comment = '/\*[^*]*\*+(?:[^/*][^*]*\*+)*/';
-
- $double_quot = '"[^"\\\\]*(?:\\\\.[^"\\\\]*)*"';
-
- $single_quot = "'[^'\\\\]*(?:\\\\.[^'\\\\]*)*'";
-
- $contents = preg_replace(
- "<($double_quot|$single_quot)|$comment>Ss",
- "$1",
- $contents
- );
-
-
-
-
- $contents = preg_replace('<
- # Strip leading and trailing whitespace.
- \s*([@{};,])\s*
- # Strip only leading whitespace from:
- # - Closing parenthesis: Retain "@media (bar) and foo".
- | \s+([\)])
- # Strip only trailing whitespace from:
- # - Opening parenthesis: Retain "@media (bar) and foo".
- # - Colon: Retain :pseudo-selectors.
- | ([\(:])\s+
- >xS',
-
-
-
- '$1$2$3',
- $contents
- );
-
- $contents = trim($contents);
- $contents .= "\n";
- }
-
-
-
- $contents = preg_replace_callback('/@import\s*(?:url\(\s*)?[\'"]?(?![a-z]+:)(?!\/\/)([^\'"\()]+)[\'"]?\s*\)?\s*;/', '_backdrop_load_stylesheet', $contents);
- return $contents;
- }
-
- * Loads stylesheets recursively and returns contents with corrected paths.
- *
- * This function is used for recursive loading of stylesheets and
- * returns the stylesheet content with all url() paths corrected.
- */
- function _backdrop_load_stylesheet($matches) {
- $filename = $matches[1];
-
- $file = backdrop_load_stylesheet($filename, NULL, FALSE);
-
-
- $directory = dirname($filename);
-
-
- $directory = $directory == '.' ? '' : $directory .'/';
-
-
-
-
- return preg_replace('/url\(\s*([\'"]?)(?![a-z]+:|\/+)([^\'")]+)([\'"]?)\s*\)/i', 'url(\1' . $directory . '\2\3)', $file);
- }
-
- * Deletes old cached CSS files.
- */
- function backdrop_clear_css_cache() {
- state_del('css_cache_files');
- file_scan_directory('public://css', '/.*/', array('callback' => 'backdrop_delete_file_if_stale'));
- }
-
- * Deletes files modified more than a set time ago.
- *
- * Callback for file_scan_directory() within:
- * - backdrop_clear_css_cache()
- * - backdrop_clear_js_cache()
- */
- function backdrop_delete_file_if_stale($uri) {
-
- if (REQUEST_TIME - filemtime($uri) > settings_get('stale_file_threshold', 2592000)) {
- file_unmanaged_delete($uri);
- }
- }
-
- * Prepares a string for use as a CSS identifier (element, class, or ID name).
- *
- * http://www.w3.org/TR/CSS21/syndata.html#characters shows the syntax for valid
- * CSS identifiers (including element names, classes, and IDs in selectors.)
- *
- * @param $identifier
- * The identifier to clean.
- * @param $filter
- * An array of string replacements to use on the identifier.
- *
- * @return
- * The cleaned identifier.
- */
- function backdrop_clean_css_identifier($identifier, $filter = array(' ' => '-', '_' => '-', '/' => '-', '[' => '-', ']' => '')) {
-
- $identifier = strtr($identifier, $filter);
-
-
-
-
-
-
-
-
-
- $identifier = preg_replace('/[^\x{002D}\x{0030}-\x{0039}\x{0041}-\x{005A}\x{005F}\x{0061}-\x{007A}\x{00A1}-\x{FFFF}]/u', '', $identifier);
-
-
- $identifier = preg_replace(array('/^[0-9]/', '/^(-[0-9])|^(--)/'), array('_', '__') , $identifier);
-
- return $identifier;
- }
-
- * Prepares a string for use as a valid class name.
- *
- * Do not pass one string containing multiple classes as they will be
- * incorrectly concatenated with dashes, i.e. "one two" will become "one-two".
- *
- * @param $class
- * The class name to clean.
- *
- * @return
- * The cleaned class name.
- */
- function backdrop_html_class($class) {
-
-
- static $classes = array();
-
- if (!isset($classes[$class])) {
- $classes[$class] = backdrop_clean_css_identifier(backdrop_strtolower($class));
- }
- return $classes[$class];
- }
-
- * Prepares a string for use as a valid HTML ID and guarantees uniqueness.
- *
- * This function ensures that each passed HTML ID value only exists once on the
- * page. By tracking the already returned ids, this function enables forms,
- * blocks, and other content to be output multiple times on the same page,
- * without breaking (X)HTML validation.
- *
- * For already existing IDs, a counter is appended to the ID string. Therefore,
- * JavaScript and CSS code should not rely on any value that was generated by
- * this function and instead should rely on manually added CSS classes or
- * similarly reliable constructs.
- *
- * Two consecutive hyphens separate the counter from the original ID. To manage
- * uniqueness across multiple Ajax requests on the same page, Ajax requests
- * POST an array of all IDs currently present on the page, which are used to
- * prime this function's cache upon first invocation.
- *
- * To allow reverse-parsing of IDs submitted via Ajax, any multiple consecutive
- * hyphens in the originally passed $id are replaced with a single hyphen.
- *
- * @param $id
- * The ID to clean.
- *
- * @return
- * The cleaned ID.
- */
- function backdrop_html_id($id) {
-
-
-
-
- static $backdrop_static_fast;
- if (!isset($backdrop_static_fast['seen_ids_init'])) {
- $backdrop_static_fast['seen_ids_init'] = &backdrop_static(__FUNCTION__ . ':init');
- }
- $seen_ids_init = &$backdrop_static_fast['seen_ids_init'];
- if (!isset($seen_ids_init)) {
-
-
-
-
-
-
-
-
-
- if (empty($_POST['ajax_html_ids'])) {
- $seen_ids_init = array();
- }
- else {
-
-
-
-
-
- if (isset($_POST['ajax_html_ids'][0]) && strpos($_POST['ajax_html_ids'][0], ',') === FALSE) {
- $ajax_html_ids = $_POST['ajax_html_ids'];
- }
- else {
-
-
-
- $ajax_html_ids = explode(',', $_POST['ajax_html_ids'][0]);
- }
- foreach ($ajax_html_ids as $seen_id) {
-
-
- $parts = explode('--', $seen_id, 2);
- if (!empty($parts[1]) && is_numeric($parts[1])) {
- list($seen_id, $i) = $parts;
- }
- else {
- $i = 1;
- }
- if (!isset($seen_ids_init[$seen_id]) || ($i > $seen_ids_init[$seen_id])) {
- $seen_ids_init[$seen_id] = $i;
- }
- }
- }
- }
- if (!isset($backdrop_static_fast['seen_ids'])) {
- $backdrop_static_fast['seen_ids'] = &backdrop_static(__FUNCTION__, $seen_ids_init);
- }
- $seen_ids = &$backdrop_static_fast['seen_ids'];
-
- $id = strtr(backdrop_strtolower($id), array(' ' => '-', '_' => '-', '[' => '-', ']' => ''));
-
-
-
-
-
-
-
- $id = preg_replace('/[^A-Za-z0-9\-_]/', '', $id);
-
-
- $id = preg_replace('/\-+/', '-', $id);
-
-
-
-
-
- if (isset($seen_ids[$id])) {
- $id = $id . '--' . ++$seen_ids[$id];
- }
- else {
- $seen_ids[$id] = 1;
- }
-
- return $id;
- }
-
- * Provides a standard HTML class name that identifies a page region.
- *
- * It is recommended that template preprocess functions apply this class to any
- * page region that is output by the theme (Backdrop core already handles this in
- * the standard template preprocess implementation). Standardizing the class
- * names in this way allows modules to implement certain features, such as
- * drag-and-drop or dynamic Ajax loading, in a theme-independent way.
- *
- * @param $region
- * The name of the page region (for example, 'page_bottom' or 'content').
- *
- * @return
- * An HTML class that identifies the region (for example, 'region-page-top'
- * or 'region-content').
- *
- * @see template_preprocess_region()
- */
- function backdrop_region_class($region) {
- return backdrop_html_class("region-$region");
- }
-
- * Adds a JavaScript file, setting, or inline code to the page.
- *
- * The behavior of this function depends on the parameters it is called with.
- * Generally, it handles the addition of JavaScript to the page, either as
- * reference to an existing file or as inline code. The following actions can be
- * performed using this function:
- * - Add a file ('file'): Adds a reference to a JavaScript file to the page.
- * - Add inline JavaScript code ('inline'): Executes a piece of JavaScript code
- * on the current page by placing the code directly in the page (for example,
- * to tell the user that a new message arrived, by opening a pop up, alert
- * box, etc.). This should only be used for JavaScript that cannot be executed
- * from a file.
- * - Add external JavaScript ('external'): Allows the inclusion of external
- * JavaScript files that are not hosted on the local server. Note that these
- * external JavaScript references do not get aggregated when preprocessing is
- * on.
- * - Add settings ('setting'): Adds settings to Backdrop's global storage of
- * JavaScript settings. Per-page settings are required by some modules to
- * function properly. All settings will be accessible at Backdrop.settings.
- *
- * Examples:
- * @code
- * backdrop_add_js('core/misc/collapse.js');
- * backdrop_add_js('core/misc/collapse.js', 'file');
- * backdrop_add_js('jQuery(document).ready(function () { alert("Hello!"); });', 'inline');
- * backdrop_add_js('jQuery(document).ready(function () { alert("Hello!"); });',
- * array('type' => 'inline', 'scope' => 'footer', 'weight' => 5)
- * );
- * backdrop_add_js('http://example.com/example.js', 'external');
- * backdrop_add_js(array('myModule' => array('key' => 'value')), 'setting');
- * @endcode
- *
- * Calling backdrop_static_reset('backdrop_add_js') will clear all JavaScript
- * added so far.
- *
- * If JavaScript aggregation is enabled, all JavaScript files added with
- * $options['preprocess'] set to TRUE will be merged into one aggregate file.
- * Preprocessed inline JavaScript will not be aggregated into this single file.
- * Externally hosted JavaScripts are never aggregated.
- *
- * The reason for aggregating the files is outlined quite thoroughly here:
- * http://www.die.net/musings/page_load_time/ "Load fewer external objects. Due
- * to request overhead, one bigger file just loads faster than two smaller ones
- * half its size."
- *
- * $options['preprocess'] should be only set to TRUE when a file is required for
- * all typical visitors and most pages of a site. It is critical that all
- * preprocessed files are added unconditionally on every page, even if the
- * files are not needed on a page. However, it is preferred that modules do not
- * use this function, but declare JS files intended for all pages in their
- * .info file instead.
- *
- * Non-preprocessed files should only be added to the page when they are
- * actually needed.
- *
- * @param $data
- * (optional) If given, the value depends on the $options parameter, or
- * $options['type'] if $options is passed as an associative array:
- * - 'file': Path to the file relative to base_path().
- * - 'inline': The JavaScript code that should be placed in the given scope.
- * - 'external': The absolute path to an external JavaScript file that is not
- * hosted on the local server. These files will not be aggregated if
- * JavaScript aggregation is enabled.
- * - 'setting': An associative array with configuration options. The array is
- * merged directly into Backdrop.settings. All modules should wrap their
- * actual configuration settings in another variable to prevent conflicts in
- * the Backdrop.settings namespace. Settings within the same namespace will
- * be recursively merged together unless a "key" option is specified in the
- * $options array.
- * @param $options
- * (optional) A string defining the type of JavaScript that is being added in
- * the $data parameter ('file'/'setting'/'inline'/'external'), or an
- * associative array.
- * - type: The type of JavaScript that is to be added to the page. Allowed
- * values are 'file', 'inline', 'external' or 'setting'. Defaults
- * to 'file'.
- * - key: Applies to the 'setting' and 'inline' types only. A string that
- * identifies data that should only be added once per page. If omitted,
- * multiple settings within the same namespace will be merged together
- * recursively.
- * - scope: The location in which you want to place the script. Possible
- * values are 'header' or 'footer'. If your theme implements different
- * regions, you can also use these. Defaults to 'header'.
- * - group: A number identifying the group in which to add the JavaScript.
- * Available constants are:
- * - JS_LIBRARY: Any libraries, settings, or jQuery plugins.
- * - JS_DEFAULT: Any module-layer JavaScript.
- * - JS_THEME: Any theme-layer JavaScript.
- * The group number serves as a weight: JavaScript within a lower weight
- * group is presented on the page before JavaScript within a higher weight
- * group.
- * - every_page: For optimal front-end performance when aggregation is
- * enabled, this should be set to TRUE if the JavaScript is present on every
- * page of the website for users for whom it is present at all. This
- * defaults to FALSE. It is set to TRUE for JavaScript files that are added
- * via module and theme .info files. Modules that add JavaScript within
- * hook_init() implementations, or from other code that ensures that the
- * JavaScript is added to all website pages, should also set this flag to
- * TRUE. All JavaScript files within the same group and that have the
- * 'every_page' flag set to TRUE and do not have 'preprocess' set to FALSE
- * are aggregated together into a single aggregate file, and that aggregate
- * file can be reused across a user's entire site visit, leading to faster
- * navigation between pages. However, JavaScript that is only needed on
- * pages less frequently visited, can be added by code that only runs for
- * those particular pages, and that code should not set the 'every_page'
- * flag. This minimizes the size of the aggregate file that the user needs
- * to download when first visiting the website. JavaScript without the
- * 'every_page' flag is aggregated into a separate aggregate file. This
- * other aggregate file is likely to change from page to page, and each new
- * aggregate file needs to be downloaded when first encountered, so it
- * should be kept relatively small by ensuring that most commonly needed
- * JavaScript is added to every page.
- * - weight: A number defining the order in which the JavaScript is added to
- * the page relative to other JavaScript with the same 'scope', 'group',
- * and 'every_page' value. In some cases, the order in which the JavaScript
- * is presented on the page is very important. jQuery, for example, must be
- * added to the page before any jQuery code is run, so jquery.js uses the
- * JS_LIBRARY group and a weight of -20, jquery.once.js (a library backdrop.js
- * depends on) uses the JS_LIBRARY group and a weight of -19, backdrop.js uses
- * the JS_LIBRARY group and a weight of -1, other libraries use the
- * JS_LIBRARY group and a weight of 0 or higher, and all other scripts use
- * one of the other group constants. The exact ordering of JavaScript is as
- * follows:
- * - First by scope, with 'header' first, 'footer' last, and any other
- * scopes provided by a custom theme coming in between, as determined by
- * the theme.
- * - Then by group.
- * - Then by the 'every_page' flag, with TRUE coming before FALSE.
- * - Then by weight.
- * - Then by the order in which the JavaScript was added. For example, all
- * else being the same, JavaScript added by a call to backdrop_add_js() that
- * happened later in the page request gets added to the page after one for
- * which backdrop_add_js() happened earlier in the page request.
- * - defer: If set to TRUE, the defer attribute is set on the <script>
- * tag. Defaults to FALSE. Note that setting this to TRUE will disable
- * preprocessing as though the 'preprocess' option was set to FALSE.
- * - attributes: An associative array of attributes for the <script> tag.
- * This may be used to add 'async' or custom attributes. Note that
- * setting any attributes will disable preprocessing as though the
- * 'preprocess' option was set to FALSE.
- * - cache: If set to FALSE, the JavaScript file is loaded anew on every page
- * call; in other words, it is not cached. Used only when 'type' references
- * a JavaScript file. Defaults to TRUE.
- * - preprocess: If TRUE and JavaScript aggregation is enabled, the script
- * file will be aggregated. Defaults to TRUE.
- * - browsers: An array containing information specifying which browsers
- * should load the JavaScript item. See
- * backdrop_pre_render_conditional_comments() for details. This option is
- * deprecated and no longer has an effect.
- *
- * @return array
- * The current array of JavaScript files, settings, and in-line code,
- * including Backdrop defaults, anything previously added with calls to
- * backdrop_add_js(), and this function call's additions.
- *
- * @since 1.27.0 The 'browsers' option is deprecated.
- *
- * @see backdrop_get_js()
- */
- function backdrop_add_js($data = NULL, $options = NULL) {
- $javascript = &backdrop_static(__FUNCTION__, array());
-
-
- if (isset($options)) {
- if (!is_array($options)) {
- $options = array('type' => $options);
- }
- }
- else {
- $options = array();
- }
- $options += backdrop_js_defaults($data);
-
-
-
- $options['preprocess'] = $options['cache'] && empty($options['attributes']) && empty($options['defer']) ? $options['preprocess'] : FALSE;
-
-
-
- $options['weight'] += count($javascript) / 1000;
-
-
- $options['every_page_weight'] = $options['every_page'] ? -1 : 1;
-
- if (isset($data)) {
-
-
- if (empty($javascript)) {
-
-
-
- $prefix = '';
- url('', array('prefix' => &$prefix));
- $javascript = array(
- 'settings' => array(
- 'data' => array(
- array('basePath' => base_path()),
- array('pathPrefix' => empty($prefix) ? '' : $prefix),
- ),
- 'type' => 'setting',
- 'scope' => 'header',
- 'group' => JS_SETTING,
- 'every_page' => TRUE,
- 'weight' => 0,
- 'browsers' => array(),
- ),
- 'core/misc/backdrop.js' => array(
- 'data' => 'core/misc/backdrop.js',
- 'type' => 'file',
- 'scope' => 'header',
- 'group' => JS_LIBRARY,
- 'every_page' => TRUE,
- 'weight' => -1,
- 'preprocess' => TRUE,
- 'cache' => TRUE,
- 'defer' => FALSE,
- 'attributes' => array(),
- 'browsers' => array(),
- 'version' => BACKDROP_VERSION,
- ),
- );
-
- if (!empty($GLOBALS['settings']['backdrop_drupal_compatibility'])) {
- $javascript['settings']['data'][] = array('drupalCompatibility' => TRUE);
- }
-
-
- backdrop_add_library('system', 'jquery', TRUE);
- backdrop_add_library('system', 'jquery.once', TRUE);
- }
-
- switch ($options['type']) {
- case 'setting':
-
-
- if (isset($options['key'])) {
- $javascript['settings']['data'][$options['key']] = $data;
- }
- else {
- $javascript['settings']['data'][] = $data;
- }
- break;
-
- case 'inline':
- if (isset($options['key'])) {
- $javascript[$options['key']] = $options;
- }
- else {
- $javascript[] = $options;
- }
- break;
-
- default:
-
-
- $javascript[$options['data']] = $options;
- }
- }
- return $javascript;
- }
-
- * Constructs an array of the defaults that are used for JavaScript items.
- *
- * @param $data
- * (optional) The default data parameter for the JavaScript item array.
- *
- * @return array
- * The array of defaults for added JavaScript items.
- *
- * @see backdrop_get_js()
- * @see backdrop_add_js()
- */
- function backdrop_js_defaults($data = NULL) {
- return array(
- 'type' => 'file',
- 'group' => JS_DEFAULT,
- 'every_page' => FALSE,
- 'weight' => 0,
- 'scope' => 'header',
- 'cache' => TRUE,
- 'defer' => FALSE,
- 'preprocess' => TRUE,
- 'version' => NULL,
- 'data' => $data,
- 'attributes' => array(),
- 'browsers' => array(),
- );
- }
-
- * Returns a themed presentation of all JavaScript code for the current page.
- *
- * References to JavaScript files are placed in a certain order: first, all
- * 'core' files, then all 'module' and finally all 'theme' JavaScript files
- * are added to the page. Then, all settings are output, followed by 'inline'
- * JavaScript code. If running update.php, all preprocessing is disabled.
- *
- * Note that hook_js_alter(&$javascript) is called during this function call
- * to allow alterations of the JavaScript during its presentation. Calls to
- * backdrop_add_js() from hook_js_alter() will not be added to the output
- * presentation. The correct way to add JavaScript during hook_js_alter()
- * is to add another element to the $javascript array, deriving from
- * backdrop_js_defaults(). See locale_js_alter() for an example of this.
- *
- * @param $scope
- * (optional) The scope for which the JavaScript rules should be returned.
- * Defaults to 'header'.
- * @param $javascript
- * (optional) An array with all JavaScript code. Defaults to the default
- * JavaScript array for the given scope.
- * @param $skip_alter
- * (optional) If set to TRUE, this function skips calling backdrop_alter() on
- * $javascript, useful when the calling function passes a $javascript array
- * that has already been altered.
- *
- * @return
- * All JavaScript code segments and includes for the scope as HTML tags.
- *
- * @see backdrop_add_js()
- * @see locale_js_alter()
- * @see backdrop_js_defaults()
- */
- function backdrop_get_js($scope = 'header', $javascript = NULL, $skip_alter = FALSE) {
- if (!isset($javascript)) {
- $javascript = backdrop_add_js();
- }
- if (empty($javascript)) {
- return '';
- }
-
-
- if (!$skip_alter) {
- backdrop_alter('js', $javascript);
- }
-
-
- $items = array();
- foreach ($javascript as $key => $item) {
- if ($item['scope'] == $scope) {
- $items[$key] = $item;
- }
- }
-
-
- foreach ($items as $key => &$item) {
- if (!isset($item['every_page_weight'])) {
- $item['every_page_weight'] = $item['every_page'] ? -1 : 1;
- }
- }
-
-
- backdrop_sort($items, array('group', 'every_page_weight', 'weight'));
-
-
-
- $setting['ajaxPageState']['js'] = array_fill_keys(array_keys($items), 1);
- unset($setting['ajaxPageState']['js']['settings']);
- backdrop_add_js($setting, 'setting');
-
-
-
-
-
-
-
- if ($scope == 'header' && isset($items['settings'])) {
- $items['settings']['data'][] = $setting;
- }
-
-
- $elements = array(
- '#type' => 'scripts',
- '#items' => $items,
- );
-
- return backdrop_render($elements);
- }
-
- * #pre_render callback to add the elements needed for JavaScript tags to be rendered.
- *
- * This function evaluates the aggregation enabled/disabled condition on a group
- * by group basis by testing whether an aggregate file has been made for the
- * group rather than by testing the site-wide aggregation setting. This allows
- * this function to work correctly even if modules have implemented custom
- * logic for grouping and aggregating files.
- *
- * @param $element
- * A render array containing:
- * - #items: The JavaScript items as returned by backdrop_add_js() and
- * altered by backdrop_get_js().
- * - #group_callback: A function to call to group #items. Following
- * this function, #aggregate_callback is called to aggregate items within
- * the same group into a single file.
- * - #aggregate_callback: A function to call to aggregate the items within
- * the groups arranged by the #group_callback function.
- *
- * @return
- * A render array that will render to a string of JavaScript tags.
- *
- * @see backdrop_get_js()
- */
- function backdrop_pre_render_scripts($elements) {
-
- if (isset($elements['#group_callback'])) {
- $elements['#groups'] = $elements['#group_callback']($elements['#items']);
- }
- if (isset($elements['#aggregate_callback'])) {
- $elements['#aggregate_callback']($elements['#groups']);
- }
-
-
-
-
-
-
-
- $default_query_string = !defined('MAINTENANCE_MODE') ? state_get('css_js_query_string', '0') : '';
-
-
- $element_defaults = array(
- '#type' => 'head_tag',
- '#tag' => 'script',
- '#value' => '',
- );
-
-
- foreach ($elements['#groups'] as $group) {
-
-
-
- if ($group['type'] == 'file' && isset($group['data'])) {
- $element = $element_defaults;
- $element['#attributes']['src'] = file_create_url($group['data']);
- $element['#browsers'] = $group['browsers'];
- $elements[] = $element;
- }
-
-
- else {
- foreach ($group['items'] as $item) {
-
- $element = $element_defaults;
- if (!empty($item['defer'])) {
- $element['#attributes']['defer'] = 'defer';
- }
- $element['#browsers'] = $item['browsers'];
-
-
- switch ($item['type']) {
- case 'setting':
- $element['#value'] = 'window.Backdrop = {settings: ' . backdrop_json_encode(backdrop_array_merge_deep_array($item['data'])) . "};";
- break;
-
- case 'inline':
- $element['#value'] = $item['data'];
- break;
-
- case 'file':
- $query_string = empty($item['version']) ? $default_query_string : 'v=' . $item['version'];
- $query_string_separator = (strpos($item['data'], '?') !== FALSE) ? '&' : '?';
- $element['#attributes']['src'] = file_create_url($item['data']) . $query_string_separator . ($item['cache'] ? $query_string : REQUEST_TIME);
- break;
-
- case 'external':
- $element['#attributes']['src'] = $item['data'];
- break;
- }
-
-
- if (!empty($element['#attributes']['src']) && !empty($item['attributes'])) {
- $element['#attributes'] += $item['attributes'];
- }
-
- $elements[] = $element;
- }
- }
- }
-
- return $elements;
- }
-
- * Default callback to group JavaScript items.
- *
- * This function arranges the JavaScript items that are in the #items property
- * of the scripts element into groups. When aggregation is enabled, files within
- * a group are aggregated into a single file, significantly improving page
- * loading performance by minimizing network traffic overhead.
- *
- * This function puts multiple items into the same group if they are groupable
- * and if they are for the same browsers. Items of the 'file' type are groupable
- * if their 'preprocess' flag is TRUE. Items of the 'inline', 'settings', or
- * 'external' type are not groupable.
- *
- * This function also ensures that the process of grouping items does not change
- * their relative order. This requirement may result in multiple groups for the
- * same type and browsers, if needed to accommodate other items in
- * between.
- *
- * @param $javascript
- * An array of JavaScript items, as returned by backdrop_add_js(), but after
- * alteration performed by backdrop_get_js().
- *
- * @return
- * An array of JavaScript groups. Each group contains the same keys (e.g.,
- * 'data', etc.) as a JavaScript item from the $javascript parameter, with the
- * value of each key applying to the group as a whole. Each group also
- * contains an 'items' key, which is the subset of items from $javascript that
- * are in the group.
- *
- * @see backdrop_pre_render_scripts()
- */
- function backdrop_group_js($javascript) {
- $groups = array();
-
-
-
-
- $group_keys = NULL;
- $current_group_keys = NULL;
- $index = -1;
- foreach ($javascript as $item) {
-
-
-
-
- ksort($item['browsers']);
-
- switch ($item['type']) {
- case 'file':
-
-
-
-
- $group_keys = $item['preprocess'] ? array($item['type'], $item['group'], $item['every_page'], $item['browsers']) : FALSE;
- break;
-
- case 'external':
- case 'setting':
- case 'inline':
-
- $group_keys = FALSE;
- break;
- }
-
-
-
- if ($group_keys !== $current_group_keys) {
- $index++;
-
-
-
- $groups[$index] = $item;
- unset($groups[$index]['data'], $groups[$index]['weight']);
- $groups[$index]['items'] = array();
- $current_group_keys = $group_keys ? $group_keys : NULL;
- }
-
-
- $groups[$index]['items'][] = $item;
- }
-
- return $groups;
- }
-
- * Default callback to aggregate JavaScript files.
- *
- * Having the browser load fewer JavaScript files results in much faster page
- * loads than when it loads many small files. This function aggregates files
- * within the same group into a single file unless the site-wide setting to do
- * so is disabled (commonly the case during site development). To optimize
- * download, it also compresses the aggregate files by removing comments,
- * whitespace, and other unnecessary content.
- *
- * @param $js_groups
- * An array of JavaScript groups as returned by backdrop_group_js(). For each
- * group that is aggregated, this function sets the value of the group's
- * 'data' key to the URI of the aggregate file.
- *
- * @see backdrop_group_js()
- * @see backdrop_pre_render_scripts()
- */
- function backdrop_aggregate_js(&$js_groups) {
- if (!defined('MAINTENANCE_MODE') && config_get('system.core', 'preprocess_js')) {
- foreach ($js_groups as $key => $group) {
- if ($group['type'] == 'file' && $group['preprocess']) {
- $js_groups[$key]['data'] = backdrop_build_js_cache($group['items']);
- }
- }
- }
- }
-
- * Adds attachments to a render() structure.
- *
- * Libraries, JavaScript, CSS and other types of custom structures are attached
- * to elements using the #attached property. The #attached property is an
- * associative array, where the keys are the the attachment types and the values
- * are the attached data. For example:
- *
- * @code
- * $build['#attached'] = array(
- * 'js' => array(backdrop_get_path('module', 'taxonomy') . '/js/taxonomy.admin.js'),
- * 'css' => array(backdrop_get_path('module', 'taxonomy') . '/css/taxonomy.css'),
- * );
- * @endcode
- *
- * 'js', 'css', and 'library' are types that get special handling. For any
- * other kind of attached data, the array key must be the full name of the
- * callback function and each value an array of arguments. For example:
- * @code
- * $build['#attached']['backdrop_add_http_header'] = array(
- * array('Content-Type', 'application/rss+xml; charset=utf-8'),
- * );
- * @endcode
- *
- * External 'js' and 'css' files can also be loaded. For example:
- * @code
- * $build['#attached']['js'] = array(
- * 'http://code.jquery.com/jquery-1.4.2.min.js' => array(
- * 'type' => 'external',
- * ),
- * );
- * @endcode
- *
- * @param $elements
- * The structured array describing the data being rendered.
- * @param $group
- * The default group of JavaScript and CSS being added. This is only applied
- * to the stylesheets and JavaScript items that don't have an explicit group
- * assigned to them.
- * @param $dependency_check
- * When TRUE, will exit if a given library's dependencies are missing. When
- * set to FALSE, will continue to add the libraries, even though one or more
- * dependencies are missing. Defaults to FALSE.
- * @param $every_page
- * Set to TRUE to indicate that the attachments are added to every page on the
- * site. Only attachments with the every_page flag set to TRUE can participate
- * in JavaScript/CSS aggregation.
- *
- * @return
- * FALSE if there were any missing library dependencies; TRUE if all library
- * dependencies were met.
- *
- * @see backdrop_add_library()
- * @see backdrop_add_js()
- * @see backdrop_add_css()
- * @see backdrop_add_icon()
- * @see backdrop_render()
- */
- function backdrop_process_attached($elements, $group = JS_DEFAULT, $dependency_check = FALSE, $every_page = NULL) {
-
- $elements['#attached'] += array(
- 'library' => array(),
- 'js' => array(),
- 'css' => array(),
- 'icons' => array(),
- );
-
-
- $success = TRUE;
- foreach ($elements['#attached']['library'] as $library) {
- if (backdrop_add_library($library[0], $library[1], $every_page) === FALSE) {
- $success = FALSE;
-
- if ($dependency_check) {
- return $success;
- }
- }
- }
- unset($elements['#attached']['library']);
-
-
-
-
- foreach (array('js', 'css') as $type) {
- foreach ($elements['#attached'][$type] as $data => $options) {
-
-
- if (!is_array($options)) {
- $data = $options;
- $options = NULL;
- }
-
-
- if (is_numeric($data)) {
- $data = $options['data'];
- unset($options['data']);
- }
-
- if (!isset($options['group'])) {
- $options['group'] = $group;
- }
-
- if (isset($every_page)) {
- $options['every_page'] = $every_page;
- }
- call_user_func('backdrop_add_' . $type, $data, $options);
- }
- unset($elements['#attached'][$type]);
- }
-
-
- backdrop_add_icons($elements['#attached']['icons']);
- unset($elements['#attached']['icons']);
-
-
-
-
- foreach ($elements['#attached'] as $callback => $options) {
- foreach ($elements['#attached'][$callback] as $args) {
- call_user_func_array($callback, $args);
- }
- }
-
- return $success;
- }
-
- * Adds JavaScript to change the state of an element based on another element.
- *
- * A "state" means a certain property on a DOM element, such as "visible" or
- * "checked". A state can be applied to an element, depending on the state of
- * one or more other elements on the page. In general, states depend on HTML
- * attributes and DOM element properties, which change due to user interaction.
- *
- * Since states are driven by JavaScript only, it is important to understand
- * that all states are applied on presentation only, none of the states force
- * any server-side logic, and that they will not be applied for site visitors
- * without JavaScript support. All modules implementing states have to make
- * sure that the intended logic also works without JavaScript being enabled.
- *
- * #states is an associative array in the form of:
- * @code
- * '#states' => array(
- * STATE1 => CONDITIONS_ARRAY1,
- * STATE2 => CONDITIONS_ARRAY2,
- * ...
- * )
- * @endcode
- *
- * Each key is the name of a state to apply to the element, such as "visible" or
- * "checked". Each value is a list of conditions that denote when the state
- * should be applied.
- *
- * Multiple conditions may be specified for a given state. In this case (an
- * 'AND' conditional), all conditions must be true for the state to be applied:
- * @code
- * '#states' => array(
- * STATE1 => array(
- * // All of these conditions must be true; this one...
- * JQUERY_SELECTOR1 => CONDITION1,
- * // ...AND this one.
- * JQUERY_SELECTOR2 => CONDITION2,
- * ),
- * STATE2 => CONDITIONS_ARRAY2,
- * ...
- * )
- * @endcode
- *
- * For 'OR' conditionals, each condition must be wrapped in its own array:
- * @code
- * '#states' => array(
- * STATE1 => array(
- * // Any of these conditions must be true; this one...
- * array(JQUERY_SELECTOR1 => CONDITION1),
- * // OR this one (or both).
- * array(JQUERY_SELECTOR2 => CONDITION2),
- * ),
- * STATE2 => CONDITIONS_ARRAY2,
- * ...
- * )
- * @endcode
- *
- * For 'XOR' (exclusive 'OR') conditionals, a similar syntax as 'OR' is used,
- * but the 'XOR' operator needs to be explicitly defined as an array item with
- * the string 'xor':
- * @code
- * '#states' => array(
- * STATE1 => array(
- * // Either one of these conditions must be true; this one...
- * array(JQUERY_SELECTOR1 => CONDITION1),
- * 'xor',
- * // or this one, but NOT both.
- * array(JQUERY_SELECTOR2 => CONDITION2),
- * ),
- * STATE2 => CONDITIONS_ARRAY2,
- * ...
- * )
- * @endcode
- *
- * Each remote condition is a key/value pair specifying conditions on the other
- * element that need to be met to apply the state to the element:
- * @code
- * array(
- * 'visible' => array(
- * ':input[name="remote_checkbox"]' => array('checked' => TRUE),
- * ),
- * )
- * @endcode
- *
- * For example, to show a textfield only when a checkbox is checked:
- * @code
- * $form['toggle_me'] = array(
- * '#type' => 'checkbox',
- * '#title' => t('Tick this box to type'),
- * );
- * $form['settings'] = array(
- * '#type' => 'textfield',
- * '#states' => array(
- * // Only show this field when the 'toggle_me' checkbox is enabled.
- * 'visible' => array(
- * ':input[name="toggle_me"]' => array('checked' => TRUE),
- * ),
- * ),
- * );
- * @endcode
- *
- * The following states may be applied to an element:
- * - enabled
- * - disabled
- * - required
- * - optional
- * - visible
- * - invisible
- * - checked
- * - unchecked
- * - expanded
- * - collapsed
- *
- * The following states may be used in remote conditions:
- * - empty
- * - filled
- * - checked
- * - unchecked
- * - expanded
- * - collapsed
- * - value
- *
- * The following states exist for both elements and remote conditions, but are
- * not fully implemented and may not change anything on the element:
- * - relevant
- * - irrelevant
- * - valid
- * - invalid
- * - touched
- * - untouched
- * - readwrite
- * - readonly
- *
- * Note that the 'required' and 'optional' states only affect the display of the
- * required indicator (i.e. the red asterisk). They *do not* affect validation
- * in any way. If you need a form element to be required based on the state of
- * another element, you must implement your own form validation to account for
- * that.
- *
- * When referencing select lists and radio buttons in remote conditions, a
- * 'value' condition must be used:
- * @code
- * '#states' => array(
- * // Show the settings if 'bar' has been selected for 'foo'.
- * 'visible' => array(
- * ':input[name="foo"]' => array('value' => 'bar'),
- * ),
- * ),
- * @endcode
- *
- * To specify what a value should NOT be, use '!value':
- * @code
- * '#states' => array(
- * // Show the settings if 'bar' has NOT been selected for 'foo'.
- * 'visible' => array(
- * ':input[name="foo"]' => array('!value' => 'bar'),
- * ),
- * ),
- * @endcode
- *
- * @param $elements
- * A renderable array element having a #states property as described above.
- *
- * @see form_example_states_form()
- */
- function backdrop_process_states(&$elements) {
- $elements['#attached']['library'][] = array('system', 'backdrop.states');
- $elements['#attached']['js'][] = array(
- 'type' => 'setting',
- 'data' => array('states' => array('#' . $elements['#id'] => $elements['#states'])),
- );
- }
-
- * Adds multiple JavaScript or CSS files at the same time.
- *
- * A library defines a set of JavaScript and/or CSS files, optionally using
- * settings, and optionally requiring another library. For example, a library
- * can be a jQuery plugin, a JavaScript framework, or a CSS framework. This
- * function allows modules to load a library defined/shipped by itself or a
- * depending module, without having to add all files of the library separately.
- * Each library is only loaded once.
- *
- * @param $module
- * The name of the module that registered the library.
- * @param $name
- * The name of the library to add.
- * @param $every_page
- * Set to TRUE if this library is added to every page on the site. Only items
- * with the every_page flag set to TRUE can participate in aggregation.
- *
- * @return
- * TRUE if the library was successfully added; FALSE if the library or one of
- * its dependencies could not be added.
- *
- * @see backdrop_get_library()
- * @see hook_library_info()
- * @see hook_library_info_alter()
- */
- function backdrop_add_library($module, $name, $every_page = NULL) {
- $added = &backdrop_static(__FUNCTION__, array());
-
-
- if (!isset($added[$module][$name])) {
- if ($library = backdrop_get_library($module, $name)) {
-
- $elements['#attached'] = array(
- 'library' => $library['dependencies'],
- 'js' => $library['js'],
- 'css' => $library['css'],
- 'icons' => $library['icons'],
- );
- $added[$module][$name] = backdrop_process_attached($elements, JS_LIBRARY, TRUE, $every_page);
- }
- else {
-
- $added[$module][$name] = FALSE;
- }
- }
-
- return $added[$module][$name];
- }
-
- * Retrieves information for a JavaScript/CSS library.
- *
- * Library information is statically cached. Libraries are keyed by module for
- * several reasons:
- * - Libraries are not unique. Multiple modules might ship with the same library
- * in a different version or variant. This registry cannot (and does not
- * attempt to) prevent library conflicts.
- * - Modules implementing and thereby depending on a library that is registered
- * by another module can only rely on that module's library.
- * - Two (or more) modules can still register the same library and use it
- * without conflicts in case the libraries are loaded on certain pages only.
- *
- * @param $module
- * The name of a module that registered a library.
- * @param $name
- * (optional) The name of a registered library to retrieve. By default, all
- * libraries registered by $module are returned.
- *
- * @return
- * The definition of the requested library, if $name was passed and it exists,
- * or FALSE if it does not exist. If no $name was passed, an associative array
- * of libraries registered by $module is returned (which may be empty).
- *
- * @see backdrop_add_library()
- * @see hook_library_info()
- * @see hook_library_info_alter()
- *
- * @todo The purpose of backdrop_get_*() is completely different to other page
- * requisite API functions; find and use a different name.
- */
- function backdrop_get_library($module, $name = NULL) {
- $libraries = &backdrop_static(__FUNCTION__, array());
-
- if (!isset($libraries[$module])) {
-
- $module_libraries = module_invoke($module, 'library_info');
- if (empty($module_libraries)) {
- $module_libraries = array();
- }
-
- backdrop_alter('library_info', $module_libraries, $module);
-
- foreach ($module_libraries as $key => $data) {
- if (is_array($data)) {
-
- $module_libraries[$key] += array(
- 'dependencies' => array(),
- 'js' => array(),
- 'css' => array(),
- 'icons' => array(),
- );
- foreach ($module_libraries[$key]['js'] as $file => $options) {
- $module_libraries[$key]['js'][$file]['version'] = $module_libraries[$key]['version'];
- }
- }
- }
- $libraries[$module] = $module_libraries;
- }
- if (isset($name)) {
- if (!isset($libraries[$module][$name])) {
- $libraries[$module][$name] = FALSE;
- }
- return $libraries[$module][$name];
- }
- return $libraries[$module];
- }
-
- * Adds icons to the page to make them available in JS and CSS files.
- *
- * The icon name is resolved to a file path and then added to the page as both
- * a JavaScript variable (Backdrop.icons['icon-name']) and as a CSS variable
- * (--icon-[icon-name]). Note that use of this function is not necessary if
- * embedding an icon directly onto the page using the icon() function. This is
- * only needed if using icons in JS and CSS files.
- *
- * @param array $icon_names
- * An array of unique icon names be added, without the extensions. Most icon
- * names can be found by browsing the core/misc/icons directory. The icon
- * list can either be a plain list of names in an unindexed array, or the
- * icon name can be the key, with an array of options as the value. The
- * available options for each icon include:
- * - immutable: Whether to use the original icon instead of any overrides.
- *
- * @see icon()
- *
- * @since 1.28.0 Function added.
- */
- function backdrop_add_icons(array $icon_names) {
- $icon_paths = array();
- foreach ($icon_names as $icon_key => $icon_options) {
- $icon_name = is_array($icon_options) ? $icon_key : $icon_options;
- $immutable = is_array($icon_options) && !empty($icon_options['immutable']);
- if ($icon_path = icon_get_path($icon_name, $immutable)) {
- $icon_paths[$icon_name] = base_path() . $icon_path;
- }
- }
- if ($icon_paths) {
- backdrop_add_js(array('icons' => $icon_paths), 'setting');
- backdrop_add_library('system', 'backdrop.icons');
- }
- }
-
- * Assists in adding the tableDrag JavaScript behavior to a themed table.
- *
- * Draggable tables should be used wherever an outline or list of sortable items
- * needs to be arranged by an end-user. Draggable tables are very flexible and
- * can manipulate the value of form elements placed within individual columns.
- *
- * To set up a table to use drag and drop in place of weight select-lists or in
- * place of a form that contains parent relationships, the form must be themed
- * into a table. The table must have an ID attribute set. If using
- * theme_table(), the ID may be set as follows:
- * @code
- * $output = theme('table', array('header' => $header, 'rows' => $rows, 'attributes' => array('id' => 'my-module-table')));
- * return $output;
- * @endcode
- *
- * In the theme function for the form, a special class must be added to each
- * form element within the same column, "grouping" them together.
- *
- * In a situation where a single weight column is being sorted in the table, the
- * classes could be added like this (in the theme function):
- * @code
- * $form['my_elements'][$delta]['weight']['#attributes']['class'] = array('my-elements-weight');
- * @endcode
- *
- * Each row of the table must also have a class of "draggable" in order to
- * enable the drag handles:
- * @code
- * $row = array(...);
- * $rows[] = array(
- * 'data' => $row,
- * 'class' => array('draggable'),
- * );
- * @endcode
- *
- * When tree relationships are present, the two additional classes
- * 'tabledrag-leaf' and 'tabledrag-root' can be used to refine the behavior:
- * - Rows with the 'tabledrag-leaf' class cannot have child rows.
- * - Rows with the 'tabledrag-root' class cannot be nested under a parent row.
- *
- * Calling backdrop_add_tabledrag() would then be written as such:
- * @code
- * backdrop_add_tabledrag('my-module-table', 'order', 'sibling', 'my-elements-weight');
- * @endcode
- *
- * In a more complex case where there are several groups in one column (such as
- * the block regions on the admin/structure/block page), a separate subgroup
- * class must also be added to differentiate the groups.
- * @code
- * $form['my_elements'][$region][$delta]['weight']['#attributes']['class'] = array('my-elements-weight', 'my-elements-weight-' . $region);
- * @endcode
- *
- * $group is still 'my-element-weight', and the additional $subgroup variable
- * will be passed in as 'my-elements-weight-' . $region. This also means that
- * you'll need to call backdrop_add_tabledrag() once for every region added.
- *
- * @code
- * foreach ($regions as $region) {
- * backdrop_add_tabledrag('my-module-table', 'order', 'sibling', 'my-elements-weight', 'my-elements-weight-' . $region);
- * }
- * @endcode
- *
- * In a situation where tree relationships are present, adding multiple
- * subgroups is not necessary, because the table will contain indentations that
- * provide enough information about the sibling and parent relationships. See
- * theme_menu_overview_form() for an example creating a table containing parent
- * relationships.
- *
- * Note that this function should be called from the theme layer, such as in a
- * .tpl.php file, theme_ function, or in a template_preprocess function, not in
- * a form declaration. Though the same JavaScript could be added to the page
- * using backdrop_add_js() directly, this function helps keep template files
- * clean and readable. It also prevents tabledrag.js from being added twice
- * accidentally.
- *
- * @param $table_id
- * String containing the target table's id attribute. If the table does not
- * have an id, one will need to be set, such as <table id="my-module-table">.
- * @param $action
- * String describing the action to be done on the form item. Either 'match'
- * 'depth', or 'order'. Match is typically used for parent relationships.
- * Order is typically used to set weights on other form elements with the same
- * group. Depth updates the target element with the current indentation.
- * @param $relationship
- * String describing where the $action variable should be performed. Either
- * 'parent', 'sibling', 'group', or 'self'. Parent will only look for fields
- * up the tree. Sibling will look for fields in the same group in rows above
- * and below it. Self affects the dragged row itself. Group affects the
- * dragged row, plus any children below it (the entire dragged group).
- * @param $group
- * A class name applied on all related form elements for this action.
- * @param $subgroup
- * (optional) If the group has several subgroups within it, this string should
- * contain the class name identifying fields in the same subgroup.
- * @param $source
- * (optional) If the $action is 'match', this string should contain the class
- * name identifying what field will be used as the source value when matching
- * the value in $subgroup.
- * @param $hidden
- * (optional) The column containing the field elements may be entirely hidden
- * from view dynamically when the JavaScript is loaded. Set to FALSE if the
- * column should not be hidden.
- * @param $limit
- * (optional) Limit the maximum amount of parenting in this table.
- * @see block-admin-display-form.tpl.php
- * @see theme_menu_overview_form()
- */
- function backdrop_add_tabledrag($table_id, $action, $relationship, $group, $subgroup = NULL, $source = NULL, $hidden = TRUE, $limit = 0) {
- $js_added = &backdrop_static(__FUNCTION__, FALSE);
- if (!$js_added) {
-
-
-
- backdrop_add_library('system', 'jquery.cookie');
- backdrop_add_js('core/misc/tabledrag.js', array('weight' => -1));
- $js_added = TRUE;
- }
-
-
- $target = isset($subgroup) ? $subgroup : $group;
- $source = isset($source) ? $source : $target;
- $settings['tableDrag'][$table_id][$group][] = array(
- 'target' => $target,
- 'source' => $source,
- 'relationship' => $relationship,
- 'action' => $action,
- 'hidden' => $hidden,
- 'limit' => $limit,
- );
- backdrop_add_js($settings, 'setting');
- }
-
- * Aggregates JavaScript files into a cache file in the files directory.
- *
- * The file name for the JavaScript cache file is generated from the hash of
- * the aggregated contents of the files in $files. This forces proxies and
- * browsers to download new JavaScript when the JavaScript changes.
- *
- * The cache file name is retrieved on a page load via a lookup variable that
- * contains an associative array. The array key is the hash of the names in
- * $files while the value is the cache file name. The cache file is generated
- * in two cases. First, if there is no file name value for the key, which will
- * happen if a new file name has been added to $files or after the lookup
- * variable is emptied to force a rebuild of the cache. Second, the cache file
- * is generated if it is missing on disk. Old cache files are not deleted
- * immediately when the lookup variable is emptied, but are deleted after a set
- * period by backdrop_delete_file_if_stale(). This ensures that files referenced
- * by a cached page will still be available.
- *
- * @param $files
- * An array of JavaScript files to aggregate and compress into one file.
- *
- * @return
- * The URI of the cache file, or FALSE if the file could not be saved.
- */
- function backdrop_build_js_cache($files) {
- $contents = '';
- $uri = '';
- $map = state_get('js_cache_files', array());
-
-
- $js_data = array();
- foreach ($files as $file) {
- $js_data[] = $file['data'];
- }
- $key = hash('sha256', serialize($js_data));
- if (isset($map[$key])) {
- $uri = $map[$key];
- }
-
- if (empty($uri) || !file_exists($uri)) {
-
- foreach ($files as $info) {
- if ($info['preprocess']) {
-
- $contents .= file_get_contents($info['data']) . ";\n";
- }
- }
-
-
- $filename = 'js_' . backdrop_hash_base64($contents) . '.js';
-
- $jspath = 'public://js';
- $uri = $jspath . '/' . $filename;
-
- file_prepare_directory($jspath, FILE_CREATE_DIRECTORY);
- if (!file_exists($uri) && !file_unmanaged_save_data($contents, $uri, FILE_EXISTS_REPLACE)) {
- return FALSE;
- }
-
-
-
-
- if (settings_get('system.core', 'js_gzip_compression') && config_get('system.core', 'clean_url') && extension_loaded('zlib')) {
- if (!file_exists($uri . '.gz') && !file_unmanaged_save_data(gzencode($contents, 9, FORCE_GZIP), $uri . '.gz', FILE_EXISTS_REPLACE)) {
- return FALSE;
- }
- }
- if (!$map) {
- $map = array();
- }
- $map[$key] = $uri;
- state_set('js_cache_files', $map);
- }
- return $uri;
- }
-
- * Deletes old cached JavaScript files and variables.
- */
- function backdrop_clear_js_cache() {
- state_del('locale_javascript_parsed');
- state_set('js_cache_files', FALSE);
- file_scan_directory('public://js', '/.*/', array('callback' => 'backdrop_delete_file_if_stale'));
- }
-
- * Converts a PHP variable into its JavaScript equivalent.
- *
- * We use HTML-safe strings, with several characters escaped.
- *
- * @param mixed $var
- * The variable to be encoded as JSON.
- * @param bool $pretty_print
- * Backwards-compatible pretty printing of the JSON string. This uses the
- * JSON_PRETTY_PRINT and JSON_UNESCAPED_UNICODE options to make the JSON more
- * readable by humans, or emulates this functionality if running an older
- * version of PHP.
- *
- * @return string|FALSE
- * The given $var encoded as a JSON string or FALSE on failure.
- *
- * @see backdrop_json_decode()
- * @ingroup php_wrappers
- */
- function backdrop_json_encode($var, $pretty_print = FALSE) {
- if ($pretty_print) {
- return json_encode($var, JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES);
- }
-
- else {
- return json_encode($var, JSON_HEX_TAG | JSON_HEX_APOS | JSON_HEX_AMP | JSON_HEX_QUOT);
- }
- }
-
- * Converts an HTML-safe JSON string into its PHP equivalent.
- *
- * @see backdrop_json_encode()
- * @ingroup php_wrappers
- */
- function backdrop_json_decode($var) {
- return json_decode($var, TRUE);
- }
-
- * Format a string of JSON for older versions of PHP.
- *
- * This function is no longer used directly in core. Use backdrop_json_encode()
- * to format JSON.
- *
- * @param $json
- * A string of JSON text.
- * @return string
- * A formatted string of JSON text.
- *
- * @deprecated since 1.22.0
- */
- function backdrop_json_format($json) {
- watchdog_deprecated_function('common', __FUNCTION__);
-
-
- $result = '';
- $pos = 0;
- $strlen = strlen($json);
- $indent = " ";
- $new_line = "\n";
- $prev_char = '';
- $prev_prev_char = '';
- $out_of_quotes = TRUE;
-
- for ($i = 0; $i < $strlen; $i++) {
-
- $char = substr($json, $i, 1);
-
-
- if ($char === '"' && !($prev_char === '\\' && $prev_prev_char !== '\\')) {
- $out_of_quotes = !$out_of_quotes;
- }
-
-
- elseif (($char == '}' || $char == ']') && $out_of_quotes) {
- $result .= $new_line;
- $pos--;
- for ($j = 0; $j < $pos; $j++) {
- $result .= $indent;
- }
- }
-
-
- elseif ($out_of_quotes && FALSE !== strpos(" \t\r\n", $char)) {
- continue;
- }
-
-
- $result .= $char;
-
- if ($char == ':' && $out_of_quotes) {
- $result .= ' ';
- }
-
-
-
- if (($char == ',' || $char == '{' || $char == '[') && $out_of_quotes) {
- $result .= $new_line;
- if ($char == '{' || $char == '[') {
- $pos++;
- }
- for ($j = 0; $j < $pos; $j++) {
- $result .= $indent;
- }
- }
- $prev_prev_char = $prev_char;
- $prev_char = $char;
- }
-
- return $result;
- }
-
- * Decode Unicode characters in JSON strings.
- *
- * This function is no longer used directly in core. Use backdrop_json_encode()
- * to format JSON.
- *
- * @deprecated since 1.22.0
- */
- function backdrop_json_decode_unicode($json) {
- watchdog_deprecated_function('common', __FUNCTION__);
-
-
- $decode_callback = function ($match) {
-
- if (hexdec($match[2]) < 32) {
- $string = '\u' . $match[2];
- }
- else {
- $string = mb_convert_encoding(pack('H*', $match[2]), 'UTF-8', 'UCS-2BE');
- }
- return $match[1] . $string;
- };
-
-
-
-
-
- $pattern = '/([^\\\\])\\\\u([0-9a-fA-F]{4})/';
- $json = preg_replace_callback($pattern, $decode_callback, $json);
-
- return preg_replace_callback($pattern, $decode_callback, $json);
- }
-
- * Returns data in JSON format.
- *
- * This function should be used for JavaScript callback functions returning
- * data in JSON format. It sets the header for JavaScript output.
- *
- * @param $var
- * (optional) If set, the variable will be converted to JSON and output.
- */
- function backdrop_json_output($var = NULL) {
-
- backdrop_add_http_header('Content-Type', 'application/json');
-
- if (isset($var)) {
- echo backdrop_json_encode($var);
- }
- }
-
- * Packages and sends the result of a page callback to the browser as JSON.
- *
- * @param $page_callback_result
- * The result of a page callback. Can be one of:
- * - NULL: to indicate no content.
- * - An integer menu status constant: to indicate an error condition.
- * - An array of raw data to be printed as JSON.
- *
- * @since 1.5.0
- *
- * @see backdrop_deliver_page()
- * @see backdrop_deliver_html_page()
- */
- function backdrop_json_deliver($page_callback_result) {
-
-
- if (is_int($page_callback_result)) {
- switch ($page_callback_result) {
- case MENU_NOT_FOUND:
- backdrop_add_http_header('Status', '404 Not Found');
- watchdog('page not found', check_plain($_GET['q']), NULL, WATCHDOG_WARNING);
- $output = array('error' => t('Page not found'));
- break;
-
- case MENU_ACCESS_DENIED:
- backdrop_add_http_header('Status', '403 Forbidden');
- watchdog('access denied', check_plain($_GET['q']), NULL, WATCHDOG_WARNING);
- $output = array('error' => t('Access denied'));
- break;
-
- case MENU_SITE_OFFLINE:
- backdrop_add_http_header('Status', '503 Service unavailable');
- backdrop_set_title(t('Site under maintenance'));
- $output = array('error' => t('Site is offline.'));
- break;
- }
- }
- elseif (isset($page_callback_result)) {
- $output = $page_callback_result;
- }
-
- if (isset($output)) {
- backdrop_json_output($page_callback_result);
- }
-
-
- backdrop_page_footer();
- }
-
- * Gets a salt useful for hardening against SQL injection.
- *
- * @return
- * A salt based on information in settings.php, not in the database.
- */
- function backdrop_get_hash_salt() {
- global $databases;
- $hash_salt = settings_get('hash_salt');
-
-
-
- return empty($hash_salt) ? hash('sha256', serialize($databases)) : $hash_salt;
- }
-
- * Ensures the private key variable used to generate tokens is set.
- *
- * @return
- * The private key.
- */
- function backdrop_get_private_key() {
- if (!($key = state_get('private_key'))) {
- $key = backdrop_random_key();
- state_set('private_key', $key);
- }
- return $key;
- }
-
- * Generates a token based on $value, the user session, and the private key.
- *
- * @param $value
- * An additional value to base the token on.
- *
- * The generated token is based on the session ID of the current user. Normally,
- * anonymous users do not have a session, so the generated token will be
- * different on every page request. To generate a token for users without a
- * session, manually start a session prior to calling this function.
- *
- * @return string
- * A 43-character URL-safe token for validation,based on the user session ID,
- * the global $hash_salt variable from settings.php, and the
- * 'private_key' configuration variable.
- */
- function backdrop_get_token($value = '') {
- return backdrop_hmac_base64($value, session_id() . backdrop_get_private_key() . backdrop_get_hash_salt());
- }
-
- * Validates a token based on $value, the user session, and the private key.
- *
- * @param $token
- * The token to be validated.
- * @param $value
- * An additional value to base the token on.
- * @param $skip_anonymous
- * Set to true to skip token validation for anonymous users.
- *
- * @return
- * True for a valid token, false for an invalid token. When $skip_anonymous
- * is true, the return value will always be true for anonymous users.
- */
- function backdrop_valid_token($token, $value = '', $skip_anonymous = FALSE) {
- global $user;
- return (($skip_anonymous && $user->uid == 0) || ($token === backdrop_get_token($value)));
- }
-
- function _backdrop_bootstrap_full() {
- static $called = FALSE;
-
- if ($called) {
- return;
- }
- $called = TRUE;
- require_once BACKDROP_ROOT . '/' . settings_get('path_inc', 'core/includes/path.inc');
- require_once BACKDROP_ROOT . '/core/includes/date.inc';
- require_once BACKDROP_ROOT . '/core/includes/theme.inc';
- require_once BACKDROP_ROOT . '/core/includes/pager.inc';
- require_once BACKDROP_ROOT . '/' . settings_get('menu_inc', 'core/includes/menu.inc');
- require_once BACKDROP_ROOT . '/core/includes/tablesort.inc';
- require_once BACKDROP_ROOT . '/core/includes/file.inc';
- require_once BACKDROP_ROOT . '/core/includes/unicode.inc';
- require_once BACKDROP_ROOT . '/core/includes/icon.inc';
- require_once BACKDROP_ROOT . '/core/includes/image.inc';
- require_once BACKDROP_ROOT . '/core/includes/form.inc';
- require_once BACKDROP_ROOT . '/core/includes/mail.inc';
- require_once BACKDROP_ROOT . '/core/includes/actions.inc';
- require_once BACKDROP_ROOT . '/core/includes/ajax.inc';
- require_once BACKDROP_ROOT . '/core/includes/token.inc';
- require_once BACKDROP_ROOT . '/core/includes/errors.inc';
-
-
- unicode_check();
-
- fix_gpc_magic();
-
- module_load_all();
-
-
-
- backdrop_static_reset('backdrop_alter');
- backdrop_static_reset('module_implements');
-
- file_get_stream_wrappers();
-
-
- $seed = unpack("L", backdrop_random_bytes(4));
- mt_srand($seed[1]);
-
- $test_info = &$GLOBALS['backdrop_test_info'];
- if (!empty($test_info['in_child_site'])) {
-
-
- ini_set('log_errors', 1);
- ini_set('error_log', 'public://error.log');
- }
-
-
- backdrop_path_initialize();
-
-
-
- if (!defined('MAINTENANCE_MODE') || MAINTENANCE_MODE != 'update') {
-
-
-
-
-
-
-
- menu_set_custom_theme();
- backdrop_theme_initialize();
- module_invoke_all('init');
- }
- }
-
- * Stores the current page in the cache.
- *
- * This function is no longer used by core but is preserved for
- * backwards-compatibility.
- *
- * @deprecated since 1.3.0
- */
- function backdrop_page_set_cache() {
- watchdog_deprecated_function('common', __FUNCTION__);
- $cache = FALSE;
- if (backdrop_page_is_cacheable()) {
- $page_content = ob_get_clean();
- $cache = backdrop_page_create_cache($page_content);
- backdrop_page_save_cache($cache);
- }
- return $cache;
- }
-
- * Create a page cache object for a page request.
- *
- * If page_compression is enabled, a gzipped version of the page is stored in
- * the cache to avoid compressing the output on each request. The cache entry
- * is unzipped on delivery in the relatively rare event that the page is
- * requested by a client without gzip support.
- *
- * Page compression requires the PHP zlib extension
- * (http://php.net/manual/ref.zlib.php).
- *
- * @param $page_content
- * The page content (HTML) that should be entered into a cache entry.
- *
- * @return stdClass|FALSE
- * A cache entry ready to be written to the cache backend. If the page is not
- * cacheable, FALSE will be returned.
- *
- * @see backdrop_page_header()
- * @see backdrop_page_save_cache();
- */
- function backdrop_page_create_cache($page_content) {
- global $base_root;
-
-
- $config = config('system.core');
- $page_compressed = $config->get('page_compression') && extension_loaded('zlib');
-
-
-
- if ($config->get('page_cache_background_fetch')) {
- $stale_lifetime = $config->get('page_cache_keep_stale_age');
-
- if (!$stale_lifetime) {
- $stale_lifetime = 172800;
- }
- $cache_lifetime = $stale_lifetime;
- }
-
-
- else {
- $cache_lifetime = $config->get('page_cache_maximum_age');
- }
-
- $cache = (object) array(
- 'cid' => $base_root . request_uri(),
- 'data' => array(
- 'path' => $_GET['q'],
- 'body' => $page_content,
- 'title' => backdrop_get_title(),
- 'headers' => array(),
-
-
- 'page_compressed' => $page_compressed,
- ),
- 'expire' => REQUEST_TIME + $cache_lifetime,
- 'created' => REQUEST_TIME,
- );
-
- if ($page_compressed) {
- $cache->data['body'] = gzencode($cache->data['body'], 9, FORCE_GZIP);
- }
-
-
-
- $header_names = _backdrop_set_preferred_header_name();
- foreach (backdrop_get_http_header() as $name_lower => $value) {
- $cache->data['headers'][$header_names[$name_lower]] = $value;
- if ($name_lower == 'cache-control') {
-
- $matches = array();
- if (preg_match('/max-age=(\d+)/', $value, $matches)) {
- $cache->expire = REQUEST_TIME + $matches[1];
- }
- }
- }
-
- return $cache;
- }
-
- * Save a page cache entry to the cache.
- *
- * @param stdClass $cache
- * A cache entry object to be written to the cache backend.
- */
- function backdrop_page_save_cache($cache) {
- if ($cache->data['body']) {
- cache('page')->set($cache->cid, $cache->data, $cache->expire);
- }
- }
-
- * Executes a cron run when called.
- *
- * Do not call this function from a test. Use $this->cronRun() instead.
- *
- * @return bool
- * TRUE if cron ran successfully and FALSE if cron is already running.
- */
- function backdrop_cron_run() {
-
- @ignore_user_abort(TRUE);
-
-
- $original_session_saving = backdrop_save_session();
- backdrop_save_session(FALSE);
-
-
-
- $original_user = $GLOBALS['user'];
- $GLOBALS['user'] = backdrop_anonymous_user();
-
-
- backdrop_set_time_limit(240);
-
- $return = FALSE;
-
- $queues = module_invoke_all('cron_queue_info');
- backdrop_alter('cron_queue_info', $queues);
-
-
- if (!lock_acquire('cron', 240.0)) {
-
- watchdog('cron', 'Attempting to re-run cron while it is already running.', array(), WATCHDOG_WARNING);
- }
- else {
-
-
- foreach ($queues as $queue_name => $info) {
- BackdropQueue::get($queue_name)->createQueue();
- }
-
-
- foreach (module_implements('cron') as $module) {
-
- try {
- module_invoke($module, 'cron');
- }
- catch (Exception $e) {
- watchdog_exception('cron', $e);
- }
- }
-
-
- state_set('cron_last', REQUEST_TIME);
- watchdog('cron', 'Cron run completed.', array(), WATCHDOG_NOTICE);
-
-
- lock_release('cron');
-
-
- $return = TRUE;
- }
-
- foreach ($queues as $queue_name => $info) {
- if (!empty($info['skip on cron'])) {
-
- continue;
- }
- $callback = $info['worker callback'];
- $end = time() + (isset($info['time']) ? $info['time'] : 15);
- $queue = BackdropQueue::get($queue_name);
- while (time() < $end && ($item = $queue->claimItem())) {
- try {
- call_user_func($callback, $item->data);
- $queue->deleteItem($item);
- }
- catch (Exception $e) {
-
-
- watchdog_exception('cron', $e);
- }
- }
- }
-
- $GLOBALS['user'] = $original_user;
- backdrop_save_session($original_session_saving);
-
- return $return;
- }
-
- * Returns information about system object files (modules, themes, etc.).
- *
- * This function is used to find all or some system object files (module files,
- * theme files, etc.) that exist on the site. It searches in several locations,
- * depending on what type of object you are looking for. For instance, if you
- * are looking for modules and call:
- * @code
- * backdrop_system_listing("/\.module$/", "modules", 'name', 0);
- * @endcode
- *
- * The following directories will then be searched for modules:
- * - /sites/[site_name]/modules
- * - /modules
- * - /profiles/[install_profile_name]/modules
- * - /core/profiles/[install_profile_name]/modules
- * - /core/modules
- * Directories will be searched in that order. If a module of the same name
- * exists in two places, the earlier locations will take precedence over the
- * later ones.
- *
- * The information is returned in an associative array, which can be keyed on
- * the file name ($key = 'filename'), the file name without the extension ($key
- * = 'name'), or the full file stream URI ($key = 'uri'). If you use a key of
- * 'filename' or 'name', files found later in the search will take precedence
- * over files found earlier (unless they belong to a module or theme not
- * compatible with Backdrop core); if you choose a key of 'uri', you will get all
- * files found.
- *
- * @param string $mask
- * The preg_match() regular expression for the files to find.
- * @param string $directory
- * The subdirectory name in which the files are found. For example,
- * 'modules' will search in sub-directories of the /core/modules/
- * directory, sub-directories of /modules/, etc.
- * @param string $key
- * The key to be used for the associative array returned. Possible values are
- * 'uri', for the file's URI; 'filename', for the basename of the file; and
- * 'name' for the name of the file without the extension. If you choose 'name'
- * or 'filename', only the highest-precedence file will be returned.
- * @param int $min_depth
- * Minimum depth of directories to return files from, relative to each
- * directory searched. For instance, a minimum depth of 2 would find modules
- * inside /core/modules/node/tests, but not modules directly in
- * /core/modules/node.
- *
- * @return array
- * An associative array of file objects, keyed on the chosen key. Each element
- * in the array is an object containing file information, with properties:
- * - 'uri': Full URI of the file.
- * - 'filename': File name.
- * - 'name': Name of file without the extension.
- */
- function backdrop_system_listing($mask, $directory, $key = 'name', $min_depth = 1) {
- $config = conf_path();
- $files = array();
-
-
- $searchdir = array('core/' . $directory);
-
-
-
-
-
-
- $profiles = array();
- $profile = backdrop_get_profile();
-
-
-
- if (backdrop_valid_test_ua()) {
- $testing_profile = config_get('simpletest.settings', 'simpletest_parent_profile');
- if ($testing_profile && $testing_profile != $profile) {
- $profiles[] = $testing_profile;
- }
- }
-
-
- $profiles[] = $profile;
- foreach ($profiles as $profile) {
- if (file_exists("core/profiles/$profile/$directory")) {
- $searchdir[] = "core/profiles/$profile/$directory";
- }
- if (file_exists("profiles/$profile/$directory")) {
- $searchdir[] = "profiles/$profile/$directory";
- }
- }
-
- $searchdir[] = $directory;
- if ($config !== '.' && file_exists("$config/$directory")) {
- $searchdir[] = "$config/$directory";
- }
-
-
- $ignore_directories = array(
- 'assets',
- 'css',
- 'scss',
- 'less',
- 'js',
- 'images',
- 'templates',
- 'node_modules',
- 'bower_components',
- );
- $no_mask = '/^((\..*)|' . implode('|', $ignore_directories) . ')$/';
-
-
- if (!function_exists('file_scan_directory')) {
- require_once BACKDROP_ROOT . '/core/includes/file.inc';
- }
- foreach ($searchdir as $dir) {
- $files_to_add = file_scan_directory($dir, $mask, array('key' => $key, 'min_depth' => $min_depth, 'nomask' => $no_mask));
-
-
-
-
-
-
-
-
- foreach (array_intersect_key($files_to_add, $files) as $file_key => $file) {
-
-
- if (file_exists($info_file = dirname($file->uri) . '/' . $file->name . '.info')) {
-
- $info = backdrop_parse_info_file($info_file);
-
-
-
-
- if (isset($info['backdrop']) && $info['backdrop'] != BACKDROP_CORE_COMPATIBILITY) {
- unset($files_to_add[$file_key]);
- }
- }
- }
- $files = array_merge($files, $files_to_add);
- }
-
- return $files;
- }
-
- * Pre-render callback: Provides backwards-compatibility for #browsers property.
- *
- * @param $elements
- * A render array with a '#browsers' property. This property formerly provided
- * the ability target IE vs. non-IE browsers. However, it no longer provides
- * this functionality as this has not been supported since IE10. Now if the
- * '#browsers' property is set it will do one of the following:
- * - '!IE': If TRUE, the element will be returned with no modifications.
- * If FALSE, the element will not be rendered at all.
- * - 'IE': Any value passed in this key will be ignored.
- *
- * @return array
- * A placeholder array for IE-specific files, or the unmodified element if
- * this element would render in any non-IE browser.
- *
- * @deprecated Since 1.27.0
- *
- * @since 1.27.0 Conditional comments are no longer rendered.
- */
- function backdrop_pre_render_conditional_comments($elements) {
- $browsers = isset($elements['#browsers']) ? $elements['#browsers'] : array();
- $browsers += array(
- 'IE' => TRUE,
- '!IE' => TRUE,
- );
-
-
- if ($browsers['!IE'] === FALSE) {
- return array(
- '#type' => NULL,
- '#value' => 'Element removed, the "browsers" property targeting only IE browsers is no longer supported.',
- );
- }
-
- return $elements;
- }
-
- * Pre-render callback: Renders a link into #markup.
- *
- * Doing so during pre_render gives modules a chance to alter the link parts.
- *
- * @param $elements
- * A structured array whose keys form the arguments to l():
- * - #title: The link text to pass as argument to l().
- * - #href: The URL path component to pass as argument to l().
- * - #options: (optional) An array of options to pass to l().
- *
- * @return
- * The passed-in elements containing a rendered link in '#markup'.
- */
- function backdrop_pre_render_link($element) {
-
- $element += array('#options' => array());
-
-
-
- if (isset($element['#attributes'])) {
- $element['#options'] += array('attributes' => array());
- $element['#options']['attributes'] += $element['#attributes'];
- }
-
-
-
-
-
- if (isset($element['#options']['attributes']['id'])) {
- $element['#id'] = $element['#options']['attributes']['id'];
- }
- elseif (isset($element['#id'])) {
- $element['#options']['attributes']['id'] = $element['#id'];
- }
-
-
- if (isset($element['#ajax']) && !isset($element['#ajax_processed'])) {
-
- if (!isset($element['#id'])) {
- $element['#id'] = $element['#options']['attributes']['id'] = backdrop_html_id('ajax-link');
- }
-
- if (!isset($element['#ajax']['path'])) {
- $element['#ajax']['path'] = $element['#href'];
- $element['#ajax']['options'] = $element['#options'];
- }
- $element = ajax_pre_render_element($element);
- }
-
- $element['#markup'] = l($element['#title'], $element['#href'], $element['#options']);
- return $element;
- }
-
- * Pre-render callback: Collects child links into a single array.
- *
- * This function can be added as a pre_render callback for a renderable array,
- * usually one which will be themed by theme_links(). It iterates through all
- * unrendered children of the element, collects any #links properties it finds,
- * merges them into the parent element's #links array, and prevents those
- * children from being rendered separately.
- *
- * The purpose of this is to allow links to be logically grouped into related
- * categories, so that each child group can be rendered as its own list of
- * links if backdrop_render() is called on it, but calling backdrop_render() on the
- * parent element will still produce a single list containing all the remaining
- * links, regardless of what group they were in.
- *
- * A typical example comes from node links, which are stored in a renderable
- * array similar to this:
- * @code
- * $node->content['links'] = array(
- * '#theme' => 'links__node',
- * '#pre_render' => array('backdrop_pre_render_links'),
- * 'comment' => array(
- * '#theme' => 'links__node__comment',
- * '#links' => array(
- * // An array of links associated with node comments, suitable for
- * // passing in to theme_links().
- * ),
- * ),
- * 'statistics' => array(
- * '#theme' => 'links__node__statistics',
- * '#links' => array(
- * // An array of links associated with node statistics, suitable for
- * // passing in to theme_links().
- * ),
- * ),
- * 'translation' => array(
- * '#theme' => 'links__node__translation',
- * '#links' => array(
- * // An array of links associated with node translation, suitable for
- * // passing in to theme_links().
- * ),
- * ),
- * );
- * @endcode
- *
- * In this example, the links are grouped by functionality, which can be
- * helpful to themers who want to display certain kinds of links independently.
- * For example, adding this code to node.tpl.php will result in the comment
- * links being rendered as a single list:
- * @code
- * print render($content['links']['comment']);
- * @endcode
- *
- * (where $node->content has been transformed into $content before handing
- * control to the node.tpl.php template).
- *
- * The pre_render function defined here allows the above flexibility, but also
- * allows the following code to be used to render all remaining links into a
- * single list, regardless of their group:
- * @code
- * print render($content['links']);
- * @endcode
- *
- * In the above example, this will result in the statistics and translation
- * links being rendered together in a single list (but not the comment links,
- * which were rendered previously on their own).
- *
- * Because of the way this function works, the individual properties of each
- * group (for example, a group-specific #theme property such as
- * 'links__node__comment' in the example above, or any other property such as
- * #attributes or #pre_render that is attached to it) are only used when that
- * group is rendered on its own. When the group is rendered together with other
- * children, these child-specific properties are ignored, and only the overall
- * properties of the parent are used.
- */
- function backdrop_pre_render_links($element) {
- $element += array('#links' => array());
- foreach (element_children($element) as $key) {
- $child = &$element[$key];
-
-
- if (isset($child['#links']) && empty($child['#printed']) && (!isset($child['#access']) || $child['#access'])) {
- $element['#links'] += $child['#links'];
-
-
- $child['#printed'] = TRUE;
- }
- }
- return $element;
- }
-
- * Pre-render callback: Appends contents in #markup to #children.
- *
- * This needs to be a #pre_render callback, because eventually assigned
- * #theme_wrappers will expect the element's rendered content in #children.
- * Note that if also a #theme is defined for the element, then the result of
- * the theme callback will override #children.
- *
- * @param $elements
- * A structured array using the #markup key.
- *
- * @return
- * The passed-in elements, but #markup appended to #children.
- *
- * @see backdrop_render()
- */
- function backdrop_pre_render_markup($elements) {
- $elements['#children'] = $elements['#markup'];
- return $elements;
- }
-
- * Pre-render callback: Attaches the dropbutton library and required markup.
- */
- function backdrop_pre_render_dropbutton($element) {
- $element['#attached']['library'][] = array('system', 'backdrop.dropbutton');
- $element['#attributes']['class'][] = 'dropbutton';
- if (!isset($element['#theme_wrappers'])) {
- $element['#theme_wrappers'] = array();
- }
- array_unshift($element['#theme_wrappers'], 'dropbutton_wrapper');
-
-
-
- if (isset($element['#subtype'])) {
- $element['#theme'] .= '__' . $element['#subtype'];
- }
-
- return $element;
- }
-
- * Renders the page, including the HTML, HEAD, and BODY tags.
- *
- * @param string|array $page
- * A string or renderable array representing the content of a page.
- * @return string
- * The rendered full HTML page.
- */
- function backdrop_render_page($page) {
- return theme('page', array('page' => render($page)));
- }
-
- * Renders HTML given a structured array tree.
- *
- * Recursively iterates over each of the array elements, generating HTML code.
- *
- * Renderable arrays have two kinds of key/value pairs: properties and
- * children. Properties have keys starting with '#' and their values influence
- * how the array will be rendered. Children are all elements whose keys do not
- * start with a '#'. Their values should be renderable arrays themselves,
- * which will be rendered during the rendering of the parent array. The markup
- * provided by the children is typically inserted into the markup generated by
- * the parent array.
- *
- * HTML generation for a renderable array, and the treatment of any children,
- * is controlled by two properties containing theme functions, #theme and
- * #theme_wrappers.
- *
- * #theme is the theme function called first. If it is set and the element has
- * any children, it is the responsibility of the theme function to render
- * these children. For elements that are not allowed to have any children,
- * e.g. buttons or textfields, the theme function can be used to render the
- * element itself. If #theme is not present and the element has children, each
- * child is itself rendered by a call to backdrop_render(), and the results are
- * concatenated.
- *
- * The #theme_wrappers property contains an array of theme functions which will
- * be called, in order, after #theme has run. These can be used to add further
- * markup around the rendered children; e.g., fieldsets add the required markup
- * for a fieldset around their rendered child elements. All wrapper theme
- * functions have to include the element's #children property in their output,
- * as it contains the output of the previous theme functions and the rendered
- * children.
- *
- * For example, for the form element type, by default only the #theme_wrappers
- * property is set, which adds the form markup around the rendered child
- * elements of the form. This allows you to set the #theme property on a
- * specific form to a custom theme function, giving you complete control over
- * the placement of the form's children while not at all having to deal with
- * the form markup itself.
- *
- * backdrop_render() can optionally cache the rendered output of elements to
- * improve performance. To use backdrop_render() caching, set the element's #cache
- * property to an associative array with one or several of the following keys:
- * - 'keys': An array of one or more keys that identify the element. If 'keys'
- * is set, the cache ID is created automatically from these keys. See
- * backdrop_render_cid_create().
- * - 'granularity' (optional): Define the cache granularity using binary
- * combinations of the cache granularity constants, e.g.
- * BACKDROP_CACHE_PER_USER to cache for each user separately or
- * BACKDROP_CACHE_PER_PAGE | BACKDROP_CACHE_PER_ROLE to cache separately for each
- * page and role. If not specified the element is cached globally for each
- * theme and language.
- * - 'cid': Specify the cache ID directly. Either 'keys' or 'cid' is required.
- * If 'cid' is set, 'keys' and 'granularity' are ignored. Use only if you
- * have special requirements.
- * - 'expire': Set to one of the cache lifetime constants.
- * - 'bin': Specify a cache bin to cache the element in. Defaults to 'cache'.
- *
- * This function is usually called from within another function, like
- * backdrop_get_form() or a theme function. Elements are sorted internally
- * using backdrop_sort(). Since this is expensive, when passing already sorted
- * elements to backdrop_render(), for example from a database query, set
- * $elements['#sorted'] = TRUE to avoid sorting them a second time.
- *
- * backdrop_render() flags each element with a '#printed' status to indicate that
- * the element has been rendered, which allows individual elements of a given
- * array to be rendered independently and prevents them from being rendered
- * more than once on subsequent calls to backdrop_render() (e.g., as part of a
- * larger array). If the same array or element is passed more than once to
- * backdrop_render(), every use beyond the first will return an empty string.
- *
- * @param array $elements
- * The structured array describing the data to be rendered.
- *
- * @return string
- * The rendered HTML.
- */
- function backdrop_render(&$elements) {
-
- if (empty($elements) || (isset($elements['#access']) && !$elements['#access'])) {
- return '';
- }
-
-
- if (!empty($elements['#printed'])) {
- return '';
- }
-
-
- if (isset($elements['#cache'])) {
- $cached_output = backdrop_render_cache_get($elements);
- if ($cached_output !== FALSE) {
- return $cached_output;
- }
- }
-
-
-
- if (isset($elements['#markup']) && !isset($elements['#type'])) {
- $elements['#type'] = 'markup';
- }
-
-
-
- if (isset($elements['#type']) && empty($elements['#defaults_loaded'])) {
- $elements += element_info($elements['#type']);
- }
-
-
-
-
- if (isset($elements['#pre_render'])) {
- foreach ($elements['#pre_render'] as $function) {
- $elements = $function($elements);
- }
- }
-
-
- if (!empty($elements['#printed'])) {
- return '';
- }
-
-
- $children = element_children($elements, TRUE);
-
-
-
- if (!isset($elements['#children'])) {
- $elements['#children'] = '';
- }
-
-
- if (isset($elements['#theme'])) {
- $elements['#children'] = theme($elements['#theme'], $elements);
- }
-
-
-
- if ($elements['#children'] == '') {
- foreach ($children as $key) {
- $elements['#children'] .= backdrop_render($elements[$key]);
- }
- }
-
-
-
- if (isset($elements['#theme_wrappers'])) {
- foreach ($elements['#theme_wrappers'] as $theme_wrapper) {
- $elements['#children'] = theme($theme_wrapper, $elements);
- }
- }
-
-
-
-
- if (isset($elements['#post_render'])) {
- foreach ($elements['#post_render'] as $function) {
- $elements['#children'] = $function($elements['#children'], $elements);
- }
- }
-
-
- if (!empty($elements['#states'])) {
- backdrop_process_states($elements);
- }
-
-
-
- if (!empty($elements['#attached'])) {
- backdrop_process_attached($elements);
- }
-
- $prefix = isset($elements['#prefix']) ? $elements['#prefix'] : '';
- $suffix = isset($elements['#suffix']) ? $elements['#suffix'] : '';
- $output = $prefix . $elements['#children'] . $suffix;
-
-
- if (isset($elements['#cache'])) {
- backdrop_render_cache_set($output, $elements);
- }
-
- $elements['#printed'] = TRUE;
- return $output;
- }
-
- * Renders children of an element and concatenates them.
- *
- * @param array $element
- * The structured array whose children shall be rendered.
- * @param array $children_keys
- * (optional) If the keys of the element's children are already known, they
- * can be passed in to save another run of element_children().
- *
- * @return string
- * The rendered HTML of all children of the element.
- *
- * @see backdrop_render()
- */
- function backdrop_render_children(&$element, $children_keys = NULL) {
- if ($children_keys === NULL) {
- $children_keys = element_children($element);
- }
- $output = '';
- foreach ($children_keys as $key) {
- if (!empty($element[$key])) {
- $output .= backdrop_render($element[$key]);
- }
- }
- return $output;
- }
-
- * Renders an element.
- *
- * This function renders an element using backdrop_render(). The top level
- * element is shown with show() before rendering, so it will always be rendered
- * even if hide() had been previously used on it.
- *
- * @param $element
- * The element to be rendered.
- *
- * @return
- * The rendered element.
- *
- * @see backdrop_render()
- * @see show()
- * @see hide()
- */
- function render(&$element) {
- if (is_array($element)) {
- show($element);
- return backdrop_render($element);
- }
- else {
-
-
- return $element;
- }
- }
-
- * Hides an element from later rendering.
- *
- * The first time render() or backdrop_render() is called on an element tree,
- * as each element in the tree is rendered, it is marked with a #printed flag
- * and the rendered children of the element are cached. Subsequent calls to
- * render() or backdrop_render() will not traverse the child tree of this element
- * again: they will just use the cached children. So if you want to hide an
- * element, be sure to call hide() on the element before its parent tree is
- * rendered for the first time, as it will have no effect on subsequent
- * renderings of the parent tree.
- *
- * Note that hide() should only be used when doing the final printing of a
- * render element, such as in a template. If wanting to hide a form element
- * earlier in the process, such as in hook_form_alter(), you should set #access
- * instead, like this:
- *
- * @code
- * $element['#access'] = FALSE
- * @endcode
- *
- * @param $element
- * The element to be hidden.
- *
- * @return
- * The element.
- *
- * @see render()
- * @see show()
- */
- function hide(&$element) {
- $element['#printed'] = TRUE;
- return $element;
- }
-
- * Shows a hidden element for later rendering.
- *
- * You can also use render($element), which shows the element while rendering
- * it.
- *
- * The first time render() or backdrop_render() is called on an element tree,
- * as each element in the tree is rendered, it is marked with a #printed flag
- * and the rendered children of the element are cached. Subsequent calls to
- * render() or backdrop_render() will not traverse the child tree of this element
- * again: they will just use the cached children. So if you want to show an
- * element, be sure to call show() on the element before its parent tree is
- * rendered for the first time, as it will have no effect on subsequent
- * renderings of the parent tree.
- *
- * @param $element
- * The element to be shown.
- *
- * @return
- * The element.
- *
- * @see render()
- * @see hide()
- */
- function show(&$element) {
- $element['#printed'] = FALSE;
- return $element;
- }
-
- * Gets the rendered output of a renderable element from the cache.
- *
- * @param $elements
- * A renderable array.
- *
- * @return
- * A markup string containing the rendered content of the element, or FALSE
- * if no cached copy of the element is available.
- *
- * @see backdrop_render()
- * @see backdrop_render_cache_set()
- */
- function backdrop_render_cache_get($elements) {
- if (!in_array($_SERVER['REQUEST_METHOD'], array('GET', 'HEAD')) || !$cid = backdrop_render_cid_create($elements)) {
- return FALSE;
- }
- $bin = isset($elements['#cache']['bin']) ? $elements['#cache']['bin'] : 'cache';
-
- if (!empty($cid) && $cache = cache($bin)->get($cid)) {
-
-
- if (isset($cache->data['#attached'])) {
- backdrop_process_attached($cache->data);
- }
-
- return $cache->data['#markup'];
- }
- return FALSE;
- }
-
- * Caches the rendered output of a renderable element.
- *
- * This is called by backdrop_render() if the #cache property is set on an
- * element.
- *
- * @param $markup
- * The rendered output string of $elements.
- * @param $elements
- * A renderable array.
- *
- * @return bool
- * TRUE if the render cache was set. FALSE if it is unable to be set.
- *
- * @see backdrop_render_cache_get()
- */
- function backdrop_render_cache_set(&$markup, $elements) {
-
- if (!in_array($_SERVER['REQUEST_METHOD'], array('GET', 'HEAD')) || !$cid = backdrop_render_cid_create($elements)) {
- return FALSE;
- }
-
-
-
-
-
-
-
- $data['#markup'] = &$markup;
-
- $attached = backdrop_render_collect_attached($elements, TRUE);
- if ($attached) {
- $data['#attached'] = $attached;
- }
- $bin = isset($elements['#cache']['bin']) ? $elements['#cache']['bin'] : 'cache';
- $expire = isset($elements['#cache']['expire']) ? $elements['#cache']['expire'] : CACHE_PERMANENT;
- cache($bin)->set($cid, $data, $expire);
- return TRUE;
- }
-
- * Collects #attached for an element and its children into a single array.
- *
- * When caching elements, it is necessary to collect all libraries, JavaScript
- * and CSS into a single array, from both the element itself and all child
- * elements. This allows backdrop_render() to add these back to the page when the
- * element is returned from cache.
- *
- * @param $elements
- * The element to collect #attached from.
- * @param $return
- * Whether to return the attached elements and reset the internal static.
- *
- * @return array|NULL
- * If $return is TRUE, the #attached array for this element and its
- * descendants. If $return is FALSE, the collected attachments are stored
- * internally so they do not have to be collected again.
- */
- function backdrop_render_collect_attached($elements, $return = FALSE) {
- $attached = &backdrop_static(__FUNCTION__, array());
-
-
- if (isset($elements['#attached'])) {
- foreach ($elements['#attached'] as $key => $value) {
- if (!isset($attached[$key])) {
- $attached[$key] = array();
- }
- $attached[$key] = array_merge($attached[$key], $value);
- }
- }
- if ($children = element_children($elements)) {
- foreach ($children as $child) {
- backdrop_render_collect_attached($elements[$child]);
- }
- }
-
-
-
- if ($return) {
- $return = $attached;
- $attached = array();
- return $return;
- }
- else {
- return NULL;
- }
- }
-
- * Prepares an element for caching based on a query.
- *
- * This smart caching strategy saves Backdrop from querying and rendering to HTML
- * when the underlying query is unchanged.
- *
- * Expensive queries should use the query builder to create the query and then
- * call this function. Executing the query and formatting results should happen
- * in a #pre_render callback.
- *
- * @param SelectQuery $query
- * A select query object as returned by db_select().
- * @param string $function
- * The name of the function doing this caching. A _pre_render suffix will be
- * added to this string and is also part of the cache key in
- * backdrop_render_cache_set() and backdrop_render_cache_get().
- * @param int $expire
- * The cache expire time, passed eventually to cache()->set().
- * @param int $granularity
- * One or more granularity constants passed to backdrop_render_cid_parts().
- *
- * @return
- * A renderable array with the following keys and values:
- * - #query: The passed-in $query.
- * - #pre_render: $function with a _pre_render suffix.
- * - #cache: An associative array prepared for backdrop_render_cache_set().
- */
- function backdrop_render_cache_by_query($query, $function, $expire = CACHE_TEMPORARY, $granularity = NULL) {
- $cache_keys = array_merge(array($function), backdrop_render_cid_parts($granularity));
- $query->preExecute();
- $cache_keys[] = hash('sha256', serialize(array((string) $query, $query->getArguments())));
- return array(
- '#query' => $query,
- '#pre_render' => array($function . '_pre_render'),
- '#cache' => array(
- 'keys' => $cache_keys,
- 'expire' => $expire,
- ),
- );
- }
-
- * Returns cache ID parts for building a cache ID.
- *
- * @param int $granularity
- * One or more cache granularity constants. For example, to cache separately
- * for each user, use BACKDROP_CACHE_PER_USER. To cache separately for each
- * page and role, use the expression:
- * @code
- * BACKDROP_CACHE_PER_PAGE | BACKDROP_CACHE_PER_ROLE
- * @endcode
- *
- * @return
- * An array of cache ID parts, always containing the active theme. If the
- * locale module is enabled it also contains the active language. If
- * $granularity was passed in, more parts are added.
- */
- function backdrop_render_cid_parts($granularity = NULL) {
- global $theme, $base_root, $user;
-
- $cid_parts[] = $theme;
-
-
- if (language_multilingual()) {
- foreach (language_types_get_configurable() as $language_type) {
- $cid_parts[] = $GLOBALS[$language_type]->langcode;
- }
- }
-
- if (!empty($granularity)) {
- $cache_per_role = $granularity & BACKDROP_CACHE_PER_ROLE;
- $cache_per_user = $granularity & BACKDROP_CACHE_PER_USER;
-
-
- if ($user->uid == 1 && $cache_per_role) {
- $cache_per_user = TRUE;
- $cache_per_role = FALSE;
- }
-
-
-
-
- if ($cache_per_role) {
- $cid_parts[] = 'r.' . implode(',', array_keys($user->roles));
- }
- elseif ($cache_per_user) {
- $cid_parts[] = "u.$user->uid";
- }
-
- if ($granularity & BACKDROP_CACHE_PER_PAGE) {
- $cid_parts[] = $base_root . request_uri();
- }
- }
-
- return $cid_parts;
- }
-
- * Creates the cache ID for a renderable element.
- *
- * This creates the cache ID string, either by returning the #cache['cid']
- * property if present or by building the cache ID out of the #cache['keys']
- * and, optionally, the #cache['granularity'] properties.
- *
- * @param $elements
- * A renderable array.
- *
- * @return
- * The cache ID string, or FALSE if the element may not be cached.
- */
- function backdrop_render_cid_create($elements) {
- if (isset($elements['#cache']['cid'])) {
- return $elements['#cache']['cid'];
- }
- elseif (isset($elements['#cache']['keys'])) {
- $granularity = isset($elements['#cache']['granularity']) ? $elements['#cache']['granularity'] : NULL;
-
- $cid_parts = array_merge($elements['#cache']['keys'], backdrop_render_cid_parts($granularity));
- return implode(':', $cid_parts);
- }
- return FALSE;
- }
-
- * Retrieves the default properties for the defined element type.
- *
- * @param $type
- * An element type as defined by hook_element_info().
- *
- * @return array
- * The element information array from hook_element_info().
- */
- function element_info($type) {
-
- static $backdrop_static_fast;
- if (!isset($backdrop_static_fast)) {
- $backdrop_static_fast['cache'] = &backdrop_static(__FUNCTION__);
- }
- $cache = &$backdrop_static_fast['cache'];
-
- if (!isset($cache)) {
- $cache = module_invoke_all('element_info');
- foreach ($cache as $element_type => $info) {
- $cache[$element_type]['#type'] = $element_type;
- }
-
- backdrop_alter('element_info', $cache);
- }
-
- return isset($cache[$type]) ? $cache[$type] : array();
- }
-
- * Retrieves a single property for the defined element type.
- *
- * @param $type
- * An element type as defined by hook_element_info().
- * @param $property_name
- * The property within the element type that should be returned.
- * @param $default
- * (Optional) The value to return if the element type does not specify a
- * value for the property. Defaults to NULL.
- *
- * @return mixed
- * The default property value for the given element type and property key.
- */
- function element_info_property($type, $property_name, $default = NULL) {
- return (($info = element_info($type)) && array_key_exists($property_name, $info)) ? $info[$property_name] : $default;
- }
-
- * Sort an array based on user-provided keys within that array.
- *
- * @param array $array
- * The input array to be sorted.
- * @param array $keys
- * An array of keys to sort by. Values must be PHP sorting type flags,
- * either SORT_NUMERIC or SORT_STRING, and default to SORT_NUMERIC if an
- * unindexed array is passed in.
- * @param string $dir
- * The sort direction. Values must be either SORT_ASC or SORT_DESC.
- *
- * Example usage:
- * @code
- * // Sort by a single numeric key:
- * backdrop_sort($my_array, array('weight' => SORT_NUMERIC));
- *
- * // Shorthand sort by a numeric key:
- * backdrop_sort($my_array, array('weight'));
- *
- * // Sort by numeric and string keys.
- * backdrop_sort($my_array, array('weight' => SORT_NUMERIC, 'title' => SORT_STRING));
- * @endcode
- *
- * @since 1.9.0 The $dir parameter was added.
- */
- function backdrop_sort(array &$array, array $keys = array('weight'), $dir = SORT_ASC) {
-
- if (empty($array)) {
- return;
- }
-
-
-
- foreach ($array as $key => $value) {
- $prefixed['#' . $key] = $value;
- }
- $array = $prefixed;
- unset($prefixed);
-
-
- $new_keys = array();
- foreach ($keys as $key => $key_sort) {
- if (is_string($key_sort) && is_int($key)) {
- $new_keys[$key_sort] = SORT_NUMERIC;
- }
- else {
- if ($key_sort === SORT_NUMERIC || $key_sort === SORT_STRING) {
- $new_keys[$key] = $key_sort;
- }
- else {
-
-
- $new_keys[$key] = SORT_NUMERIC;
- trigger_error('backdrop_sort() expects the second parameter to be an array keyed by strings and each value of the array to be either SORT_NUMERIC or SORT_STRING.', E_USER_WARNING);
- }
- }
- }
- $keys = $new_keys;
-
-
- $sort = array();
- foreach ($array as $k => $v) {
- $v = (array) $v;
- foreach ($keys as $key => $key_sort) {
- if (isset($v[$key])) {
- $sort[$key][$k] = ($key_sort === SORT_STRING) ? backdrop_strtolower($v[$key]) : $v[$key];
- }
- else {
- $sort[$key][$k] = ($key_sort === SORT_STRING) ? '' : 0;
- }
- }
- }
-
-
- $param = array();
- foreach ($keys as $key => $key_sort) {
- $param[] = $sort[$key];
- $param[] = $dir;
- $param[] = $key_sort;
- }
-
- $param[] = &$array;
-
-
- call_user_func_array('array_multisort', $param);
-
-
- foreach ($array as $key => $value) {
- $unprefixed[substr($key, 1)] = $value;
- }
- $array = $unprefixed;
- unset($unprefixed);
- }
-
- * Checks if the key is a property.
- */
- function element_property($key) {
- return substr($key, 0, 1) == '#';
- }
-
- * Gets properties of a structured array element (keys beginning with '#').
- */
- function element_properties($element) {
- return array_filter(array_keys((array) $element), 'element_property');
- }
-
- * Checks if the key is a child.
- */
- function element_child($key) {
- return empty($key) || substr($key, 0, 1) != '#';
- }
-
- * Identifies the children of an element array, optionally sorted by weight.
- *
- * The children of a element array are those key/value pairs whose key does
- * not start with a '#'. See backdrop_render() for details.
- *
- * @param $elements
- * The element array whose children are to be identified.
- * @param $sort
- * Boolean to indicate whether the children should be sorted by weight.
- *
- * @return
- * The array keys of the element's children.
- */
- function element_children(&$elements, $sort = FALSE) {
-
- $sort = isset($elements['#sorted']) ? !$elements['#sorted'] : $sort;
-
-
- $children = array();
- $sortable = FALSE;
- foreach ($elements as $key => $value) {
- if ($key === '' || substr($key, 0, 1) !== '#') {
- if (is_array($value)) {
- $children[$key] = $value;
- if (isset($value['#weight'])) {
- $sortable = TRUE;
- }
- }
-
-
- elseif (isset($value)) {
- trigger_error(t('"@key" is an invalid render array key', array('@key' => $key)), E_USER_ERROR);
- }
- }
- }
-
- if ($sort && $sortable) {
- backdrop_sort($children, array('#weight'));
-
-
-
- foreach ($children as $key => $child) {
- unset($elements[$key]);
- $elements[$key] = $child;
- }
- $elements['#sorted'] = TRUE;
- }
-
- return array_keys($children);
- }
-
- * Returns the visible children of an element.
- *
- * @param $elements
- * The parent element.
- *
- * @return
- * The array keys of the element's visible children.
- */
- function element_get_visible_children(array $elements) {
- $visible_children = array();
-
- foreach (element_children($elements) as $key) {
- $child = $elements[$key];
-
-
- if (isset($child['#access']) && !$child['#access']) {
- continue;
- }
-
-
- if (isset($child['#type']) && in_array($child['#type'], array('value', 'hidden'))) {
- continue;
- }
-
- $visible_children[$key] = $child;
- }
-
- return array_keys($visible_children);
- }
-
- * Sets HTML attributes based on element properties.
- *
- * @param $element
- * The renderable element to process.
- * @param $map
- * An associative array whose keys are element property names and whose values
- * are the HTML attribute names to set for corresponding the property; e.g.,
- * array('#propertyname' => 'attributename'). If both names are identical
- * except for the leading '#', then an attribute name value is sufficient and
- * no property name needs to be specified.
- */
- function element_set_attributes(array &$element, array $map) {
- foreach ($map as $property => $attribute) {
-
- if (is_int($property)) {
- $property = '#' . $attribute;
- }
-
- if (isset($element[$property]) && !isset($element['#attributes'][$attribute])) {
- $element['#attributes'][$attribute] = $element[$property];
- }
- }
- }
-
- * Retrieves a value from a nested array with variable depth.
- *
- * This helper function should be used when the depth of the array element being
- * retrieved may vary (that is, the number of parent keys is variable). It is
- * primarily used for form structures and renderable arrays.
- *
- * Without this helper function the only way to get a nested array value with
- * variable depth in one line would be using eval(), which should be avoided:
- * @code
- * // Do not do this! Avoid eval().
- * // May also throw a PHP notice, if the variable array keys do not exist.
- * eval('$value = $array[\'' . implode("']['", $parents) . "'];");
- * @endcode
- *
- * Instead, use this helper function:
- * @code
- * $value = backdrop_array_get_nested_value($form, $parents);
- * @endcode
- *
- * A return value of NULL is ambiguous, and can mean either that the requested
- * key does not exist, or that the actual value is NULL. If it is required to
- * know whether the nested array key actually exists, pass a third argument that
- * is altered by reference:
- * @code
- * $key_exists = NULL;
- * $value = backdrop_array_get_nested_value($form, $parents, $key_exists);
- * if ($key_exists) {
- * // ... do something with $value ...
- * }
- * @endcode
- *
- * However if the number of array parent keys is static, the value should always
- * be retrieved directly rather than calling this function. For instance:
- * @code
- * $value = $form['signature_settings']['signature'];
- * @endcode
- *
- * @param $array
- * The array from which to get the value.
- * @param $parents
- * An array of parent keys of the value, starting with the outermost key.
- * @param $key_exists
- * (optional) If given, an already defined variable that is altered by
- * reference.
- *
- * @return
- * The requested nested value. Possibly NULL if the value is NULL or not all
- * nested parent keys exist. $key_exists is altered by reference and is a
- * Boolean that indicates whether all nested parent keys exist (TRUE) or not
- * (FALSE). This allows to distinguish between the two possibilities when NULL
- * is returned.
- *
- * @see backdrop_array_set_nested_value()
- * @see backdrop_array_unset_nested_value()
- */
- function &backdrop_array_get_nested_value(array &$array, array $parents, &$key_exists = NULL) {
- $ref = &$array;
- foreach ($parents as $parent) {
- if (is_array($ref) && array_key_exists($parent, $ref)) {
- $ref = &$ref[$parent];
- }
- else {
- $key_exists = FALSE;
- $null = NULL;
- return $null;
- }
- }
- $key_exists = TRUE;
- return $ref;
- }
-
- * Recursively computes the difference of arrays with additional index check.
- *
- * This is a version of array_diff_assoc() that supports multidimensional
- * arrays.
- *
- * @param array $array1
- * The array to compare from.
- * @param array $array2
- * The array to compare to.
- *
- * @return array
- * Returns an array containing all the values from array1 that are not present
- * in array2.
- */
- function backdrop_array_diff_assoc_recursive($array1, $array2) {
- $difference = array();
-
- foreach ($array1 as $key => $value) {
- if (is_array($value)) {
- if (!array_key_exists($key, $array2) || !is_array($array2[$key])) {
- $difference[$key] = $value;
- }
- else {
- $new_diff = backdrop_array_diff_assoc_recursive($value, $array2[$key]);
- if (!empty($new_diff)) {
- $difference[$key] = $new_diff;
- }
- }
- }
- elseif (!array_key_exists($key, $array2) || $array2[$key] !== $value) {
- $difference[$key] = $value;
- }
- }
-
- return $difference;
- }
-
- * Sets a value in a nested array with variable depth.
- *
- * This helper function should be used when the depth of the array element you
- * are changing may vary (that is, the number of parent keys is variable). It
- * is primarily used for form structures and renderable arrays.
- *
- * Example:
- * @code
- * // Assume you have a 'signature' element somewhere in a form. It might be:
- * $form['signature_settings']['signature'] = array(
- * '#type' => 'text_format',
- * '#title' => t('Signature'),
- * );
- * // Or, it might be further nested:
- * $form['signature_settings']['user']['signature'] = array(
- * '#type' => 'text_format',
- * '#title' => t('Signature'),
- * );
- * @endcode
- *
- * To deal with the situation, the code needs to figure out the route to the
- * element, given an array of parents that is either
- * @code array('signature_settings', 'signature') @endcode in the first case or
- * @code array('signature_settings', 'user', 'signature') @endcode in the second
- * case.
- *
- * Without this helper function the only way to set the signature element in one
- * line would be using eval(), which should be avoided:
- * @code
- * // Do not do this! Avoid eval().
- * eval('$form[\'' . implode("']['", $parents) . '\'] = $element;');
- * @endcode
- *
- * Instead, use this helper function:
- * @code
- * backdrop_array_set_nested_value($form, $parents, $element);
- * @endcode
- *
- * However if the number of array parent keys is static, the value should always
- * be set directly rather than calling this function. For instance, for the
- * first example we could just do:
- * @code
- * $form['signature_settings']['signature'] = $element;
- * @endcode
- *
- * @param $array
- * A reference to the array to modify.
- * @param $parents
- * An array of parent keys, starting with the outermost key.
- * @param $value
- * The value to set.
- * @param $force
- * (Optional) If TRUE, the value is forced into the structure even if it
- * requires the deletion of an already existing non-array parent value. If
- * FALSE, PHP throws an error if trying to add into a value that is not an
- * array. Defaults to FALSE.
- *
- * @see backdrop_array_unset_nested_value()
- * @see backdrop_array_get_nested_value()
- */
- function backdrop_array_set_nested_value(array &$array, array $parents, $value, $force = FALSE) {
- $ref = &$array;
- foreach ($parents as $parent) {
-
-
- if ($force && isset($ref) && !is_array($ref)) {
- $ref = array();
- }
- $ref = &$ref[$parent];
- }
- $ref = $value;
- }
-
- * Unsets a value in a nested array with variable depth.
- *
- * This helper function should be used when the depth of the array element you
- * are changing may vary (that is, the number of parent keys is variable). It
- * is primarily used for form structures and renderable arrays.
- *
- * Example:
- * @code
- * // Assume you have a 'signature' element somewhere in a form. It might be:
- * $form['signature_settings']['signature'] = array(
- * '#type' => 'text_format',
- * '#title' => t('Signature'),
- * );
- * // Or, it might be further nested:
- * $form['signature_settings']['user']['signature'] = array(
- * '#type' => 'text_format',
- * '#title' => t('Signature'),
- * );
- * @endcode
- *
- * To deal with the situation, the code needs to figure out the route to the
- * element, given an array of parents that is either
- * @code array('signature_settings', 'signature') @endcode in the first case or
- * @code array('signature_settings', 'user', 'signature') @endcode in the second
- * case.
- *
- * Without this helper function the only way to unset the signature element in
- * one line would be using eval(), which should be avoided:
- * @code
- * // Do not do this! Avoid eval().
- * eval('unset($form[\'' . implode("']['", $parents) . '\']);');
- * @endcode
- *
- * Instead, use this helper function:
- * @code
- * backdrop_array_unset_nested_value($form, $parents, $element);
- * @endcode
- *
- * However if the number of array parent keys is static, the value should always
- * be set directly rather than calling this function. For instance, for the
- * first example we could just do:
- * @code
- * unset($form['signature_settings']['signature']);
- * @endcode
- *
- * @param $array
- * A reference to the array to modify.
- * @param $parents
- * An array of parent keys, starting with the outermost key and including the
- * key to be unset.
- * @param $key_existed
- * (optional) If given, an already defined variable that is altered by
- * reference.
- *
- * @see backdrop_array_set_nested_value()
- * @see backdrop_array_get_nested_value()
- */
- function backdrop_array_unset_nested_value(array &$array, array $parents, &$key_existed = NULL) {
- $unset_key = array_pop($parents);
- $ref = &backdrop_array_get_nested_value($array, $parents, $key_existed);
- if ($key_existed && is_array($ref) && array_key_exists($unset_key, $ref)) {
- $key_existed = TRUE;
- unset($ref[$unset_key]);
- }
- else {
- $key_existed = FALSE;
- }
- }
-
- * Determines whether a nested array contains the requested keys.
- *
- * This helper function should be used when the depth of the array element to be
- * checked may vary (that is, the number of parent keys is variable). See
- * backdrop_array_set_nested_value() for details. It is primarily used for form
- * structures and renderable arrays.
- *
- * If it is required to also get the value of the checked nested key, use
- * backdrop_array_get_nested_value() instead.
- *
- * If the number of array parent keys is static, this helper function is
- * unnecessary and the following code can be used instead:
- * @code
- * $value_exists = isset($form['signature_settings']['signature']);
- * $key_exists = array_key_exists('signature', $form['signature_settings']);
- * @endcode
- *
- * @param $array
- * The array with the value to check for.
- * @param $parents
- * An array of parent keys of the value, starting with the outermost key.
- *
- * @return
- * TRUE if all the parent keys exist, FALSE otherwise.
- *
- * @see backdrop_array_get_nested_value()
- */
- function backdrop_array_nested_key_exists(array $array, array $parents) {
-
-
- $key_exists = NULL;
- backdrop_array_get_nested_value($array, $parents, $key_exists);
- return $key_exists;
- }
-
- * Provides theme registration for themes across .inc files.
- */
- function backdrop_common_theme() {
- return array(
-
- 'page' => array(
- 'variables' => array('page' => '', 'page_bottom' => ''),
- 'template' => 'templates/page',
- ),
- 'header' => array(
- 'variables' => array(
- 'logo' => NULL,
- 'site_name' => NULL,
- 'site_slogan' => NULL,
- 'menu' => NULL,
- ),
- 'template' => 'templates/header',
- ),
- 'datetime' => array(
- 'variables' => array(
- 'timestamp' => NULL,
- 'text' => NULL,
- 'attributes' => array(),
- 'html' => FALSE),
- ),
- 'status_messages' => array(
- 'variables' => array('display' => NULL, 'messages' => array()),
- ),
- 'link' => array(
- 'variables' => array(
- 'text' => NULL,
- 'path' => NULL,
- 'options' => array(),
- ),
- ),
- 'links' => array(
- 'variables' => array(
- 'links' => array(),
- 'attributes' => array('class' => array('links')),
- 'heading' => array(),
- ),
- ),
- 'dropbutton_wrapper' => array(
- 'variables' => array('children' => NULL),
- ),
- 'image' => array(
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 'variables' => array(
- 'uri' => NULL,
- 'path' => NULL,
- 'width' => NULL,
- 'height' => NULL,
- 'alt' => '',
- 'title' => NULL,
- 'attributes' => array(),
- ),
- ),
- 'breadcrumb' => array(
- 'variables' => array('breadcrumb' => NULL),
- ),
- 'help' => array(
- 'variables' => array('markup' => NULL),
- ),
- 'table' => array(
- 'variables' => array(
- 'header' => NULL,
- 'footer' => NULL,
- 'rows' => NULL,
- 'attributes' => array(),
- 'caption' => NULL,
- 'colgroups' => array(),
- 'sticky' => TRUE,
- 'empty' => '',
- ),
- ),
- 'tablesort_indicator' => array(
- 'variables' => array('style' => NULL),
- ),
- 'mark' => array(
- 'variables' => array('type' => MARK_NEW),
- ),
- 'item_list' => array(
- 'variables' => array(
- 'items' => array(),
- 'title' => '',
- 'type' => 'ul',
- 'attributes' => array(),
- 'wrapper_attributes' => array(),
- 'empty' => NULL,
- ),
- ),
- 'more_help_link' => array(
- 'variables' => array('url' => NULL),
- ),
- 'feed_icon' => array(
- 'variables' => array('url' => NULL, 'title' => NULL),
- ),
- 'more_link' => array(
- 'variables' => array('url' => NULL, 'title' => NULL)
- ),
- 'progress_bar' => array(
- 'variables' => array('percent' => NULL, 'message' => NULL),
- ),
- 'indentation' => array(
- 'variables' => array('size' => 1),
- ),
- 'head_tag' => array(
- 'render element' => 'element',
- ),
-
- 'maintenance_page' => array(
- 'variables' => array(
- 'content' => NULL,
- 'sidebar' => NULL,
- 'footer' => NULL,
- 'show_messages' => TRUE,
- ),
- 'template' => 'templates/maintenance-page',
- ),
- 'update_page' => array(
- 'variables' => array(
- 'content' => NULL,
- 'sidebar' => NULL,
- 'footer' => NULL,
- 'show_messages' => TRUE,
- ),
- ),
- 'install_page' => array(
- 'variables' => array(
- 'content' => NULL,
- 'sidebar' => NULL,
- 'footer' => NULL,
- ),
- ),
- 'task_list' => array(
- 'variables' => array('items' => NULL, 'active' => NULL),
- ),
- 'authorize_message' => array(
- 'variables' => array('message' => NULL, 'success' => TRUE),
- ),
- 'authorize_report' => array(
- 'variables' => array('messages' => array()),
- ),
-
- 'pager' => array(
- 'variables' => array(
- 'tags' => array(),
- 'element' => 0,
- 'parameters' => array(),
- 'quantity' => 9,
- ),
- ),
- 'pager_first' => array(
- 'variables' => array(
- 'text' => NULL,
- 'element' => 0,
- 'parameters' => array(),
- ),
- ),
- 'pager_previous' => array(
- 'variables' => array(
- 'text' => NULL,
- 'element' => 0,
- 'interval' => 1,
- 'parameters' => array(),
- ),
- ),
- 'pager_next' => array(
- 'variables' => array(
- 'text' => NULL,
- 'element' => 0,
- 'interval' => 1,
- 'parameters' => array(),
- ),
- ),
- 'pager_last' => array(
- 'variables' => array(
- 'text' => NULL,
- 'element' => 0,
- 'parameters' => array(),
- ),
- ),
- 'pager_link' => array(
- 'variables' => array(
- 'text' => NULL,
- 'page_new' => NULL,
- 'element' => NULL,
- 'parameters' => array(),
- 'attributes' => array(),
- ),
- ),
-
- 'menu_link' => array(
- 'render element' => 'element',
- ),
- 'menu_tree' => array(
- 'render element' => 'tree',
- ),
- 'menu_local_task' => array(
- 'render element' => 'element',
- ),
- 'menu_local_action' => array(
- 'render element' => 'element',
- ),
- 'menu_local_actions' => array(
- 'variables' => array('actions' => array()),
- ),
- 'menu_local_tasks' => array(
- 'variables' => array('primary' => array(), 'secondary' => array()),
- ),
- 'menu_toggle' => array(
- 'variables' => array('enabled' => NULL, 'id' => NULL, 'text' => ''),
- ),
-
- 'select' => array(
- 'render element' => 'element',
- ),
- 'fieldset' => array(
- 'render element' => 'element',
- ),
- 'radio' => array(
- 'render element' => 'element',
- ),
- 'date' => array(
- 'render element' => 'element',
- ),
- 'html_date' => array(
- 'render element' => 'element',
- ),
- 'html_time' => array(
- 'render element' => 'element',
- ),
- 'html_datetime' => array(
- 'render element' => 'element',
- ),
- 'exposed_filters' => array(
- 'render element' => 'form',
- ),
- 'checkbox' => array(
- 'render element' => 'element',
- ),
- 'button' => array(
- 'render element' => 'element',
- ),
- 'image_button' => array(
- 'render element' => 'element',
- ),
- 'hidden' => array(
- 'render element' => 'element',
- ),
- 'textfield' => array(
- 'render element' => 'element',
- ),
- 'tel' => array(
- 'render element' => 'element',
- ),
- 'email' => array(
- 'render element' => 'element',
- ),
- 'url' => array(
- 'render element' => 'element',
- ),
- 'color' => array(
- 'render element' => 'element',
- ),
- 'number' => array(
- 'render element' => 'element',
- ),
- 'range' => array(
- 'render element' => 'element',
- ),
- 'form' => array(
- 'render element' => 'element',
- ),
- 'textarea' => array(
- 'render element' => 'element',
- ),
- 'search' => array(
- 'render element' => 'element',
- ),
- 'password' => array(
- 'render element' => 'element',
- ),
- 'file' => array(
- 'render element' => 'element',
- ),
- 'tableselect' => array(
- 'render element' => 'element',
- ),
- 'form_element' => array(
- 'render element' => 'element',
- ),
- 'form_required_marker' => array(
- 'render element' => 'element',
- ),
- 'form_element_label' => array(
- 'render element' => 'element',
- ),
- 'form_element_description' => array(
- 'render element' => 'element',
- ),
- 'vertical_tabs' => array(
- 'render element' => 'element',
- ),
- 'container' => array(
- 'render element' => 'element',
- ),
- 'details' => array(
- 'render element' => 'element',
- ),
-
- 'icon' => array(
- 'variables' => array(
- 'name' => NULL,
- 'path' => NULL,
- 'attributes' => array('class' => array()),
- 'wrapper_attributes' => array('class' => array()),
- ),
- ),
- );
- }
-
- * @addtogroup schemaapi
- * @{
- */
-
- * Creates all tables defined in a module's hook_schema().
- *
- * Note: This function does not pass the module's schema through
- * hook_schema_alter(). The module's tables will be created exactly as the
- * module defines them.
- *
- * @param $module
- * The module for which the tables will be created.
- */
- function backdrop_install_schema($module) {
- $schema = backdrop_get_schema_unprocessed($module);
- _backdrop_schema_initialize($schema, $module, FALSE);
-
- foreach ($schema as $name => $table) {
- db_create_table($name, $table);
- }
- }
-
- * Removes all tables defined in a module's hook_schema().
- *
- * Note: This function does not pass the module's schema through
- * hook_schema_alter(). The module's tables will be created exactly as the
- * module defines them.
- *
- * @param $module
- * The module for which the tables will be removed.
- *
- * @return
- * An array of arrays with the following key/value pairs:
- * - success: a boolean indicating whether the query succeeded.
- * - query: the SQL query(s) executed, passed through check_plain().
- */
- function backdrop_uninstall_schema($module) {
- $schema = backdrop_get_schema_unprocessed($module);
- _backdrop_schema_initialize($schema, $module, FALSE);
-
- foreach ($schema as $table) {
- if (db_table_exists($table['name'])) {
- db_drop_table($table['name']);
- }
- }
- }
-
- * Returns the unprocessed and unaltered version of a module's schema.
- *
- * Use this function only if you explicitly need the original
- * specification of a schema, as it was defined in a module's
- * hook_schema(). No additional default values will be set,
- * hook_schema_alter() is not invoked and these unprocessed
- * definitions won't be cached. To retrieve the schema after
- * hook_schema_alter() has been invoked use backdrop_get_schema().
- *
- * This function can be used to retrieve a schema specification in
- * hook_schema(), so it allows you to derive your tables from existing
- * specifications.
- *
- * It is also used by backdrop_install_schema() and
- * backdrop_uninstall_schema() to ensure that a module's tables are
- * created exactly as specified without any changes introduced by a
- * module that implements hook_schema_alter().
- *
- * @param $module
- * The module to which the table belongs.
- * @param $table
- * The name of the table. If not given, the module's complete schema
- * is returned.
- *
- * @return array
- * The schema for the requested table, without modification by other modules.
- */
- function backdrop_get_schema_unprocessed($module, $table = NULL) {
-
- module_load_install($module);
- $schema = module_invoke($module, 'schema');
-
- if (isset($table) && isset($schema[$table])) {
- return $schema[$table];
- }
- elseif (!empty($schema)) {
- return $schema;
- }
- return array();
- }
-
- * Fills in required default values for table definitions from hook_schema().
- *
- * @param $schema
- * The schema definition array as it was returned by the module's
- * hook_schema().
- * @param $module
- * The module for which hook_schema() was invoked.
- * @param $remove_descriptions
- * (optional) Whether to additionally remove 'description' keys of all tables
- * and fields to improve performance of serialize() and unserialize().
- * Defaults to TRUE.
- */
- function _backdrop_schema_initialize(&$schema, $module, $remove_descriptions = TRUE) {
-
- foreach ($schema as $name => &$table) {
- if (empty($table['module'])) {
- $table['module'] = $module;
- }
- if (!isset($table['name'])) {
- $table['name'] = $name;
- }
- if ($remove_descriptions) {
- unset($table['description']);
- foreach ($table['fields'] as &$field) {
- unset($field['description']);
- }
- }
- }
- }
-
- * Retrieves a list of fields from a table schema.
- *
- * The returned list is suitable for use in an SQL query.
- *
- * @param string $table
- * The name of the table from which to retrieve fields.
- * @param string $prefix
- * An optional prefix to to all fields.
- *
- * @return array An array of fields.
- */
- function backdrop_schema_fields_sql($table, $prefix = NULL) {
- $schema = backdrop_get_schema($table);
- $fields = array_keys($schema['fields']);
- if ($prefix) {
- $columns = array();
- foreach ($fields as $field) {
- $columns[] = "$prefix.$field";
- }
- return $columns;
- }
- else {
- return $fields;
- }
- }
-
- * Saves (inserts or updates) a record to the database based upon the schema.
- *
- * Do not use backdrop_write_record() within hook_update_N() functions, since the
- * database schema cannot be relied upon when a user is running a series of
- * updates. Instead, use db_insert() or db_update() to save the record.
- *
- * @param $table
- * The name of the table; this must be defined by a hook_schema()
- * implementation.
- * @param $record
- * An object or array representing the record to write, passed in by
- * reference. If inserting a new record, values not provided in $record will
- * be populated in $record and in the database with the default values from
- * the schema, as well as a single serial (auto-increment) field (if present).
- * If updating an existing record, only provided values are updated in the
- * database, and $record is not modified.
- * @param $primary_keys
- * To indicate that this is a new record to be inserted, omit this argument.
- * If this is an update, this argument specifies the primary keys' field
- * names. If there is only 1 field in the key, you may pass in a string; if
- * there are multiple fields in the key, pass in an array.
- *
- * @return
- * If the record insert or update failed, returns FALSE. If it succeeded,
- * returns SAVED_NEW or SAVED_UPDATED, depending on the operation performed.
- */
- function backdrop_write_record($table, &$record, $primary_keys = array()) {
-
- if (is_string($primary_keys)) {
- $primary_keys = array($primary_keys);
- }
-
- $schema = backdrop_get_schema($table);
- if (empty($schema)) {
- return FALSE;
- }
-
- $object = (object) $record;
- $fields = array();
- $default_fields = array();
-
-
- foreach ($schema['fields'] as $field => $info) {
- if ($info['type'] == 'serial') {
-
- if (!empty($primary_keys)) {
- continue;
- }
-
-
- $serial = $field;
- }
-
-
-
- if (in_array($field, $primary_keys)) {
- continue;
- }
-
-
-
-
- if (!property_exists($object, $field)) {
- $default_fields[] = $field;
- continue;
- }
-
-
-
-
- if ($info['type'] == 'serial' && !isset($object->$field)) {
- $default_fields[] = $field;
- continue;
- }
-
-
- if (empty($info['serialize'])) {
- $fields[$field] = $object->$field;
- }
- else {
- $fields[$field] = serialize($object->$field);
- }
-
-
-
-
-
-
-
- if (isset($object->$field) || !empty($info['not null'])) {
- if ($info['type'] == 'int' || $info['type'] == 'serial') {
- $fields[$field] = (int) $fields[$field];
- }
- elseif ($info['type'] == 'float') {
- $fields[$field] = (float) $fields[$field];
- }
- else {
- $fields[$field] = (string) $fields[$field];
- }
- }
- }
-
-
- if (empty($primary_keys)) {
-
- $options = array('return' => Database::RETURN_INSERT_ID);
- if (isset($serial) && isset($fields[$serial])) {
-
-
- if ($fields[$serial]) {
- $options['return'] = Database::RETURN_AFFECTED;
- }
-
-
- else {
- unset($fields[$serial]);
- }
- }
-
-
- $query = db_insert($table, $options)
- ->fields($fields)
- ->useDefaults($default_fields);
-
- $return = SAVED_NEW;
- }
- else {
-
- $query = db_update($table)->fields($fields);
- foreach ($primary_keys as $key) {
- $query->condition($key, $object->$key);
- }
- $return = SAVED_UPDATED;
- }
-
-
- if ($query_return = $query->execute()) {
- if (isset($serial)) {
-
-
- if (isset($options) && $options['return'] != Database::RETURN_INSERT_ID) {
- $object->$serial = $fields[$serial];
- }
- else {
- $object->$serial = $query_return;
- }
- }
- }
-
-
-
-
- elseif ($query_return === FALSE && count($primary_keys) == 1) {
- $return = FALSE;
- }
-
-
- if (empty($primary_keys)) {
- foreach ($schema['fields'] as $field => $info) {
- if (isset($info['default']) && !property_exists($object, $field)) {
- $object->$field = $info['default'];
- }
- }
- }
-
-
- if (is_array($record)) {
- $record = (array) $object;
- }
-
- return $return;
- }
-
- * @} End of "addtogroup schemaapi".
- */
-
- * Parses Backdrop module and theme .info files.
- *
- * Info files are NOT for placing arbitrary theme and module-specific settings.
- * Use config_get() and config_set() for managing settings.
- *
- * Information stored in a module .info file:
- * - name: The real name of the module for display purposes.
- * - description: A brief description of the module.
- * - dependencies: An array of machine names of modules required by
- * this module.
- * - package: The name of the package of modules this module belongs to.
- *
- * Information stored in a theme .info file:
- * - name: The real name of the theme for display purposes.
- * - description: Brief description.
- * - screenshot: Path to screenshot relative to the theme's .info file.
- * - engine: Theme engine; typically phptemplate.
- * - base: Name of a base theme, if applicable; e.g., base = zen.
- * - settings: Theme settings; e.g., settings[color] = true
- * - stylesheets: Theme stylesheets; e.g., stylesheets[all][] = my-style.css.
- * - scripts: Theme scripts; e.g., scripts[] = my-script.js.
- *
- * See bartik.info for an example of a theme .info file.
- *
- * @param $filename
- * The file we are parsing. Accepts file with relative or absolute path.
- * @param bool $process_sections
- * Flag indicating if sections should be parsed.
- *
- * @return
- * The info array.
- *
- * @see backdrop_parse_info_format()
- */
- function backdrop_parse_info_file($filename, $process_sections = FALSE) {
- $info = &backdrop_static(__FUNCTION__, array());
-
- if (!isset($info[$filename])) {
- if (!file_exists($filename)) {
- $info[$filename] = array();
- }
- else {
- $data = file_get_contents($filename);
- $info[$filename] = backdrop_parse_info_format($data, $process_sections);
- }
- }
- return $info[$filename];
- }
-
- * Parses data in Backdrop's .info format.
- *
- * Data should be in an .ini-like format to specify values. White-space
- * generally doesn't matter, except inside values:
- * @code
- * key = value
- * key = "value"
- * key = 'value'
- * key = "multi-line
- * value"
- * key = 'multi-line
- * value'
- * key
- * =
- * 'value'
- * @endcode
- *
- * Arrays are created using a HTTP GET alike syntax:
- * @code
- * key[] = "numeric array"
- * key[index] = "associative array"
- * key[index][] = "nested numeric array"
- * key[index][index] = "nested associative array"
- * @endcode
- *
- * PHP constants are substituted in, but only when used as the entire value.
- * Comments should start with a semi-colon at the beginning of a line.
- *
- * @param string $data
- * A string to parse.
- * @param bool $process_sections
- * Flag indicating if sections should be parsed.
- *
- * @return
- * The info array.
- *
- * @see backdrop_parse_info_file()
- */
- function backdrop_parse_info_format($data, $process_sections = FALSE) {
- $info = array();
-
-
- if ($process_sections) {
-
- $data = trim(preg_replace('/;.*$/m', '', $data));
-
-
- $split = preg_split('/^\[(.*)\]\s*$/m', $data, -1, PREG_SPLIT_NO_EMPTY | PREG_SPLIT_DELIM_CAPTURE);
- $split_count = count($split);
-
-
- if ($split_count > 1) {
- $info_sections = array();
- for ($n = 0; $n < $split_count; $n = $n + 2) {
- $info_sections[$split[$n]] = backdrop_parse_info_format($split[$n + 1], FALSE);
- }
- return $info_sections;
- }
- }
-
- if (preg_match_all('
- @^\s* # Start at the beginning of a line, ignoring leading whitespace
- ((?:
- [^=;\[\]]| # Key names cannot contain equal signs, semi-colons or square brackets,
- \[[^\[\]]*\] # unless they are balanced and not nested
- )+?)
- \s*=\s* # Key/value pairs are separated by equal signs (ignoring white-space)
- (?:
- ("(?:[^"]|(?<=\\\\)")*")| # Double-quoted string, which may contain slash-escaped quotes/slashes
- (\'(?:[^\']|(?<=\\\\)\')*\')| # Single-quoted string, which may contain slash-escaped quotes/slashes
- ([^\r\n]*?) # Non-quoted string
- )\s*$ # Stop at the next end of a line, ignoring trailing whitespace
- @msx', $data, $matches, PREG_SET_ORDER)) {
- foreach ($matches as $match) {
-
- $i = 0;
- $parts = array();
- foreach (array('key', 'value1', 'value2', 'value3') as $var) {
- $parts[$var] = isset($match[++$i]) ? $match[$i] : '';
- }
- $value = stripslashes(substr($parts['value1'], 1, -1)) . stripslashes(substr($parts['value2'], 1, -1)) . $parts['value3'];
-
-
- $keys = preg_split('/\]?\[/', rtrim($parts['key'], ']'));
- $last = array_pop($keys);
- $parent = &$info;
-
-
- foreach ($keys as $key) {
- if ($key == '') {
- $key = count($parent);
- }
- if (!isset($parent[$key]) || !is_array($parent[$key])) {
- $parent[$key] = array();
- }
- $parent = &$parent[$key];
- }
-
-
- if (preg_match('/^\w+$/', $value) && defined($value)) {
- $value = constant($value);
- }
-
-
- if ($last == '') {
- $last = count($parent);
- }
- $parent[$last] = $value;
- }
- }
-
- return $info;
- }
-
- * Returns a list of severity levels, as defined in RFC 3164.
- *
- * @param string $return
- * The type of data to return. Can be one of:
- * - all: The full array.
- * - name: The untranslated machine names.
- * - label: The translated human-readable names/labels.
- * - description: The level descriptions.
- * For backwards-compatibility, this defaults to 'label'.
- *
- * @return array
- * An array of the possible severity levels for log messages. The array keys
- * are the named constants, while the values depend on the value of $return.
- *
- * @see https://en.wikipedia.org/wiki/Syslog#Severity_level
- * @see http://www.ietf.org/rfc/rfc3164.txt
- * @see watchdog()
- * @ingroup logging_severity_levels
- */
- function watchdog_severity_levels($return = 'label') {
- $levels = array(
- WATCHDOG_EMERGENCY => array(
- 'name' => 'emergency',
- 'label' => t('Emergency'),
- 'description' => t('System is unusable'),
- ),
- WATCHDOG_ALERT => array(
- 'name' => 'alert',
- 'label' => t('Alert'),
- 'description' => t('Action must be taken immediately'),
- ),
- WATCHDOG_CRITICAL => array(
- 'name' => 'critical',
- 'label' => t('Critical'),
- 'description' => t('Critical conditions'),
- ),
- WATCHDOG_ERROR => array(
- 'name' => 'error',
- 'label' => t('Error'),
- 'description' => t('Error conditions'),
- ),
- WATCHDOG_WARNING => array(
- 'name' => 'warning',
- 'label' => t('Warning'),
- 'description' => t('Warning conditions'),
- ),
- WATCHDOG_NOTICE => array(
- 'name' => 'notice',
- 'label' => t('Notice'),
- 'description' => t('Normal but significant conditions'),
- ),
- WATCHDOG_INFO => array(
- 'name' => 'info',
- 'label' => t('Info'),
- 'description' => t('Informational messages'),
- ),
- WATCHDOG_DEBUG => array(
- 'name' => 'debug',
- 'label' => t('Debug'),
- 'description' => t('Debug-level messages'),
- ),
- WATCHDOG_DEPRECATED => array(
- 'name' => 'deprecated',
- 'label' => t('Deprecated'),
- 'description' => t('Deprecated function/feature notices'),
- ),
- );
-
- switch ($return) {
- case 'name':
- case 'label':
- case 'description':
- return array_combine(array_keys($levels), array_column($levels, $return));
- case 'all':
- default:
- return $levels;
- }
- }
-
-
- * Explodes a string of tags into an array.
- *
- * @see backdrop_implode_tags()
- */
- function backdrop_explode_tags($tags) {
- if (empty($tags)) {
- return array();
- }
-
-
- $regexp = '%(?:^|,\ *)("(?>[^"]*)(?>""[^"]* )*"|(?: [^",]*))%x';
- preg_match_all($regexp, $tags, $matches);
- $typed_tags = array_unique($matches[1]);
-
- $tags = array();
- foreach ($typed_tags as $tag) {
-
-
-
- $tag = trim(str_replace('""', '"', preg_replace('/^"(.*)"$/', '\1', $tag)));
- if ($tag != "") {
- $tags[] = $tag;
- }
- }
-
- return $tags;
- }
-
- * Implodes an array of tags into a string.
- *
- * @see backdrop_explode_tags()
- */
- function backdrop_implode_tags($tags) {
- $encoded_tags = array();
- foreach ($tags as $tag) {
-
- if (strpos($tag, ',') !== FALSE || strpos($tag, '"') !== FALSE) {
- $tag = '"' . str_replace('"', '""', $tag) . '"';
- }
-
- $encoded_tags[] = $tag;
- }
- return implode(', ', $encoded_tags);
- }
-
- * Flushes all cached data on the site.
- *
- * Empties cache tables, rebuilds the menu cache and theme registries, and
- * invokes a hook so that other modules' cache data can be cleared as well.
- */
- function backdrop_flush_all_caches() {
-
- _backdrop_flush_css_js();
-
- system_rebuild_module_data();
- backdrop_clear_css_cache();
- backdrop_clear_js_cache();
-
-
- system_rebuild_theme_data();
- backdrop_theme_rebuild();
-
- entity_info_cache_clear();
-
-
-
- menu_rebuild();
-
-
- $core = array('cache', 'path', 'filter', 'bootstrap', 'token', 'page');
- $cache_bins = array_merge(module_invoke_all('flush_caches'), $core);
- foreach ($cache_bins as $bin) {
- cache($bin)->flush();
- }
-
-
-
-
- _system_update_bootstrap_status();
- }
-
- * Changes the dummy query string added to all CSS and JavaScript files.
- *
- * Changing the dummy query string appended to CSS and JavaScript files forces
- * all browsers to reload fresh files.
- */
- function _backdrop_flush_css_js() {
-
- state_set('css_js_query_string', base_convert(REQUEST_TIME, 10, 36));
- }
-
- * Outputs debug information.
- *
- * The debug information is passed on to trigger_error() after being converted
- * to a string.
- *
- * @param $data
- * Data to be output.
- * @param $label
- * Label to prefix the data.
- * @param $print_r
- * Flag to switch between print_r() and var_export() for data conversion to
- * string. Set $print_r to TRUE when dealing with a recursive data structure
- * as var_export() will generate an error.
- */
- function debug($data, $label = NULL, $print_r = FALSE) {
-
- $string = check_plain($print_r ? print_r($data, TRUE) : var_export($data, TRUE));
-
-
- $string = '<pre>' . $string . '</pre>';
-
- trigger_error(trim($label ? "$label: $string" : $string));
- }
-
- * Parses a dependency for comparison by backdrop_check_incompatibility().
- *
- * @param $dependency
- * A dependency string, which specifies a module dependency, and optionally
- * the project it comes from and versions that are supported. Supported
- * formats include:
- * - 'module'
- * - 'project:module'
- * - 'project:module (>=version, version)'
- *
- * @return
- * An associative array with three keys:
- * - 'project' includes the name of the project containing the module.
- * - 'name' includes the name of the module to depend on.
- * - 'original_version' contains the original version string (which can be
- * used in the UI for reporting incompatibilities).
- * - 'versions' is a list of associative arrays, each containing the keys
- * 'op' and 'version'. 'op' can be one of: '=', '==', '!=', '<>', '<',
- * '<=', '>', or '>='. 'version' is one piece like '4.5-beta3'.
- * Callers should pass this structure to backdrop_check_incompatibility().
- *
- * @see backdrop_check_incompatibility()
- */
- function backdrop_parse_dependency($dependency) {
- $value = array();
-
- if (strpos($dependency, ':')) {
- list($project_name, $dependency) = explode(':', $dependency);
- $value['project'] = $project_name;
- }
-
-
- $p_op = '(?P<operation>!=|==|=|<|<=|>|>=|<>)?';
-
- $p_core = '(?:' . preg_quote(BACKDROP_CORE_COMPATIBILITY) . '-)?';
- $p_major = '(?P<major>\d+)';
-
- $p_minor = '(?P<minor>(?:\d+|x)(?:-[A-Za-z]+\d+)?)';
- $p_patch = '(?P<patch>(?:\d+|x)(?:-[A-Za-z]+\d+)?)?';
- $parts = explode('(', $dependency, 2);
- $value['name'] = trim($parts[0]);
- if (isset($parts[1])) {
- $value['original_version'] = '(' . $parts[1];
- foreach (explode(',', $parts[1]) as $version) {
- if (preg_match("/^\s*$p_op\s*$p_core$p_major\.$p_minor\.?$p_patch/", $version, $matches)) {
- $op = !empty($matches['operation']) ? $matches['operation'] : '=';
- if ($matches['minor'] == 'x') {
-
-
-
-
-
-
- if ($op == '>' || $op == '<=') {
- $matches['major']++;
- }
-
- if ($op == '=' || $op == '==') {
- $value['versions'][] = array('op' => '<', 'version' => ($matches['major'] + 1) . '.x');
- $op = '>=';
- }
- }
-
- if (isset($matches['patch']) && ($matches['patch'] === '0' || $matches['patch'])) {
- if ($matches['patch'] == 'x' && $matches['minor'] !== 'x') {
-
-
- if ($op == '>' || $op == '<=') {
- $matches['minor']++;
- }
- if ($op == '=' || $op == '==') {
- $value['versions'][] = array(
- 'op' => '<',
- 'version' => $matches['major'] . '.' . ($matches['minor'] + 1) . '.x',
- );
- $op = '>=';
- }
- }
- }
- $version = $matches['major'] . '.' . $matches['minor'];
- $version .= (isset($matches['patch']) && ($matches['patch'] === '0' || $matches['patch'])) ? '.' . $matches['patch'] : '';
- $value['versions'][] = array('op' => $op, 'version' => $version);
- }
- }
- }
- return $value;
- }
-
- * Checks whether a version is compatible with a given dependency.
- *
- * @param array $dependency_info
- * The parsed dependency structure from backdrop_parse_dependency().
- * @param string $current_version
- * The version to check against (like 4.2 or 1.10.0-beta4).
- *
- * @return string|NULL
- * NULL if compatible, otherwise the original dependency version string that
- * caused the incompatibility.
- *
- * @see backdrop_parse_dependency()
- */
- function backdrop_check_incompatibility(array $dependency_info, $current_version) {
- $current_version = _backdrop_version_compare_convert($current_version);
- if (!empty($dependency_info['versions'])) {
- foreach ($dependency_info['versions'] as $required_version) {
- if ((isset($required_version['op']) && !version_compare($current_version, _backdrop_version_compare_convert($required_version['version']), $required_version['op']))) {
- return $dependency_info['original_version'];
- }
- }
- }
-
- return NULL;
- }
-
- * Converts a Backdrop version string into numeric-only version string.
- *
- * @param string $version_string
- * A version string such as 1.x-1.2.3, 1.10.0-beta4, or 1.4.x-dev.
- * @return string
- * A converted string only containing numbers, for use in PHP's
- * version_compare() function.
- */
- function _backdrop_version_compare_convert($version_string) {
-
- $core_prefix = BACKDROP_CORE_COMPATIBILITY . '-';
- if (strpos($version_string, $core_prefix) === 0) {
- $version_string = substr($version_string,