@@ -42,6 +42,9 @@ discard block |
||
42 | 42 | return array(); |
43 | 43 | } |
44 | 44 | |
45 | + /** |
|
46 | + * @param string[] $actions_to_count |
|
47 | + */ |
|
45 | 48 | protected function count_actions( $action_names, $actions_to_count ) { |
46 | 49 | return count( array_intersect( $action_names, $actions_to_count ) ); |
47 | 50 | } |
@@ -58,6 +61,10 @@ discard block |
||
58 | 61 | return false; |
59 | 62 | } |
60 | 63 | |
64 | + /** |
|
65 | + * @param string $action_name |
|
66 | + * @param string $id_field |
|
67 | + */ |
|
61 | 68 | protected function enqueue_all_ids_as_action( $action_name, $table_name, $id_field, $where_sql, $max_items_to_enqueue, $state ) { |
62 | 69 | global $wpdb; |
63 | 70 | |
@@ -109,6 +116,9 @@ discard block |
||
109 | 116 | return $chunks_with_endpoints; |
110 | 117 | } |
111 | 118 | |
119 | + /** |
|
120 | + * @param string $meta_type |
|
121 | + */ |
|
112 | 122 | protected function get_metadata( $ids, $meta_type, $meta_key_whitelist ) { |
113 | 123 | global $wpdb; |
114 | 124 | $table = _get_meta_table( $meta_type ); |
@@ -129,12 +139,18 @@ discard block |
||
129 | 139 | ); |
130 | 140 | } |
131 | 141 | |
142 | + /** |
|
143 | + * @param string $meta_type |
|
144 | + */ |
|
132 | 145 | public function init_listeners_for_meta_type( $meta_type, $callable ) { |
133 | 146 | add_action( "added_{$meta_type}_meta", $callable, 10, 4 ); |
134 | 147 | add_action( "updated_{$meta_type}_meta", $callable, 10, 4 ); |
135 | 148 | add_action( "deleted_{$meta_type}_meta", $callable, 10, 4 ); |
136 | 149 | } |
137 | 150 | |
151 | + /** |
|
152 | + * @param string $meta_type |
|
153 | + */ |
|
138 | 154 | public function init_meta_whitelist_handler( $meta_type, $whitelist_handler ) { |
139 | 155 | add_filter( "jetpack_sync_before_enqueue_added_{$meta_type}_meta", $whitelist_handler ); |
140 | 156 | add_filter( "jetpack_sync_before_enqueue_updated_{$meta_type}_meta", $whitelist_handler ); |