forked from scribu/wp-scb-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUtil.php
177 lines (132 loc) · 4.64 KB
/
Util.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
<?php
class scbUtil {
// Force script enqueue
static function do_scripts( $handles ) {
global $wp_scripts;
if ( ! is_a( $wp_scripts, 'WP_Scripts' ) )
$wp_scripts = new WP_Scripts();
$wp_scripts->do_items( ( array ) $handles );
}
// Force style enqueue
static function do_styles( $handles ) {
self::do_scripts( 'jquery' );
global $wp_styles;
if ( ! is_a( $wp_styles, 'WP_Styles' ) )
$wp_styles = new WP_Styles();
ob_start();
$wp_styles->do_items( ( array ) $handles );
$content = str_replace( array( '"', "\n" ), array( "'", '' ), ob_get_clean() );
echo "<script type='text/javascript'>\n";
echo "jQuery( document ).ready( function( $ ) {\n";
echo "$( 'head' ).prepend( \"$content\" );\n";
echo "} );\n";
echo "</script>";
}
// Enable delayed activation ( to be used with scb_init() )
static function add_activation_hook( $plugin, $callback ) {
if ( defined( 'SCB_LOAD_MU' ) )
register_activation_hook( $plugin, $callback );
else
add_action( 'scb_activation_' . plugin_basename( $plugin ), $callback );
}
// Have more than one uninstall hooks; also prevents an UPDATE query on each page load
static function add_uninstall_hook( $plugin, $callback ) {
register_uninstall_hook( $plugin, '__return_false' ); // dummy
add_action( 'uninstall_' . plugin_basename( $plugin ), $callback );
}
// Get the current, full URL
static function get_current_url() {
return ( is_ssl() ? 'https://' : 'http://' ) . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
}
// Apply a function to each element of a ( nested ) array recursively
static function array_map_recursive( $callback, $array ) {
array_walk_recursive( $array, array( __CLASS__, 'array_map_recursive_helper' ), $callback );
return $array;
}
static function array_map_recursive_helper( &$val, $key, $callback ) {
$val = call_user_func( $callback, $val );
}
// Extract certain $keys from $array
static function array_extract( $array, $keys ) {
_deprecated_function( 'scbUtil::array_extract', '3.1', 'wp_array_slice_assoc()' );
return wp_array_slice_assoc( $array, $keys );
}
// Extract a certain value from a list of arrays
static function array_pluck( $array, $key ) {
_deprecated_function( 'scbUtil::array_pluck', '3.1', 'wp_list_pluck()' );
return wp_list_pluck( $array, $key );
}
// Transform a list of objects into an associative array
static function objects_to_assoc( $objects, $key, $value ) {
$r = array();
foreach ( $objects as $obj )
$r[$obj->$key] = $obj->$value;
return $r;
}
// Prepare an array for an IN statement
static function array_to_sql( $values ) {
foreach ( $values as &$val )
$val = "'" . esc_sql( trim( $val ) ) . "'";
return implode( ',', $values );
}
// Example: split_at( '</', '<a></a>' ) => array( '<a>', '</a>' )
static function split_at( $delim, $str ) {
$i = strpos( $str, $delim );
if ( false === $i )
return false;
$start = substr( $str, 0, $i );
$finish = substr( $str, $i );
return array( $start, $finish );
}
}
//_____Minimalist HTML framework_____
/*
* Examples:
*
* html( 'p', 'Hello world!' ); <p>Hello world!</p>
* html( 'a', array( 'href' => 'http://example.com' ), 'A link' ); <a href="http://example.com">A link</a>
* html( 'img', array( 'src' => 'http://example.com/f.jpg' ) ); <img src="http://example.com/f.jpg" />
* html( 'ul', html( 'li', 'a' ), html( 'li', 'b' ) ); <ul><li>a</li><li>b</li></ul>
*/
if ( ! function_exists( 'html' ) ):
function html( $tag ) {
$args = func_get_args();
$tag = array_shift( $args );
if ( is_array( $args[0] ) ) {
$closing = $tag;
$attributes = array_shift( $args );
foreach ( $attributes as $key => $value ) {
if ( false === $value )
continue;
if ( true === $value )
$value = $key;
$tag .= ' ' . $key . '="' . esc_attr( $value ) . '"';
}
} else {
list( $closing ) = explode( ' ', $tag, 2 );
}
if ( in_array( $closing, array( 'area', 'base', 'basefont', 'br', 'hr', 'input', 'img', 'link', 'meta' ) ) ) {
return "<{$tag} />";
}
$content = implode( '', $args );
return "<{$tag}>{$content}</{$closing}>";
}
endif;
// Generate an <a> tag
if ( ! function_exists( 'html_link' ) ):
function html_link( $url, $title = '' ) {
if ( empty( $title ) )
$title = $url;
return sprintf( "<a href='%s'>%s</a>", esc_url( $url ), $title );
}
endif;
//_____Compatibility layer_____
// WP < ?
if ( ! function_exists( 'set_post_field' ) ) :
function set_post_field( $field, $value, $post_id ) {
global $wpdb;
$post_id = absint( $post_id );
$value = sanitize_post_field( $field, $value, $post_id, 'db' );
return $wpdb->update( $wpdb->posts, array( $field => $value ), array( 'ID' => $post_id ) );
}
endif;