git-multi-status — View a summary of the status for multiple repositories.
git-multi-status [<options>…] [--] [<path>…]
<?php | |
/** | |
* WPML Utility Functions | |
*/ | |
if ( ! function_exists('icl_get_object') ) | |
{ | |
/** | |
* Retrieve an associated translated object from another object's ID. |
<?php | |
/** | |
* Filter: Add "Nowhere" as a location to "Page Type" rules. | |
* | |
* Useful for third-parties seeking to dynamically embed | |
* the field group in a non-traditional manner. | |
* | |
* @used-by Filer: 'acf/location/rule_values/page_type' | |
* @param array $choices |
<?php | |
/** | |
* Convert date/time format between `date()` and `strftime()` | |
* | |
* Timezone conversion is done for Unix. Windows users must exchange %z and %Z. | |
* | |
* Unsupported date formats : S, n, t, L, B, G, u, e, I, P, Z, c, r | |
* Unsupported strftime formats : %U, %W, %C, %g, %r, %R, %T, %X, %c, %D, %F, %x | |
* |
<?php | |
/** | |
* Prepends a leading slash. | |
* | |
* Will remove leading forward and backslashes if it exists already before adding | |
* a leading forward slash. This prevents double slashing a string or path. | |
* | |
* The primary use of this is for paths and thus should be used for paths. It is | |
* not restricted to paths and offers no specific path support. |
<?php | |
if ( ! function_exists('get_ID_by_path') ) : | |
/** | |
* Retrieves an ID given its path. | |
* | |
* @global $wpdb | |
* | |
* @param string $page_path Page path |
<?php | |
/** | |
* File: Sort posts in alphabetical order, ignoring initial articles. | |
* | |
* This condition is achieved using the `post_fields` and `posts_orderby` | |
* filters. The implementer must provide their own list of definite and | |
* indefinite articles for the hooks to ignore. | |
* | |
* To enable natural language sorting, pass the following Query parameter: |
<?php | |
if (!function_exists('array_group_by')) { | |
/** | |
* Groups an array by a given key. | |
* | |
* Groups an array into arrays by a given key, or set of keys, shared between all array members. | |
* | |
* Based on {@author Jake Zatecky}'s {@link https://github.com/jakezatecky/array_group_by array_group_by()} function. | |
* This variant allows $key to be closures. |