-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathAdmin.php
185 lines (164 loc) · 5.12 KB
/
Admin.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
177
178
179
180
181
182
183
184
185
<?php
/**
* Cue administration.
*
* @package Cue
* @copyright Copyright (c) 2014, AudioTheme, LLC
* @license GPL-2.0+
* @since 1.0.0
*/
/**
* Plugin administration setup class.
*
* @package Cue
* @since 1.0.0
*/
class Cue_Admin extends Cue_AbstractProvider {
/**
* Load administration functionality.
*
* @since 1.0.0
*/
public function register_hooks() {
// @todo Most of these should be moved to the Media provider.
add_filter( 'widget_types_to_hide_from_legacy_widget_block', array( $this, 'hide_legacy_widget' ) );
add_action( 'wp_enqueue_media', array( $this, 'enqueue_assets' ) );
add_action( 'admin_head', array( $this, 'admin_head' ) );
add_action( 'admin_footer', array( $this, 'print_templates' ) );
add_filter( 'wp_prepare_attachment_for_js', array( $this, 'prepare_audio_attachment_for_js' ), 20, 3 );
add_filter( 'wp_prepare_attachment_for_js', array( $this, 'prepare_image_attachment_for_js' ), 20, 3 );
}
/**
* Hide the legacy widget in WordPress 5.8+.
*
* @since 2.4.2
*
* @param array $widget_types Array of widget types to hide.
* @return array
*/
public function hide_legacy_widget( $widget_types ) {
$widget_types[] = 'cue-playlist';
return $widget_types;
}
/**
* Enqueue a script for rendering the Cue shortcode in the editor.
*
* @since 1.2.9
*
* @param string $hook_suffix The current admin page.
*/
public function enqueue_assets( $hook_suffix ) {
wp_enqueue_script(
'cue-mce-view',
$this->plugin->get_url( 'admin/assets/js/mce-view.js' ),
array( 'jquery', 'mce-view', 'underscore' ),
'20171219',
true
);
wp_localize_script( 'cue-mce-view', '_cueMceView', array(
'parseNonce' => wp_create_nonce( 'cue_parse_shortcode' ),
) );
wp_enqueue_script(
'cue-media',
$this->plugin->get_url( 'admin/assets/js/wp-media.bundle.js' ),
array( 'media-views', 'wp-backbone', 'wp-util' ),
'20171219',
true
);
wp_localize_script( 'cue-media', '_cueMediaSettings', array(
'l10n' => array(
'insertFromCue' => esc_html__( 'Insert from Cue', 'cue' ),
'insertPlaylist' => esc_html__( 'Insert Playlist', 'cue' ),
),
) );
wp_enqueue_style(
'cue-media',
$this->plugin->get_url( 'admin/assets/css/wp-media.min.css' )
);
}
/**
* Global admin CSS.
*
* @since 1.0.0
*/
public function admin_head() {
?>
<style type="text/css">
#adminmenu #menu-posts-cue_playlist div.wp-menu-image.svg { background-position: 50% 7px;}
</style>
<?php
}
/**
* Include the HTML templates.
*
* @since 2.2.0
*/
public function print_templates() {
$screen_ids = array( 'post', 'widgets' );
if ( ! in_array( get_current_screen()->base, $screen_ids, true ) ) {
return;
}
include( $this->plugin->get_path( 'admin/views/templates-media.php' ) );
}
/**
* Prepare an audio attachment for JavaScript.
*
* Filters the core method and inserts data using 'cue' as the top level key.
*
* @since 1.0.0
*
* @param array $response Response data.
* @param WP_Post $attachment Attachment object.
* @param array $meta Attachment metadata.
* @return array
*/
public function prepare_audio_attachment_for_js( $response, $attachment, $meta ) {
if ( 'audio' !== $response['type'] ) {
return $response;
}
$data = array();
// Fall back to the attachment title if the audio meta doesn't have one.
$data['title'] = empty( $meta['title'] ) ? $response['title'] : $meta['title'];
$data['artist'] = empty( $meta['artist'] ) ? '' : $meta['artist'];
$data['audioId'] = $attachment->ID;
$data['audioUrl'] = $response['url'];
$data['format'] = empty( $meta['dataformat'] ) ? '' : $meta['dataformat'];
$data['length'] = empty( $response['fileLength'] ) ? '' : $response['fileLength'];
$data['length'] = empty( $data['length'] ) && ! empty( $meta['length_formatted'] ) ? $meta['length_formatted'] : $data['length'];
if ( has_post_thumbnail( $attachment->ID ) ) {
$thumbnail_id = get_post_thumbnail_id( $attachment->ID );
$size = apply_filters( 'cue_artwork_size', array( 300, 300 ) );
$image = image_downsize( $thumbnail_id, $size );
$data['artworkId'] = $thumbnail_id;
$data['artworkUrl'] = $image[0];
}
$response['cue'] = $data;
return $response;
}
/**
* Prepare an image attachment for JavaScript.
*
* Adds an image size to use for artwork.
*
* @since 1.0.0
*
* @param array $response Response data.
* @param WP_Post $attachment Attachment object.
* @param array $meta Attachment metadata.
* @return array
*/
public function prepare_image_attachment_for_js( $response, $attachment, $meta ) {
if ( 'image' !== $response['type'] ) {
return $response;
}
$size = apply_filters( 'cue_artwork_size', array( 300, 300 ) );
$image = image_downsize( $attachment->ID, $size );
$response['sizes']['cue'] = array(
'height' => $image[2],
'width' => $image[1],
'url' => $image[0],
'orientation' => $image[2] > $image[1] ? 'portrait' : 'landscape',
);
return $response;
}
}