[ Index ]

PHP Cross Reference of BuddyPress

title

Body

[close]

/src/bp-forums/bbpress/bb-includes/backpress/ -> functions.core.php (summary)

From WP wp-includes/functions.php Missing functions are indicated in comments

File Size: 1247 lines (33 kb)
Included or required:0 times
Referenced: 0 times
Includes or requires: 0 files

Defines 36 functions

  current_time()
  maybe_unserialize()
  is_serialized()
  is_serialized_string()
  maybe_serialize()
  build_query()
  add_query_arg()
  remove_query_arg()
  wp_remote_fopen()
  get_status_header_desc()
  status_header()
  wp_get_nocache_headers()
  nocache_headers()
  cache_javascript_headers()
  wp_referer_field()
  wp_original_referer_field()
  wp_get_referer()
  wp_get_original_referer()
  wp_parse_args()
  absint()
  is_lighttpd_before_150()
  apache_mod_loaded()
  validate_file()
  is_ssl()
  force_ssl_login()
  force_ssl_admin()
  wp_timezone_override_offset()
  wp_timezone_supported()
  _wp_timezone_choice_usort_callback()
  wp_timezone_choice()
  _cleanup_header_comment()
  wp_clone()
  backpress_gmt_strtotime()
  backpress_convert_object()
  backpress_die()
  backpress_set_cookie()

Functions
Functions that are not part of a class:

current_time( $type, $gmt = 0 )   X-Ref
Retrieve the current time based on specified type.

The 'mysql' type will return the time in the format for MySQL DATETIME field.
The 'timestamp' type will return the current timestamp.

If $gmt is set to either '1' or 'true', then both types will use GMT time.
if $gmt is false, the output is adjusted with the GMT offset in the WordPress option.

param: string $type Either 'mysql' or 'timestamp'.
param: int|bool $gmt Optional. Whether to use GMT timezone. Default is false.
since: 1.0.0
return: int|string String if $type is 'gmt', int if $type is 'timestamp'.

maybe_unserialize( $original )   X-Ref
Unserialize value only if it was serialized.

param: string $original Maybe unserialized original, if is needed.
since: 2.0.0
return: mixed Unserialized data can be any type.

is_serialized( $data )   X-Ref
Check value to find if it was serialized.

If $data is not an string, then returned value will always be false.
Serialized data is always a string.

param: mixed $data Value to check to see if was serialized.
since: 2.0.5
return: bool False if not serialized and true if it was.

is_serialized_string( $data )   X-Ref
Check whether serialized data is of string type.

param: mixed $data Serialized data
since: 2.0.5
return: bool False if not a serialized string, true if it is.

maybe_serialize( $data )   X-Ref
Serialize data, if needed.

param: mixed $data Data that might be serialized.
since: 2.0.5
return: mixed A scalar data

build_query( $data )   X-Ref
Build URL query based on an associative and, or indexed array.

This is a convenient function for easily building url queries. It sets the
separator to '&' and uses _http_build_query() function.

param: array $data URL-encode key/value pairs.
since: 2.3.0
return: string URL encoded string

add_query_arg()   X-Ref
Retrieve a modified URL query string.

You can rebuild the URL and append a new query variable to the URL query by
using this function. You can also retrieve the full URL with query data.

Adding a single key & value or an associative array. Setting a key value to
emptystring removes the key. Omitting oldquery_or_uri uses the $_SERVER
value.

param: mixed $param1 Either newkey or an associative_array
param: mixed $param2 Either newvalue or oldquery or uri
param: mixed $param3 Optional. Old query or uri
since: 1.5.0
return: string New URL query string.

remove_query_arg( $key, $query=false )   X-Ref
Removes an item or list from the query string.

param: string|array $key Query key or keys to remove.
param: bool $query When false uses the $_SERVER value.
since: 1.5.0
return: string New URL query string.

wp_remote_fopen( $uri )   X-Ref
HTTP request for URI to retrieve content.

param: string $uri URI/URL of web page to retrieve.
since: 1.5.1
return: bool|string HTTP content. False on failure.

get_status_header_desc( $code )   X-Ref
Retrieve the description for the HTTP status.

param: int $code HTTP status code.
since: 2.3.0
return: string Empty string if not found, or description if found.

status_header( $header )   X-Ref
Set HTTP status header.

param: int $header HTTP status code
since: 2.0.0
return: null Does not return anything.

wp_get_nocache_headers()   X-Ref
Gets the header information to prevent caching.

The several different headers cover the different ways cache prevention is handled
by different browsers

since: 2.8
return: array The associative array of header names and field values.

nocache_headers()   X-Ref
Sets the headers to prevent caching for the different browsers.

Different browsers support different nocache headers, so several headers must
be sent so that all of them get the point that no caching should occur.

since: 2.0.0

cache_javascript_headers()   X-Ref
Set the headers for caching for 10 days with JavaScript content type.

since: 2.1.0

wp_referer_field( $echo = true)   X-Ref
Retrieve or display referer hidden field for forms.

The referer link is the current Request URI from the server super global. The
input name is '_wp_http_referer', in case you wanted to check manually.

param: bool $echo Whether to echo or return the referer field.
since: 2.0.4
return: string Referer field.

wp_original_referer_field( $echo = true, $jump_back_to = 'current' )   X-Ref
Retrieve or display original referer hidden field for forms.

The input name is '_wp_original_http_referer' and will be either the same
value of {@link wp_referer_field()}, if that was posted already or it will
be the current page, if it doesn't exist.

param: bool $echo Whether to echo the original http referer
param: string $jump_back_to Optional, default is 'current'. Can be 'previous' or page you want to jump back to.
since: 2.0.4
return: string Original referer field.

wp_get_referer()   X-Ref
Retrieve referer from '_wp_http_referer', HTTP referer, or current page respectively.

since: 2.0.4
return: string|bool False on failure. Referer URL on success.

wp_get_original_referer()   X-Ref
Retrieve original referer that was posted, if it exists.

since: 2.0.4
return: string|bool False if no original referer or original referer if set.

wp_parse_args( $args, $defaults = '' )   X-Ref
Merge user defined arguments into defaults array.

This function is used throughout WordPress to allow for both string or array
to be merged into another array.

param: string|array $args Value to merge with $defaults
param: array $defaults Array that serves as the defaults.
since: 2.2.0
return: array Merged user defined values with defaults.

absint( $maybeint )   X-Ref
Converts value to nonnegative integer.

param: mixed $maybeint Data you wish to have convered to an nonnegative integer
since: 2.5.0
return: int An nonnegative integer

is_lighttpd_before_150()   X-Ref
Is the server running earlier than 1.5.0 version of lighttpd

since: 2.5.0
return: bool Whether the server is running lighttpd < 1.5.0

apache_mod_loaded($mod, $default = false)   X-Ref
Does the specified module exist in the apache config?

param: string $mod e.g. mod_rewrite
param: bool $default The default return value if the module is not found
since: 2.5.0
return: bool

validate_file( $file, $allowed_files = '' )   X-Ref
File validates against allowed set of defined rules.

A return value of '1' means that the $file contains either '..' or './'. A
return value of '2' means that the $file contains ':' after the first
character. A return value of '3' means that the file is not in the allowed
files list.

param: string $file File path.
param: array $allowed_files List of allowed files.
since: 1.2.0
return: int 0 means nothing is wrong, greater than 0 means something was wrong.

is_ssl()   X-Ref
Determine if SSL is used.

since: 2.6.0
return: bool True if SSL, false if not used.

force_ssl_login($force = '')   X-Ref
Whether SSL login should be forced.

param: string|bool $force Optional.
since: 2.6.0
return: bool True if forced, false if not forced.

force_ssl_admin($force = '')   X-Ref
Whether to force SSL used for the Administration Panels.

param: string|bool $force
since: 2.6.0
return: bool True if forced, false if not forced.

wp_timezone_override_offset()   X-Ref
gmt_offset modification for smart timezone handling

Overrides the gmt_offset option if we have a timezone_string available

wp_timezone_supported()   X-Ref
Check for PHP timezone support


_wp_timezone_choice_usort_callback( $a, $b )   X-Ref
No description

wp_timezone_choice( $selected_zone )   X-Ref
Gives a nicely formatted list of timezone strings // temporary! Not in final

param: $selected_zone string Selected Zone

_cleanup_header_comment($str)   X-Ref
Strip close comment and close php tags from file headers used by WP
See http://core.trac.wordpress.org/ticket/8497

since: 2.8

wp_clone( $object )   X-Ref
Copy an object.

Returns a cloned copy of an object.

param: object $object The object to clone
since: 2.7.0
return: object The cloned object

backpress_gmt_strtotime( $string )   X-Ref
BackPress only below


backpress_convert_object( &$object, $output )   X-Ref
No description

backpress_die( $message, $title = '', $args = array()   X-Ref
Kill BackPress execution and display HTML message with error message.

This function calls the die() PHP function. The difference is that a message
in HTML will be displayed to the user. It is recommended to use this function
only when the execution should not continue any further. It is not
recommended to call this function very often and normally you should try to
handle as many errors as possible silently.

param: string $message Error message.
param: string $title Error title.
param: string|array $args Optional arguments to control behaviour.

backpress_set_cookie()   X-Ref
Acts the same as core PHP setcookie() but its arguments are run through the backpress_set_cookie filter.

If the filter returns false, setcookie() isn't called.



Generated: Sat Apr 27 01:00:55 2024 Cross-referenced by PHPXref 0.7.1