@@ -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 | |
@@ -97,6 +104,9 @@ discard block |
||
97 | 104 | return array( $chunk_count, true ); |
98 | 105 | } |
99 | 106 | |
107 | + /** |
|
108 | + * @param string $meta_type |
|
109 | + */ |
|
100 | 110 | protected function get_metadata( $ids, $meta_type, $meta_key_whitelist ) { |
101 | 111 | global $wpdb; |
102 | 112 | $table = _get_meta_table( $meta_type ); |
@@ -117,12 +127,18 @@ discard block |
||
117 | 127 | ); |
118 | 128 | } |
119 | 129 | |
130 | + /** |
|
131 | + * @param string $meta_type |
|
132 | + */ |
|
120 | 133 | public function init_listeners_for_meta_type( $meta_type, $callable ) { |
121 | 134 | add_action( "added_{$meta_type}_meta", $callable, 10, 4 ); |
122 | 135 | add_action( "updated_{$meta_type}_meta", $callable, 10, 4 ); |
123 | 136 | add_action( "deleted_{$meta_type}_meta", $callable, 10, 4 ); |
124 | 137 | } |
125 | 138 | |
139 | + /** |
|
140 | + * @param string $meta_type |
|
141 | + */ |
|
126 | 142 | public function init_meta_whitelist_handler( $meta_type, $whitelist_handler ) { |
127 | 143 | add_filter( "jetpack_sync_before_enqueue_added_{$meta_type}_meta", $whitelist_handler ); |
128 | 144 | add_filter( "jetpack_sync_before_enqueue_updated_{$meta_type}_meta", $whitelist_handler ); |