]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-admin/custom-background.php
WordPress 3.9.2-scripts
[autoinstalls/wordpress.git] / wp-admin / custom-background.php
1 <?php
2 /**
3  * The custom background script.
4  *
5  * @package WordPress
6  * @subpackage Administration
7  */
8
9 /**
10  * The custom background class.
11  *
12  * @since 3.0.0
13  * @package WordPress
14  * @subpackage Administration
15  */
16 class Custom_Background {
17
18         /**
19          * Callback for administration header.
20          *
21          * @var callback
22          * @since 3.0.0
23          * @access private
24          */
25         var $admin_header_callback;
26
27         /**
28          * Callback for header div.
29          *
30          * @var callback
31          * @since 3.0.0
32          * @access private
33          */
34         var $admin_image_div_callback;
35
36         /**
37          * Holds the page menu hook.
38          *
39          * @var string
40          * @since 3.0.0
41          * @access private
42          */
43         var $page = '';
44
45         /**
46          * Constructor - Register administration header callback.
47          *
48          * @since 3.0.0
49          * @param callback $admin_header_callback
50          * @param callback $admin_image_div_callback Optional custom image div output callback.
51          * @return Custom_Background
52          */
53         function __construct($admin_header_callback = '', $admin_image_div_callback = '') {
54                 $this->admin_header_callback = $admin_header_callback;
55                 $this->admin_image_div_callback = $admin_image_div_callback;
56
57                 add_action( 'admin_menu', array( $this, 'init' ) );
58                 add_action( 'wp_ajax_set-background-image', array( $this, 'wp_set_background_image' ) );
59         }
60
61         /**
62          * Set up the hooks for the Custom Background admin page.
63          *
64          * @since 3.0.0
65          */
66         function init() {
67                 if ( ! current_user_can('edit_theme_options') )
68                         return;
69
70                 $this->page = $page = add_theme_page(__('Background'), __('Background'), 'edit_theme_options', 'custom-background', array($this, 'admin_page'));
71
72                 add_action("load-$page", array($this, 'admin_load'));
73                 add_action("load-$page", array($this, 'take_action'), 49);
74                 add_action("load-$page", array($this, 'handle_upload'), 49);
75
76                 if ( $this->admin_header_callback )
77                         add_action("admin_head-$page", $this->admin_header_callback, 51);
78         }
79
80         /**
81          * Set up the enqueue for the CSS & JavaScript files.
82          *
83          * @since 3.0.0
84          */
85         function admin_load() {
86                 get_current_screen()->add_help_tab( array(
87                         'id'      => 'overview',
88                         'title'   => __('Overview'),
89                         'content' =>
90                                 '<p>' . __( 'You can customize the look of your site without touching any of your theme&#8217;s code by using a custom background. Your background can be an image or a color.' ) . '</p>' .
91                                 '<p>' . __( 'To use a background image, simply upload it or choose an image that has already been uploaded to your Media Library by clicking the &#8220;Choose Image&#8221; button. You can display a single instance of your image, or tile it to fill the screen. You can have your background fixed in place, so your site content moves on top of it, or you can have it scroll with your site.' ) . '</p>' .
92                                 '<p>' . __( 'You can also choose a background color by clicking the Select Color button and either typing in a legitimate HTML hex value, e.g. &#8220;#ff0000&#8221; for red, or by choosing a color using the color picker.' ) . '</p>' .
93                                 '<p>' . __( 'Don&#8217;t forget to click on the Save Changes button when you are finished.' ) . '</p>'
94                 ) );
95
96                 get_current_screen()->set_help_sidebar(
97                         '<p><strong>' . __( 'For more information:' ) . '</strong></p>' .
98                         '<p>' . __( '<a href="http://codex.wordpress.org/Appearance_Background_Screen" target="_blank">Documentation on Custom Background</a>' ) . '</p>' .
99                         '<p>' . __( '<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>' ) . '</p>'
100                 );
101
102                 wp_enqueue_media();
103                 wp_enqueue_script('custom-background');
104                 wp_enqueue_style('wp-color-picker');
105         }
106
107         /**
108          * Execute custom background modification.
109          *
110          * @since 3.0.0
111          */
112         function take_action() {
113
114                 if ( empty($_POST) )
115                         return;
116
117                 if ( isset($_POST['reset-background']) ) {
118                         check_admin_referer('custom-background-reset', '_wpnonce-custom-background-reset');
119                         remove_theme_mod('background_image');
120                         remove_theme_mod('background_image_thumb');
121                         $this->updated = true;
122                         return;
123                 }
124
125                 if ( isset($_POST['remove-background']) ) {
126                         // @TODO: Uploaded files are not removed here.
127                         check_admin_referer('custom-background-remove', '_wpnonce-custom-background-remove');
128                         set_theme_mod('background_image', '');
129                         set_theme_mod('background_image_thumb', '');
130                         $this->updated = true;
131                         wp_safe_redirect( $_POST['_wp_http_referer'] );
132                         return;
133                 }
134
135                 if ( isset($_POST['background-repeat']) ) {
136                         check_admin_referer('custom-background');
137                         if ( in_array($_POST['background-repeat'], array('repeat', 'no-repeat', 'repeat-x', 'repeat-y')) )
138                                 $repeat = $_POST['background-repeat'];
139                         else
140                                 $repeat = 'repeat';
141                         set_theme_mod('background_repeat', $repeat);
142                 }
143
144                 if ( isset($_POST['background-position-x']) ) {
145                         check_admin_referer('custom-background');
146                         if ( in_array($_POST['background-position-x'], array('center', 'right', 'left')) )
147                                 $position = $_POST['background-position-x'];
148                         else
149                                 $position = 'left';
150                         set_theme_mod('background_position_x', $position);
151                 }
152
153                 if ( isset($_POST['background-attachment']) ) {
154                         check_admin_referer('custom-background');
155                         if ( in_array($_POST['background-attachment'], array('fixed', 'scroll')) )
156                                 $attachment = $_POST['background-attachment'];
157                         else
158                                 $attachment = 'fixed';
159                         set_theme_mod('background_attachment', $attachment);
160                 }
161
162                 if ( isset($_POST['background-color']) ) {
163                         check_admin_referer('custom-background');
164                         $color = preg_replace('/[^0-9a-fA-F]/', '', $_POST['background-color']);
165                         if ( strlen($color) == 6 || strlen($color) == 3 )
166                                 set_theme_mod('background_color', $color);
167                         else
168                                 set_theme_mod('background_color', '');
169                 }
170
171                 $this->updated = true;
172         }
173
174         /**
175          * Display the custom background page.
176          *
177          * @since 3.0.0
178          */
179         function admin_page() {
180 ?>
181 <div class="wrap" id="custom-background">
182 <h2><?php _e( 'Custom Background' ); ?></h2>
183
184 <?php if ( ! empty( $this->updated ) ) { ?>
185 <div id="message" class="updated">
186 <p><?php printf( __( 'Background updated. <a href="%s">Visit your site</a> to see how it looks.' ), home_url( '/' ) ); ?></p>
187 </div>
188 <?php } ?>
189
190 <h3><?php _e( 'Background Image' ); ?></h3>
191
192 <table class="form-table">
193 <tbody>
194 <tr>
195 <th scope="row"><?php _e( 'Preview' ); ?></th>
196 <td>
197         <?php
198         if ( $this->admin_image_div_callback ) {
199                 call_user_func( $this->admin_image_div_callback );
200         } else {
201                 $background_styles = '';
202                 if ( $bgcolor = get_background_color() )
203                         $background_styles .= 'background-color: #' . $bgcolor . ';';
204
205                 if ( get_background_image() ) {
206                         $background_image_thumb = esc_url( set_url_scheme( get_theme_mod( 'background_image_thumb', str_replace( '%', '%%', get_background_image() ) ) ) );
207                         // background-image URL must be single quote, see below
208                         $background_styles .= ' background-image: url(\'' . $background_image_thumb . '\');'
209                                 . ' background-repeat: ' . get_theme_mod( 'background_repeat', get_theme_support( 'custom-background', 'default-repeat' ) ) . ';'
210                                 . ' background-position: top ' . get_theme_mod( 'background_position_x', get_theme_support( 'custom-background', 'default-position-x' ) );
211                 }
212         ?>
213         <div id="custom-background-image" style="<?php echo $background_styles; ?>"><?php // must be double quote, see above ?>
214                 <?php if ( get_background_image() ) { ?>
215                 <img class="custom-background-image" src="<?php echo $background_image_thumb; ?>" style="visibility:hidden;" alt="" /><br />
216                 <img class="custom-background-image" src="<?php echo $background_image_thumb; ?>" style="visibility:hidden;" alt="" />
217                 <?php } ?>
218         </div>
219         <?php } ?>
220 </td>
221 </tr>
222
223 <?php if ( get_background_image() ) : ?>
224 <tr>
225 <th scope="row"><?php _e('Remove Image'); ?></th>
226 <td>
227 <form method="post" action="">
228 <?php wp_nonce_field('custom-background-remove', '_wpnonce-custom-background-remove'); ?>
229 <?php submit_button( __( 'Remove Background Image' ), 'button', 'remove-background', false ); ?><br/>
230 <?php _e('This will remove the background image. You will not be able to restore any customizations.') ?>
231 </form>
232 </td>
233 </tr>
234 <?php endif; ?>
235
236 <?php $default_image = get_theme_support( 'custom-background', 'default-image' ); ?>
237 <?php if ( $default_image && get_background_image() != $default_image ) : ?>
238 <tr>
239 <th scope="row"><?php _e('Restore Original Image'); ?></th>
240 <td>
241 <form method="post" action="">
242 <?php wp_nonce_field('custom-background-reset', '_wpnonce-custom-background-reset'); ?>
243 <?php submit_button( __( 'Restore Original Image' ), 'button', 'reset-background', false ); ?><br/>
244 <?php _e('This will restore the original background image. You will not be able to restore any customizations.') ?>
245 </form>
246 </td>
247 </tr>
248 <?php endif; ?>
249
250 <tr>
251 <th scope="row"><?php _e('Select Image'); ?></th>
252 <td><form enctype="multipart/form-data" id="upload-form" class="wp-upload-form" method="post" action="">
253         <p>
254                 <label for="upload"><?php _e( 'Choose an image from your computer:' ); ?></label><br />
255                 <input type="file" id="upload" name="import" />
256                 <input type="hidden" name="action" value="save" />
257                 <?php wp_nonce_field( 'custom-background-upload', '_wpnonce-custom-background-upload' ); ?>
258                 <?php submit_button( __( 'Upload' ), 'button', 'submit', false ); ?>
259         </p>
260         <p>
261                 <label for="choose-from-library-link"><?php _e( 'Or choose an image from your media library:' ); ?></label><br />
262                 <a id="choose-from-library-link" class="button"
263                         data-choose="<?php esc_attr_e( 'Choose a Background Image' ); ?>"
264                         data-update="<?php esc_attr_e( 'Set as background' ); ?>"><?php _e( 'Choose Image' ); ?></a>
265         </p>
266         </form>
267 </td>
268 </tr>
269 </tbody>
270 </table>
271
272 <h3><?php _e('Display Options') ?></h3>
273 <form method="post" action="">
274 <table class="form-table">
275 <tbody>
276 <?php if ( get_background_image() ) : ?>
277 <tr>
278 <th scope="row"><?php _e( 'Position' ); ?></th>
279 <td><fieldset><legend class="screen-reader-text"><span><?php _e( 'Background Position' ); ?></span></legend>
280 <label>
281 <input name="background-position-x" type="radio" value="left"<?php checked( 'left', get_theme_mod( 'background_position_x', get_theme_support( 'custom-background', 'default-position-x' ) ) ); ?> />
282 <?php _e('Left') ?>
283 </label>
284 <label>
285 <input name="background-position-x" type="radio" value="center"<?php checked( 'center', get_theme_mod( 'background_position_x', get_theme_support( 'custom-background', 'default-position-x' ) ) ); ?> />
286 <?php _e('Center') ?>
287 </label>
288 <label>
289 <input name="background-position-x" type="radio" value="right"<?php checked( 'right', get_theme_mod( 'background_position_x', get_theme_support( 'custom-background', 'default-position-x' ) ) ); ?> />
290 <?php _e('Right') ?>
291 </label>
292 </fieldset></td>
293 </tr>
294
295 <tr>
296 <th scope="row"><?php _e( 'Repeat' ); ?></th>
297 <td><fieldset><legend class="screen-reader-text"><span><?php _e( 'Background Repeat' ); ?></span></legend>
298 <label><input type="radio" name="background-repeat" value="no-repeat"<?php checked( 'no-repeat', get_theme_mod( 'background_repeat', get_theme_support( 'custom-background', 'default-repeat' ) ) ); ?> /> <?php _e('No Repeat'); ?></label>
299         <label><input type="radio" name="background-repeat" value="repeat"<?php checked( 'repeat', get_theme_mod( 'background_repeat', get_theme_support( 'custom-background', 'default-repeat' ) ) ); ?> /> <?php _e('Tile'); ?></label>
300         <label><input type="radio" name="background-repeat" value="repeat-x"<?php checked( 'repeat-x', get_theme_mod( 'background_repeat', get_theme_support( 'custom-background', 'default-repeat' ) ) ); ?> /> <?php _e('Tile Horizontally'); ?></label>
301         <label><input type="radio" name="background-repeat" value="repeat-y"<?php checked( 'repeat-y', get_theme_mod( 'background_repeat', get_theme_support( 'custom-background', 'default-repeat' ) ) ); ?> /> <?php _e('Tile Vertically'); ?></label>
302 </fieldset></td>
303 </tr>
304
305 <tr>
306 <th scope="row"><?php _ex( 'Attachment', 'Background Attachment' ); ?></th>
307 <td><fieldset><legend class="screen-reader-text"><span><?php _e( 'Background Attachment' ); ?></span></legend>
308 <label>
309 <input name="background-attachment" type="radio" value="scroll" <?php checked( 'scroll', get_theme_mod( 'background_attachment', get_theme_support( 'custom-background', 'default-attachment' ) ) ); ?> />
310 <?php _e( 'Scroll' ); ?>
311 </label>
312 <label>
313 <input name="background-attachment" type="radio" value="fixed" <?php checked( 'fixed', get_theme_mod( 'background_attachment', get_theme_support( 'custom-background', 'default-attachment' ) ) ); ?> />
314 <?php _e( 'Fixed' ); ?>
315 </label>
316 </fieldset></td>
317 </tr>
318 <?php endif; // get_background_image() ?>
319 <tr>
320 <th scope="row"><?php _e( 'Background Color' ); ?></th>
321 <td><fieldset><legend class="screen-reader-text"><span><?php _e( 'Background Color' ); ?></span></legend>
322 <?php
323 $default_color = '';
324 if ( current_theme_supports( 'custom-background', 'default-color' ) )
325         $default_color = ' data-default-color="#' . esc_attr( get_theme_support( 'custom-background', 'default-color' ) ) . '"';
326 ?>
327 <input type="text" name="background-color" id="background-color" value="#<?php echo esc_attr( get_background_color() ); ?>"<?php echo $default_color ?> />
328 </fieldset></td>
329 </tr>
330 </tbody>
331 </table>
332
333 <?php wp_nonce_field('custom-background'); ?>
334 <?php submit_button( null, 'primary', 'save-background-options' ); ?>
335 </form>
336
337 </div>
338 <?php
339         }
340
341         /**
342          * Handle an Image upload for the background image.
343          *
344          * @since 3.0.0
345          */
346         function handle_upload() {
347
348                 if ( empty($_FILES) )
349                         return;
350
351                 check_admin_referer('custom-background-upload', '_wpnonce-custom-background-upload');
352                 $overrides = array('test_form' => false);
353
354                 $uploaded_file = $_FILES['import'];
355                 $wp_filetype = wp_check_filetype_and_ext( $uploaded_file['tmp_name'], $uploaded_file['name'], false );
356                 if ( ! wp_match_mime_types( 'image', $wp_filetype['type'] ) )
357                         wp_die( __( 'The uploaded file is not a valid image. Please try again.' ) );
358
359                 $file = wp_handle_upload($uploaded_file, $overrides);
360
361                 if ( isset($file['error']) )
362                         wp_die( $file['error'] );
363
364                 $url = $file['url'];
365                 $type = $file['type'];
366                 $file = $file['file'];
367                 $filename = basename($file);
368
369                 // Construct the object array
370                 $object = array(
371                         'post_title' => $filename,
372                         'post_content' => $url,
373                         'post_mime_type' => $type,
374                         'guid' => $url,
375                         'context' => 'custom-background'
376                 );
377
378                 // Save the data
379                 $id = wp_insert_attachment($object, $file);
380
381                 // Add the meta-data
382                 wp_update_attachment_metadata( $id, wp_generate_attachment_metadata( $id, $file ) );
383                 update_post_meta( $id, '_wp_attachment_is_custom_background', get_option('stylesheet' ) );
384
385                 set_theme_mod('background_image', esc_url_raw($url));
386
387                 $thumbnail = wp_get_attachment_image_src( $id, 'thumbnail' );
388                 set_theme_mod('background_image_thumb', esc_url_raw( $thumbnail[0] ) );
389
390                 /** This action is documented in wp-admin/custom-header.php */
391                 do_action( 'wp_create_file_in_uploads', $file, $id ); // For replication
392                 $this->updated = true;
393         }
394
395         /**
396          * Unused since 3.5.0.
397          *
398          * @since 3.4.0
399          */
400         function attachment_fields_to_edit( $form_fields ) {
401                 return $form_fields;
402         }
403
404         /**
405          * Unused since 3.5.0.
406          *
407          * @since 3.4.0
408          */
409         function filter_upload_tabs( $tabs ) {
410                 return $tabs;
411         }
412
413         public function wp_set_background_image() {
414                 if ( ! current_user_can('edit_theme_options') || ! isset( $_POST['attachment_id'] ) ) exit;
415                 $attachment_id = absint($_POST['attachment_id']);
416                 /** This filter is documented in wp-admin/includes/media.php */
417                 $sizes = array_keys(apply_filters( 'image_size_names_choose', array('thumbnail' => __('Thumbnail'), 'medium' => __('Medium'), 'large' => __('Large'), 'full' => __('Full Size')) ));
418                 $size = 'thumbnail';
419                 if ( in_array( $_POST['size'], $sizes ) )
420                         $size = esc_attr( $_POST['size'] );
421
422                 update_post_meta( $attachment_id, '_wp_attachment_is_custom_background', get_option('stylesheet' ) );
423                 $url = wp_get_attachment_image_src( $attachment_id, $size );
424                 $thumbnail = wp_get_attachment_image_src( $attachment_id, 'thumbnail' );
425                 set_theme_mod( 'background_image', esc_url_raw( $url[0] ) );
426                 set_theme_mod( 'background_image_thumb', esc_url_raw( $thumbnail[0] ) );
427                 exit;
428         }
429 }