3
* Press This Display and Handler.
6
* @subpackage Press_This
9
define('IFRAME_REQUEST' , true);
11
/** WordPress Administration Bootstrap */
12
require_once( dirname( __FILE__ ) . '/admin.php' );
14
header('Content-Type: ' . get_option('html_type') . '; charset=' . get_option('blog_charset'));
16
if ( ! current_user_can( 'edit_posts' ) || ! current_user_can( get_post_type_object( 'post' )->cap->create_posts ) )
17
wp_die( __( 'Cheatin’ uh?' ) );
20
* Press It form handler.
28
$post = get_default_post_to_edit();
29
$post = get_object_vars($post);
30
$post_ID = $post['ID'] = (int) $_POST['post_id'];
32
if ( !current_user_can('edit_post', $post_ID) )
33
wp_die(__('You are not allowed to edit this post.'));
35
$post['post_category'] = isset($_POST['post_category']) ? $_POST['post_category'] : '';
36
$post['tax_input'] = isset($_POST['tax_input']) ? $_POST['tax_input'] : '';
37
$post['post_title'] = isset($_POST['title']) ? $_POST['title'] : '';
38
$content = isset($_POST['content']) ? $_POST['content'] : '';
41
if ( !empty($_POST['photo_src']) && current_user_can('upload_files') ) {
42
foreach( (array) $_POST['photo_src'] as $key => $image) {
43
// See if files exist in content - we don't want to upload non-used selected files.
44
if ( strpos($_POST['content'], htmlspecialchars($image)) !== false ) {
45
$desc = isset($_POST['photo_description'][$key]) ? $_POST['photo_description'][$key] : '';
46
$upload = media_sideload_image($image, $post_ID, $desc);
48
// Replace the POSTED content <img> with correct uploaded ones. Regex contains fix for Magic Quotes
49
if ( !is_wp_error($upload) )
50
$content = preg_replace('/<img ([^>]*)src=\\\?(\"|\')'.preg_quote(htmlspecialchars($image), '/').'\\\?(\2)([^>\/]*)\/*>/is', $upload, $content);
54
// Set the post_content and status.
55
$post['post_content'] = $content;
56
if ( isset( $_POST['publish'] ) && current_user_can( 'publish_posts' ) )
57
$post['post_status'] = 'publish';
58
elseif ( isset( $_POST['review'] ) )
59
$post['post_status'] = 'pending';
61
$post['post_status'] = 'draft';
63
// Error handling for media_sideload.
64
if ( is_wp_error($upload) ) {
65
wp_delete_post($post_ID);
66
wp_die( esc_html( $upload->get_error_message() ) );
69
if ( isset( $_POST['post_format'] ) ) {
70
if ( current_theme_supports( 'post-formats', $_POST['post_format'] ) )
71
set_post_format( $post_ID, $_POST['post_format'] );
72
elseif ( '0' == $_POST['post_format'] )
73
set_post_format( $post_ID, false );
76
$post_ID = wp_update_post($post);
82
// For submitted posts.
83
if ( isset($_REQUEST['action']) && 'post' == $_REQUEST['action'] ) {
84
check_admin_referer('press-this');
85
$posted = $post_ID = press_it();
87
$post = get_default_post_to_edit('post', true);
92
$title = isset( $_GET['t'] ) ? trim( strip_tags( html_entity_decode( wp_unslash( $_GET['t'] ) , ENT_QUOTES) ) ) : '';
95
if ( !empty($_GET['s']) ) {
96
$selection = str_replace(''', "'", wp_unslash($_GET['s']));
97
$selection = trim( htmlspecialchars( html_entity_decode($selection, ENT_QUOTES) ) );
100
if ( ! empty($selection) ) {
101
$selection = preg_replace('/(\r?\n|\r)/', '</p><p>', $selection);
102
$selection = '<p>' . str_replace('<p></p>', '', $selection) . '</p>';
105
$url = isset($_GET['u']) ? esc_url($_GET['u']) : '';
106
$image = isset($_GET['i']) ? $_GET['i'] : '';
108
if ( !empty($_REQUEST['ajax']) ) {
109
switch ($_REQUEST['ajax']) {
111
<script type="text/javascript">
113
jQuery('.select').click(function() {
114
append_editor(jQuery('#embed-code').val());
115
jQuery('#extra-fields').hide();
116
jQuery('#extra-fields').html('');
118
jQuery('.close').click(function() {
119
jQuery('#extra-fields').hide();
120
jQuery('#extra-fields').html('');
124
<div class="postbox">
125
<h2><label for="embed-code"><?php _e('Embed Code') ?></label></h2>
127
<textarea name="embed-code" id="embed-code" rows="8" cols="40"><?php echo esc_textarea( $selection ); ?></textarea>
128
<p id="options"><a href="#" class="select button"><?php _e('Insert Video'); ?></a> <a href="#" class="close button"><?php _e('Cancel'); ?></a></p>
133
case 'photo_thickbox': ?>
134
<script type="text/javascript">
136
jQuery('.cancel').click(function() {
139
jQuery('.select').click(function() {
140
image_selector(this);
144
<h3 class="tb"><label for="tb_this_photo_description"><?php _e('Description') ?></label></h3>
145
<div class="titlediv">
146
<div class="titlewrap">
147
<input id="tb_this_photo_description" name="photo_description" class="tb_this_photo_description tbtitle text" type="text" onkeypress="if(event.keyCode==13) image_selector(this);" value="<?php echo esc_attr($title);?>"/>
152
<input type="hidden" name="this_photo" value="<?php echo esc_attr($image); ?>" id="tb_this_photo" class="tb_this_photo" />
153
<a href="#" class="select">
154
<img src="<?php echo esc_url($image); ?>" alt="<?php echo esc_attr(__('Click to insert.')); ?>" title="<?php echo esc_attr(__('Click to insert.')); ?>" />
158
<p id="options"><a href="#" class="select button"><?php _e('Insert Image'); ?></a> <a href="#" class="cancel button"><?php _e('Cancel'); ?></a></p>
162
* Retrieve all image URLs from given URI.
169
function get_images_from_uri($uri) {
170
$uri = preg_replace('/\/#.+?$/','', $uri);
171
if ( preg_match( '/\.(jpe?g|jpe|gif|png)\b/i', $uri ) && !strpos( $uri, 'blogger.com' ) )
172
return "'" . esc_attr( html_entity_decode($uri) ) . "'";
173
$content = wp_remote_fopen($uri);
174
if ( false === $content )
176
$host = parse_url($uri);
177
$pattern = '/<img ([^>]*)src=(\"|\')([^<>\'\"]+)(\2)([^>]*)\/*>/i';
178
$content = str_replace(array("\n","\t","\r"), '', $content);
179
preg_match_all($pattern, $content, $matches);
180
if ( empty($matches[0]) )
183
foreach ($matches[3] as $src) {
185
// If no http in URL.
186
if (strpos($src, 'http') === false)
187
// If it doesn't have a relative URI.
188
if ( strpos($src, '../') === false && strpos($src, './') === false && strpos($src, '/') === 0)
189
$src = 'http://'.str_replace('//','/', $host['host'].'/'.$src);
191
$src = 'http://'.str_replace('//','/', $host['host'].'/'.dirname($host['path']).'/'.$src);
192
$sources[] = esc_url($src);
194
return "'" . implode("','", $sources) . "'";
196
$url = wp_kses(urldecode($url), null);
197
echo 'new Array('.get_images_from_uri($url).')';
201
// Gather images and load some default JS.
203
var img, img_tag, aspect, w, h, skip, i, strtoappend = "";
204
if(photostorage == false) {
208
url: "<?php echo esc_url($_SERVER['PHP_SELF']); ?>",
211
data: "ajax=photo_images&u=<?php echo urlencode($url); ?>",
215
if(my_src.length == 0) {
219
url: "<?php echo esc_url($_SERVER['PHP_SELF']); ?>",
222
data: "ajax=photo_images&u=<?php echo urlencode($url); ?>",
226
if(my_src.length == 0) {
227
strtoappend = '<?php _e('Unable to retrieve images or no images on page.'); ?>';
231
for (i = 0; i < my_src.length; i++) {
234
img_attr = 'id="img' + i + '"';
237
maybeappend = '<a href="?ajax=photo_thickbox&i=' + encodeURIComponent(img.src) + '&u=<?php echo urlencode($url); ?>&height=400&width=500" title="" class="thickbox"><img src="' + img.src + '" ' + img_attr + '/></a>';
239
if (img.width && img.height) {
240
if (img.width >= 30 && img.height >= 30) {
241
aspect = img.width / img.height;
242
scale = (aspect > 1) ? (71 / img.width) : (71 / img.height);
248
w = parseInt(img.width * scale);
249
h = parseInt(img.height * scale);
251
img_attr += ' style="width: ' + w + 'px; height: ' + h + 'px;"';
252
strtoappend += maybeappend;
255
strtoappend += maybeappend;
259
function pick(img, desc) {
261
if('object' == typeof jQuery('.photolist input') && jQuery('.photolist input').length != 0) length = jQuery('.photolist input').length;
262
if(length == 0) length = 1;
263
jQuery('.photolist').append('<input name="photo_src[' + length + ']" value="' + img +'" type="hidden"/>');
264
jQuery('.photolist').append('<input name="photo_description[' + length + ']" value="' + desc +'" type="hidden"/>');
265
insert_editor( "\n\n" + encodeURI('<p style="text-align: center;"><a href="<?php echo $url; ?>"><img src="' + img +'" alt="' + desc + '" /></a></p>'));
270
function image_selector(el) {
271
var desc, src, parent = jQuery(el).closest('#photo-add-url-div');
273
if ( parent.length ) {
274
desc = parent.find('input.tb_this_photo_description').val() || '';
275
src = parent.find('input.tb_this_photo').val() || ''
277
desc = jQuery('#tb_this_photo_description').val() || '';
278
src = jQuery('#tb_this_photo').val() || ''
283
jQuery('#extra-fields').hide();
284
jQuery('#extra-fields').html('');
288
jQuery('#extra-fields').html('<div class="postbox"><h2><?php _e( 'Add Photos' ); ?> <small id="photo_directions">(<?php _e("click images to select") ?>)</small></h2><ul class="actions"><li><a href="#" id="photo-add-url" class="button button-small"><?php _e("Add from URL") ?> +</a></li></ul><div class="inside"><div class="titlewrap"><div id="img_container"></div></div><p id="options"><a href="#" class="close button"><?php _e('Cancel'); ?></a><a href="#" class="refresh button"><?php _e('Refresh'); ?></a></p></div>');
289
jQuery('#img_container').html(strtoappend);
295
wp_enqueue_style( 'colors' );
296
wp_enqueue_script( 'post' );
298
_wp_admin_html_begin();
300
<title><?php _e('Press This') ?></title>
301
<script type="text/javascript">
303
addLoadEvent = function(func){if(typeof jQuery!="undefined")jQuery(document).ready(func);else if(typeof wpOnload!='function'){wpOnload=func;}else{var oldonload=wpOnload;wpOnload=function(){oldonload();func();}}};
304
var ajaxurl = '<?php echo admin_url( 'admin-ajax.php', 'relative' ); ?>', pagenow = 'press-this', isRtl = <?php echo (int) is_rtl(); ?>;
305
var photostorage = false;
310
/** This action is documented in wp-admin/admin-header.php */
311
do_action( 'admin_enqueue_scripts', 'press-this.php' );
314
* Fires when styles are printed for the Press This admin page.
318
do_action( 'admin_print_styles-press-this.php' );
320
/** This action is documented in wp-admin/admin-header.php */
321
do_action( 'admin_print_styles' );
324
* Fires when scripts are printed for the Press This admin page.
328
do_action( 'admin_print_scripts-press-this.php' );
330
/** This action is documented in wp-admin/admin-header.php */
331
do_action( 'admin_print_scripts' );
334
* Fires in the head tag on the Press This admin page.
338
do_action( 'admin_head-press-this.php' );
340
/** This action is documented in wp-admin/admin-header.php */
341
do_action( 'admin_head' );
343
<script type="text/javascript">
344
var wpActiveEditor = 'content';
346
function insert_plain_editor(text) {
347
if ( typeof(QTags) != 'undefined' )
348
QTags.insertContent(text);
350
function set_editor(text) {
351
if ( '' == text || '<p></p>' == text )
352
text = '<p><br /></p>';
354
if ( tinyMCE.activeEditor )
355
tinyMCE.execCommand('mceSetContent', false, text);
357
function insert_editor(text) {
358
if ( '' != text && tinyMCE.activeEditor && ! tinyMCE.activeEditor.isHidden()) {
359
tinyMCE.execCommand('mceInsertContent', false, '<p>' + decodeURI(tinymce.DOM.decode(text)) + '</p>', {format : 'raw'});
361
insert_plain_editor(decodeURI(text));
364
function append_editor(text) {
365
if ( '' != text && tinyMCE.activeEditor && ! tinyMCE.activeEditor.isHidden()) {
366
tinyMCE.execCommand('mceSetContent', false, tinyMCE.activeEditor.getContent({format : 'raw'}) + '<p>' + text + '</p>');
368
insert_plain_editor(text);
372
function show(tab_name) {
373
jQuery('#extra-fields').html('');
376
jQuery('#extra-fields').load('<?php echo esc_url($_SERVER['PHP_SELF']); ?>', { ajax: 'video', s: '<?php echo esc_attr($selection); ?>'}, function() {
379
if ( preg_match("/youtube\.com\/watch/i", $url) ) {
380
list($domain, $video_id) = explode("v=", $url);
381
$video_id = esc_attr($video_id);
382
$content = '<object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/' . $video_id . '"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/' . $video_id . '" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object>';
384
} elseif ( preg_match("/vimeo\.com\/[0-9]+/i", $url) ) {
385
list($domain, $video_id) = explode(".com/", $url);
386
$video_id = esc_attr($video_id);
387
$content = '<object width="400" height="225"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://www.vimeo.com/moogaloop.swf?clip_id=' . $video_id . '&server=www.vimeo.com&show_title=1&show_byline=1&show_portrait=0&color=&fullscreen=1" /> <embed src="http://www.vimeo.com/moogaloop.swf?clip_id=' . $video_id . '&server=www.vimeo.com&show_title=1&show_byline=1&show_portrait=0&color=&fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="225"></embed></object>';
389
if ( trim($selection) == '' )
390
$selection = '<p><a href="http://www.vimeo.com/' . $video_id . '?pg=embed&sec=' . $video_id . '">' . $title . '</a> on <a href="http://vimeo.com?pg=embed&sec=' . $video_id . '">Vimeo</a></p>';
392
} elseif ( strpos( $selection, '<object' ) !== false ) {
393
$content = $selection;
396
jQuery('#embed-code').prepend('<?php echo htmlentities($content); ?>');
398
jQuery('#extra-fields').show();
402
function setup_photo_actions() {
403
jQuery('.close').click(function() {
404
jQuery('#extra-fields').hide();
405
jQuery('#extra-fields').html('');
407
jQuery('.refresh').click(function() {
408
photostorage = false;
411
jQuery('#photo-add-url').click(function(){
412
var form = jQuery('#photo-add-url-div').clone();
413
jQuery('#img_container').empty().append( form.show() );
415
jQuery('#waiting').hide();
416
jQuery('#extra-fields').show();
419
jQuery('#waiting').show();
420
if(photostorage == false) {
424
url: "<?php echo esc_url($_SERVER['PHP_SELF']); ?>",
425
data: "ajax=photo_js&u=<?php echo urlencode($url)?>",
427
success : function(data) {
429
photostorage = jQuery('#extra-fields').html();
430
setup_photo_actions();
434
jQuery('#extra-fields').html(photostorage);
435
setup_photo_actions();
441
jQuery(document).ready(function($) {
442
var $contnet = $( '#content' );
445
window.resizeTo(760,580);
447
// Set button actions.
448
jQuery('#photo_button').click(function() { show('photo'); return false; });
449
jQuery('#video_button').click(function() { show('video'); return false; });
452
<?php if ( preg_match("/youtube\.com\/watch/i", $url) ) { ?>
454
<?php } elseif ( preg_match("/vimeo\.com\/[0-9]+/i", $url) ) { ?>
456
<?php } elseif ( preg_match("/flickr\.com/i", $url) ) { ?>
459
jQuery('#title').unbind();
460
jQuery('#publish, #save').click(function() { jQuery('.press-this #publishing-actions .spinner').css('display', 'inline-block'); });
462
$('#tagsdiv-post_tag, #categorydiv').children('h3, .handlediv').click(function(){
463
$(this).siblings('.inside').toggle();
466
if ( $( '#wp-content-wrap' ).hasClass( 'html-active' ) && window.switchEditors &&
467
( tinyMCEPreInit.mceInit.content && tinyMCEPreInit.mceInit.content.wpautop ) ) {
468
// The Text editor is default, run the initial content through pre_wpautop() to convert the paragraphs
469
$contnet.text( window.switchEditors.pre_wpautop( $contnet.text() ) );
475
$admin_body_class = ( is_rtl() ) ? 'rtl' : '';
476
$admin_body_class .= ' locale-' . sanitize_html_class( strtolower( str_replace( '_', '-', get_locale() ) ) );
478
<body class="press-this wp-admin wp-core-ui <?php echo $admin_body_class; ?>">
479
<form action="press-this.php?action=post" method="post">
480
<div id="poststuff" class="metabox-holder">
481
<div id="side-sortables" class="press-this-sidebar">
483
<?php wp_nonce_field('press-this') ?>
484
<input type="hidden" name="post_type" id="post_type" value="text"/>
485
<input type="hidden" name="autosave" id="autosave" />
486
<input type="hidden" id="original_post_status" name="original_post_status" value="draft" />
487
<input type="hidden" id="prev_status" name="prev_status" value="draft" />
488
<input type="hidden" id="post_id" name="post_id" value="<?php echo (int) $post_ID; ?>" />
490
<!-- This div holds the photo metadata -->
491
<div class="photolist"></div>
493
<div id="submitdiv" class="postbox">
494
<div class="handlediv" title="<?php esc_attr_e( 'Click to toggle' ); ?>"><br /></div>
495
<h3 class="hndle"><?php _e('Press This') ?></h3>
497
<p id="publishing-actions">
499
submit_button( __( 'Save Draft' ), 'button', 'draft', false, array( 'id' => 'save' ) );
500
if ( current_user_can('publish_posts') ) {
501
submit_button( __( 'Publish' ), 'primary', 'publish', false );
504
submit_button( __( 'Submit for Review' ), 'primary', 'review', false );
506
<span class="spinner" style="display: none;"></span>
508
<?php if ( current_theme_supports( 'post-formats' ) && post_type_supports( 'post', 'post-formats' ) ) :
509
$post_formats = get_theme_support( 'post-formats' );
510
if ( is_array( $post_formats[0] ) ) :
511
$default_format = get_option( 'default_post_format', '0' );
514
<label for="post_format"><?php _e( 'Post Format:' ); ?>
515
<select name="post_format" id="post_format">
516
<option value="0"><?php echo get_post_format_string( 'standard' ); ?></option>
517
<?php foreach ( $post_formats[0] as $format ): ?>
518
<option<?php selected( $default_format, $format ); ?> value="<?php echo esc_attr( $format ); ?>"> <?php echo esc_html( get_post_format_string( $format ) ); ?></option>
522
<?php endif; endif; ?>
526
<?php $tax = get_taxonomy( 'category' ); ?>
527
<div id="categorydiv" class="postbox">
528
<div class="handlediv" title="<?php esc_attr_e( 'Click to toggle' ); ?>"><br /></div>
529
<h3 class="hndle"><?php _e('Categories') ?></h3>
531
<div id="taxonomy-category" class="categorydiv">
533
<ul id="category-tabs" class="category-tabs">
534
<li class="tabs"><a href="#category-all"><?php echo $tax->labels->all_items; ?></a></li>
535
<li class="hide-if-no-js"><a href="#category-pop"><?php _e( 'Most Used' ); ?></a></li>
538
<div id="category-pop" class="tabs-panel" style="display: none;">
539
<ul id="categorychecklist-pop" class="categorychecklist form-no-clear" >
540
<?php $popular_ids = wp_popular_terms_checklist( 'category' ); ?>
544
<div id="category-all" class="tabs-panel">
545
<ul id="categorychecklist" data-wp-lists="list:category" class="categorychecklist form-no-clear">
546
<?php wp_terms_checklist($post_ID, array( 'taxonomy' => 'category', 'popular_cats' => $popular_ids ) ) ?>
550
<?php if ( !current_user_can($tax->cap->assign_terms) ) : ?>
551
<p><em><?php _e('You cannot modify this Taxonomy.'); ?></em></p>
553
<?php if ( current_user_can($tax->cap->edit_terms) ) : ?>
554
<div id="category-adder" class="wp-hidden-children">
556
<a id="category-add-toggle" href="#category-add" class="hide-if-no-js">
557
<?php printf( __( '+ %s' ), $tax->labels->add_new_item ); ?>
560
<p id="category-add" class="category-add wp-hidden-child">
561
<label class="screen-reader-text" for="newcategory"><?php echo $tax->labels->add_new_item; ?></label>
562
<input type="text" name="newcategory" id="newcategory" class="form-required form-input-tip" value="<?php echo esc_attr( $tax->labels->new_item_name ); ?>" aria-required="true"/>
563
<label class="screen-reader-text" for="newcategory_parent">
564
<?php echo $tax->labels->parent_item_colon; ?>
566
<?php wp_dropdown_categories( array( 'taxonomy' => 'category', 'hide_empty' => 0, 'name' => 'newcategory_parent', 'orderby' => 'name', 'hierarchical' => 1, 'show_option_none' => '— ' . $tax->labels->parent_item . ' —' ) ); ?>
567
<input type="button" id="category-add-submit" data-wp-lists="add:categorychecklist:category-add" class="button category-add-submit" value="<?php echo esc_attr( $tax->labels->add_new_item ); ?>" />
568
<?php wp_nonce_field( 'add-category', '_ajax_nonce-add-category', false ); ?>
569
<span id="category-ajax-response"></span>
577
<div id="tagsdiv-post_tag" class="postbox">
578
<div class="handlediv" title="<?php esc_attr_e( 'Click to toggle' ); ?>"><br /></div>
579
<h3><span><?php _e('Tags'); ?></span></h3>
581
<div class="tagsdiv" id="post_tag">
583
<label class="screen-reader-text" for="newtag"><?php _e('Tags'); ?></label>
584
<input type="hidden" name="tax_input[post_tag]" class="the-tags" id="tax-input[post_tag]" value="" />
585
<div class="ajaxtag">
586
<input type="text" name="newtag[post_tag]" class="newtag form-input-tip" size="16" autocomplete="off" value="" />
587
<input type="button" class="button tagadd" value="<?php esc_attr_e('Add'); ?>" />
590
<div class="tagchecklist"></div>
592
<p class="tagcloud-link"><a href="#titlediv" class="tagcloud-link" id="link-post_tag"><?php _e('Choose from the most used tags'); ?></a></p>
597
<div class="posting">
600
<h1 id="site-heading">
601
<a href="<?php echo get_option('home'); ?>/" target="_blank">
602
<span id="site-title"><?php bloginfo('name'); ?></span>
608
if ( isset($posted) && intval($posted) ) {
609
$post_ID = intval($posted); ?>
610
<div id="message" class="updated">
611
<p><strong><?php _e('Your post has been saved.'); ?></strong>
612
<a onclick="window.opener.location.replace(this.href); window.close();" href="<?php echo get_permalink($post_ID); ?>"><?php _e('View post'); ?></a>
613
| <a href="<?php echo get_edit_post_link( $post_ID ); ?>" onclick="window.opener.location.replace(this.href); window.close();"><?php _e('Edit Post'); ?></a>
614
| <a href="#" onclick="window.close();"><?php _e('Close Window'); ?></a></p>
619
<div class="titlewrap">
620
<input name="title" id="title" class="text" type="text" value="<?php echo esc_attr($title);?>"/>
624
<div id="waiting" style="display: none"><span class="spinner"></span> <span><?php esc_html_e( 'Loading…' ); ?></span></div>
626
<div id="extra-fields" style="display: none"></div>
628
<div class="postdivrich">
631
$editor_settings = array(
633
'textarea_rows' => '15'
638
$content .= $selection;
644
$content .= __('via ');
646
$content .= sprintf( "<a href='%s'>%s</a>.</p>", esc_url( $url ), esc_html( $title ) );
649
remove_action( 'media_buttons', 'media_buttons' );
650
add_action( 'media_buttons', 'press_this_media_buttons' );
651
function press_this_media_buttons() {
654
if ( current_user_can('upload_files') ) {
656
<a id="photo_button" title="<?php esc_attr_e('Insert an Image'); ?>" href="#">
657
<img alt="<?php esc_attr_e('Insert an Image'); ?>" src="<?php echo esc_url( admin_url( 'images/media-button-image.gif?ver=20100531' ) ); ?>"/></a>
661
<a id="video_button" title="<?php esc_attr_e('Embed a Video'); ?>" href="#"><img alt="<?php esc_attr_e('Embed a Video'); ?>" src="<?php echo esc_url( admin_url( 'images/media-button-video.gif?ver=20100531' ) ); ?>"/></a>
665
wp_editor( $content, 'content', $editor_settings );
672
<div id="photo-add-url-div" style="display:none;">
674
<td><label for="this_photo"><?php _e('URL') ?></label></td>
675
<td><input type="text" id="this_photo" name="this_photo" class="tb_this_photo text" onkeypress="if(event.keyCode==13) image_selector(this);" /></td>
677
<td><label for="this_photo_description"><?php _e('Description') ?></label></td>
678
<td><input type="text" id="this_photo_description" name="photo_description" class="tb_this_photo_description text" onkeypress="if(event.keyCode==13) image_selector(this);" value="<?php echo esc_attr($title);?>"/></td>
680
<td><input type="button" class="button" onclick="image_selector(this)" value="<?php esc_attr_e('Insert Image'); ?>" /></td>
684
/** This action is documented in wp-admin/admin-footer.php */
685
do_action( 'admin_footer' );
686
/** This action is documented in wp-admin/admin-footer.php */
687
do_action( 'admin_print_footer_scripts' );
689
<script type="text/javascript">if(typeof wpOnload=='function')wpOnload();</script>