Advertisement
Guest User

wordpress modified press-this.php

a guest
Mar 10th, 2012
468
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 26.45 KB | None | 0 0
  1. <?php
  2. /**
  3.  * Press This Display and Handler.
  4.  *
  5.  * @package WordPress
  6.  * @subpackage Press_This
  7.  */
  8.  
  9. define('IFRAME_REQUEST' , true);
  10.  
  11. /** WordPress Administration Bootstrap */
  12. require_once('./admin.php');
  13.  
  14. header('Content-Type: ' . get_option('html_type') . '; charset=' . get_option('blog_charset'));
  15.  
  16. if ( ! current_user_can('edit_posts') )
  17.     wp_die( __( 'Cheatin&#8217; uh?' ) );
  18.  
  19. /**
  20.  * Press It form handler.
  21.  *
  22.  * @package WordPress
  23.  * @subpackage Press_This
  24.  * @since 2.6.0
  25.  *
  26.  * @return int Post ID
  27.  */
  28. function press_it() {
  29.  
  30.     $post = get_default_post_to_edit();
  31.     $post = get_object_vars($post);
  32.     $post_ID = $post['ID'] = (int) $_POST['post_id'];
  33.  
  34.     if ( !current_user_can('edit_post', $post_ID) )
  35.         wp_die(__('You are not allowed to edit this post.'));
  36.  
  37.     $post['post_category'] = isset($_POST['post_category']) ? $_POST['post_category'] : '';
  38.     $post['tax_input'] = isset($_POST['tax_input']) ? $_POST['tax_input'] : '';
  39.     $post['post_title'] = isset($_POST['title']) ? $_POST['title'] : '';
  40.     $content = isset($_POST['content']) ? $_POST['content'] : '';
  41.  
  42.     $upload = false;
  43.     if ( !empty($_POST['photo_src']) && current_user_can('upload_files') ) {
  44.         foreach( (array) $_POST['photo_src'] as $key => $image) {
  45.             // see if files exist in content - we don't want to upload non-used selected files.
  46.             if ( strpos($_POST['content'], htmlspecialchars($image)) !== false ) {
  47.                 $desc = isset($_POST['photo_description'][$key]) ? $_POST['photo_description'][$key] : '';
  48.                 $upload = media_sideload_image($image, $post_ID, $desc);
  49.  
  50.                 // Replace the POSTED content <img> with correct uploaded ones. Regex contains fix for Magic Quotes
  51.                 if ( !is_wp_error($upload) )
  52.                     $content = preg_replace('/<img ([^>]*)src=\\\?(\"|\')'.preg_quote(htmlspecialchars($image), '/').'\\\?(\2)([^>\/]*)\/*>/is', $upload, $content);
  53.             }
  54.         }
  55.     }
  56.     // set the post_content and status
  57.     $post['post_content'] = $content;
  58.     if ( isset( $_POST['publish'] ) && current_user_can( 'publish_posts' ) )
  59.         $post['post_status'] = 'publish';
  60.     elseif ( isset( $_POST['review'] ) )
  61.         $post['post_status'] = 'pending';
  62.     else
  63.         $post['post_status'] = 'draft';
  64.  
  65.     // error handling for media_sideload
  66.     if ( is_wp_error($upload) ) {
  67.         wp_delete_post($post_ID);
  68.         wp_die($upload);
  69.     } else {
  70.         // Post formats
  71.         if ( isset( $_POST['post_format'] ) ) {
  72.             if ( current_theme_supports( 'post-formats', $_POST['post_format'] ) )
  73.                 set_post_format( $post_ID, $_POST['post_format'] );
  74.             elseif ( '0' == $_POST['post_format'] )
  75.                 set_post_format( $post_ID, false );
  76.         }
  77.  
  78.         $post_ID = wp_update_post($post);
  79.     }
  80.  
  81.     return $post_ID;
  82. }
  83.  
  84. // For submitted posts.
  85. if ( isset($_REQUEST['action']) && 'post' == $_REQUEST['action'] ) {
  86.     check_admin_referer('press-this');
  87.     $posted = $post_ID = press_it();
  88. } else {
  89.     $post = get_default_post_to_edit('post', true);
  90.     $post_ID = $post->ID;
  91. }
  92.  
  93. // Set Variables
  94. $title = isset( $_GET['t'] ) ? trim( strip_tags( html_entity_decode( stripslashes( $_GET['t'] ) , ENT_QUOTES) ) ) : '';
  95. $link_name = isset( $_GET['n'] ) ? trim( strip_tags( html_entity_decode( stripslashes( $_GET['n'] ) , ENT_QUOTES) ) ) : '';
  96. $selection = '';
  97. if ( !empty($_GET['s']) ) {
  98.     $selection = str_replace('&apos;', "'", stripslashes($_GET['s']));
  99.     $selection = trim( htmlspecialchars( html_entity_decode($selection, ENT_QUOTES) ) );
  100. }
  101.  
  102. if ( ! empty($selection) ) {
  103.     $selection = preg_replace('/(\r?\n|\r)/', '</p><p>', $selection);
  104.     $selection = '<p>' . str_replace('<p></p>', '', $selection) . '</p>';
  105. }
  106.  
  107. $url = isset($_GET['u']) ? esc_url($_GET['u']) : '';
  108. $image = isset($_GET['i']) ? $_GET['i'] : '';
  109.  
  110. if ( !empty($_REQUEST['ajax']) ) {
  111.     switch ($_REQUEST['ajax']) {
  112.         case 'video': ?>
  113.             <script type="text/javascript" charset="utf-8">
  114.             /* <![CDATA[ */
  115.                 jQuery('.select').click(function() {
  116.                     append_editor(jQuery('#embed-code').val());
  117.                     jQuery('#extra-fields').hide();
  118.                     jQuery('#extra-fields').html('');
  119.                 });
  120.                 jQuery('.close').click(function() {
  121.                     jQuery('#extra-fields').hide();
  122.                     jQuery('#extra-fields').html('');
  123.                 });
  124.             /* ]]> */
  125.             </script>
  126.             <div class="postbox">
  127.                 <h2><label for="embed-code"><?php _e('Embed Code') ?></label></h2>
  128.                 <div class="inside">
  129.                     <textarea name="embed-code" id="embed-code" rows="8" cols="40"><?php echo esc_textarea( $selection ); ?></textarea>
  130.                     <p id="options"><a href="#" class="select button"><?php _e('Insert Video'); ?></a> <a href="#" class="close button"><?php _e('Cancel'); ?></a></p>
  131.                 </div>
  132.             </div>
  133.             <?php break;
  134.  
  135.         case 'photo_thickbox': ?>
  136.             <script type="text/javascript" charset="utf-8">
  137.                 /* <![CDATA[ */
  138.                 jQuery('.cancel').click(function() {
  139.                     tb_remove();
  140.                 });
  141.                 jQuery('.select').click(function() {
  142.                     image_selector(this);
  143.                 });
  144.                 /* ]]> */
  145.             </script>
  146.             <h3 class="tb"><label for="tb_this_photo_description"><?php _e('Description') ?></label></h3>
  147.             <div class="titlediv">
  148.                 <div class="titlewrap">
  149.                     <input id="tb_this_photo_description" name="photo_description" class="tb_this_photo_description tbtitle text" onkeypress="if(event.keyCode==13) image_selector(this);" value="<?php echo esc_attr($title);?>"/>
  150.                 </div>
  151.             </div>
  152.  
  153.             <p class="centered">
  154.                 <input type="hidden" name="this_photo" value="<?php echo esc_attr($image); ?>" id="tb_this_photo" class="tb_this_photo" />
  155.                 <a href="#" class="select">
  156.                     <img src="<?php echo esc_url($image); ?>" alt="<?php echo esc_attr(__('Click to insert.')); ?>" title="<?php echo esc_attr(__('Click to insert.')); ?>" />
  157.                 </a>
  158.             </p>
  159.  
  160.             <p id="options"><a href="#" class="select button"><?php _e('Insert Image'); ?></a> <a href="#" class="cancel button"><?php _e('Cancel'); ?></a></p>
  161.             <?php break;
  162.     case 'photo_images':
  163.         /**
  164.          * Retrieve all image URLs from given URI.
  165.          *
  166.          * @package WordPress
  167.          * @subpackage Press_This
  168.          * @since 2.6.0
  169.          *
  170.          * @param string $uri
  171.          * @return string
  172.          */
  173.         function get_images_from_uri($uri) {
  174.             $uri = preg_replace('/\/#.+?$/','', $uri);
  175.             if ( preg_match('/\.(jpg|jpe|jpeg|png|gif)$/', $uri) && !strpos($uri,'blogger.com') )
  176.                 return "'" . esc_attr( html_entity_decode($uri) ) . "'";
  177.             $content = wp_remote_fopen($uri);
  178.             if ( false === $content )
  179.                 return '';
  180.             $host = parse_url($uri);
  181.             $pattern = '/<img ([^>]*)src=(\"|\')([^<>\'\"]+)(\2)([^>]*)\/*>/i';
  182.             $content = str_replace(array("\n","\t","\r"), '', $content);
  183.             preg_match_all($pattern, $content, $matches);
  184.             if ( empty($matches[0]) )
  185.                 return '';
  186.             $sources = array();
  187.             foreach ($matches[3] as $src) {
  188.                 // if no http in url
  189.                 if (strpos($src, 'http') === false)
  190.                     // if it doesn't have a relative uri
  191.                     if ( strpos($src, '../') === false && strpos($src, './') === false && strpos($src, '/') === 0)
  192.                         $src = 'http://'.str_replace('//','/', $host['host'].'/'.$src);
  193.                     else
  194.                         $src = 'http://'.str_replace('//','/', $host['host'].'/'.dirname($host['path']).'/'.$src);
  195.                 $sources[] = esc_url($src);
  196.             }
  197.             return "'" . implode("','", $sources) . "'";
  198.         }
  199.         $url = wp_kses(urldecode($url), null);
  200.         echo 'new Array('.get_images_from_uri($url).')';
  201.         break;
  202.  
  203.     case 'photo_js': ?>
  204.         // gather images and load some default JS
  205.         var last = null
  206.         var img, img_tag, aspect, w, h, skip, i, strtoappend = "";
  207.         if(photostorage == false) {
  208.         var my_src = eval(
  209.             jQuery.ajax({
  210.                 type: "GET",
  211.                 url: "<?php echo esc_url($_SERVER['PHP_SELF']); ?>",
  212.                 cache : false,
  213.                 async : false,
  214.                 data: "ajax=photo_images&u=<?php echo urlencode($url); ?>",
  215.                 dataType : "script"
  216.             }).responseText
  217.         );
  218.         if(my_src.length == 0) {
  219.             var my_src = eval(
  220.                 jQuery.ajax({
  221.                     type: "GET",
  222.                     url: "<?php echo esc_url($_SERVER['PHP_SELF']); ?>",
  223.                     cache : false,
  224.                     async : false,
  225.                     data: "ajax=photo_images&u=<?php echo urlencode($url); ?>",
  226.                     dataType : "script"
  227.                 }).responseText
  228.             );
  229.             if(my_src.length == 0) {
  230.                 strtoappend = '<?php _e('Unable to retrieve images or no images on page.'); ?>';
  231.             }
  232.         }
  233.         }
  234.         for (i = 0; i < my_src.length; i++) {
  235.             img = new Image();
  236.             img.src = my_src[i];
  237.             img_attr = 'id="img' + i + '"';
  238.             skip = false;
  239.  
  240.             maybeappend = '<a href="?ajax=photo_thickbox&amp;i=' + encodeURIComponent(img.src) + '&amp;u=<?php echo urlencode($url); ?>&amp;height=400&amp;width=500" title="" class="thickbox"><img src="' + img.src + '" ' + img_attr + '/></a>';
  241.  
  242.             if (img.width && img.height) {
  243.                 if (img.width >= 30 && img.height >= 30) {
  244.                     aspect = img.width / img.height;
  245.                     scale = (aspect > 1) ? (71 / img.width) : (71 / img.height);
  246.  
  247.                     w = img.width;
  248.                     h = img.height;
  249.  
  250.                     if (scale < 1) {
  251.                         w = parseInt(img.width * scale);
  252.                         h = parseInt(img.height * scale);
  253.                     }
  254.                     img_attr += ' style="width: ' + w + 'px; height: ' + h + 'px;"';
  255.                     strtoappend += maybeappend;
  256.                 }
  257.             } else {
  258.                 strtoappend += maybeappend;
  259.             }
  260.         }
  261.  
  262.         function pick(img, desc) {
  263.             if (img) {
  264.                 if('object' == typeof jQuery('.photolist input') && jQuery('.photolist input').length != 0) length = jQuery('.photolist input').length;
  265.                 if(length == 0) length = 1;
  266.                 jQuery('.photolist').append('<input name="photo_src[' + length + ']" value="' + img +'" type="hidden"/>');
  267.                 jQuery('.photolist').append('<input name="photo_description[' + length + ']" value="' + desc +'" type="hidden"/>');
  268.                 insert_editor( "\n\n" + encodeURI('<p style="text-align: center;"><a href="<?php echo $url; ?>"><img src="' + img +'" alt="' + desc + '" /></a></p>'));
  269.             }
  270.             return false;
  271.         }
  272.  
  273.         function image_selector(el) {
  274.             var desc, src, parent = jQuery(el).closest('#photo-add-url-div');
  275.  
  276.             if ( parent.length ) {
  277.                 desc = parent.find('input.tb_this_photo_description').val() || '';
  278.                 src = parent.find('input.tb_this_photo').val() || ''
  279.             } else {
  280.                 desc = jQuery('#tb_this_photo_description').val() || '';
  281.                 src = jQuery('#tb_this_photo').val() || ''
  282.             }
  283.  
  284.             tb_remove();
  285.             pick(src, desc);
  286.             jQuery('#extra-fields').hide();
  287.             jQuery('#extra-fields').html('');
  288.             return false;
  289.         }
  290.  
  291.         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"><?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>');
  292.         jQuery('#img_container').html(strtoappend);
  293.         <?php break;
  294. }
  295. die;
  296. }
  297.  
  298.     wp_enqueue_style( 'colors' );
  299.     wp_enqueue_script( 'post' );
  300.     _wp_admin_html_begin();
  301. ?>
  302. <title><?php _e('Press This') ?></title>
  303. <script type="text/javascript">
  304. //<![CDATA[
  305. 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();}}};
  306. var userSettings = {'url':'<?php echo SITECOOKIEPATH; ?>','uid':'<?php if ( ! isset($current_user) ) $current_user = wp_get_current_user(); echo $current_user->ID; ?>','time':'<?php echo time() ?>'};
  307. var ajaxurl = '<?php echo admin_url('admin-ajax.php'); ?>', pagenow = 'press-this', isRtl = <?php echo (int) is_rtl(); ?>;
  308. var photostorage = false;
  309. //]]>
  310. </script>
  311.  
  312. <?php
  313.     do_action('admin_print_styles');
  314.     do_action('admin_print_scripts');
  315.     do_action('admin_head');
  316. ?>
  317.     <style type="text/css">
  318.     #message {
  319.         margin: 10px 0;
  320.     }
  321.     #title,
  322.     .press-this #wphead {
  323.         margin-left: 0;
  324.         margin-right: 0;
  325.     }
  326.     .rtl.press-this #header-logo,
  327.     .rtl.press-this #wphead h1 {
  328.         float: right;
  329.     }
  330.     </style>
  331.     <script type="text/javascript">
  332.     var wpActiveEditor = 'content';
  333.  
  334.     function insert_plain_editor(text) {
  335.         if ( typeof(QTags) != 'undefined' )
  336.             QTags.insertContent(text);
  337.     }
  338.     function set_editor(text) {
  339.         if ( '' == text || '<p></p>' == text )
  340.             text = '<p><br /></p>';
  341.  
  342.         if ( tinyMCE.activeEditor )
  343.             tinyMCE.execCommand('mceSetContent', false, text);
  344.     }
  345.     function insert_editor(text) {
  346.         if ( '' != text && tinyMCE.activeEditor && ! tinyMCE.activeEditor.isHidden()) {
  347.             tinyMCE.execCommand('mceInsertContent', false, '<p>' + decodeURI(tinymce.DOM.decode(text)) + '</p>', {format : 'raw'});
  348.         } else {
  349.             insert_plain_editor(decodeURI(text));
  350.         }
  351.     }
  352.     function append_editor(text) {
  353.         if ( '' != text && tinyMCE.activeEditor && ! tinyMCE.activeEditor.isHidden()) {
  354.             tinyMCE.execCommand('mceSetContent', false, tinyMCE.activeEditor.getContent({format : 'raw'}) + '<p>' + text + '</p>');
  355.         } else {
  356.             insert_plain_editor(text);
  357.         }
  358.     }
  359.  
  360.     function show(tab_name) {
  361.         jQuery('#extra-fields').html('');
  362.         switch(tab_name) {
  363.             case 'video' :
  364.                 jQuery('#extra-fields').load('<?php echo esc_url($_SERVER['PHP_SELF']); ?>', { ajax: 'video', s: '<?php echo esc_attr($selection); ?>'}, function() {
  365.                     <?php
  366.                     $content = '';
  367.                     if ( preg_match("/youtube\.com\/watch/i", $url) ) {
  368.                         list($domain, $video_id) = split("v=", $url);
  369.                         $video_id = esc_attr($video_id);
  370.                         $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>';
  371.  
  372.                     } elseif ( preg_match("/vimeo\.com\/[0-9]+/i", $url) ) {
  373.                         list($domain, $video_id) = split(".com/", $url);
  374.                         $video_id = esc_attr($video_id);
  375.                         $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 . '&amp;server=www.vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" />  <embed src="http://www.vimeo.com/moogaloop.swf?clip_id=' . $video_id . '&amp;server=www.vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="225"></embed></object>';
  376.  
  377.                         if ( trim($selection) == '' )
  378.                             $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>';
  379.  
  380.                     } elseif ( strpos( $selection, '<object' ) !== false ) {
  381.                         $content = $selection;
  382.                     }
  383.                     ?>
  384.                     jQuery('#embed-code').prepend('<?php echo htmlentities($content); ?>');
  385.                 });
  386.                 jQuery('#extra-fields').show();
  387.                 return false;
  388.                 break;
  389.             case 'photo' :
  390.                 function setup_photo_actions() {
  391.                     jQuery('.close').click(function() {
  392.                         jQuery('#extra-fields').hide();
  393.                         jQuery('body').append( jQuery('#photo-add-url-div') );
  394.                         jQuery('#extra-fields').html('');
  395.                     });
  396.                     jQuery('.refresh').click(function() {
  397.                         photostorage = false;
  398.                         jQuery('body').append( jQuery('#photo-add-url-div') );
  399.                         show('photo');
  400.                     });
  401.                     jQuery('#photo-add-url').click(function(){
  402.                         var container = jQuery('#img_container');
  403.  
  404.                         if ( container.children('#photo-add-url-div:visible').length ) {
  405.                             container.children('a').show();
  406.                             jQuery('#photo-add-url-div').hide();
  407.                         } else {
  408.                             container.children('a').hide();
  409.                             container.append( jQuery('#photo-add-url-div').show() );
  410.                         }
  411.                     });
  412.                     jQuery('#waiting').hide();
  413.                     jQuery('#extra-fields').show();
  414.                 }
  415.  
  416.                 jQuery('#waiting').show();
  417.                 if(photostorage == false) {
  418.                     jQuery.ajax({
  419.                         type: "GET",
  420.                         cache : false,
  421.                         url: "<?php echo esc_url($_SERVER['PHP_SELF']); ?>",
  422.                         data: "ajax=photo_js&u=<?php echo urlencode($url)?>",
  423.                         dataType : "script",
  424.                         success : function(data) {
  425.                             eval(data);
  426.                             photostorage = jQuery('#extra-fields').html();
  427.                             setup_photo_actions();
  428.                         }
  429.                     });
  430.                 } else {
  431.                     jQuery('#extra-fields').html(photostorage);
  432.                     setup_photo_actions();
  433.                 }
  434.                 return false;
  435.                 break;
  436.         }
  437.     }
  438.     jQuery(document).ready(function($) {
  439.         //resize screen
  440.         window.resizeTo(720,580);
  441.         // set button actions
  442.         jQuery('#photo_button').click(function() { show('photo'); return false; });
  443.         jQuery('#video_button').click(function() { show('video'); return false; });
  444.         // auto select
  445.         <?php if ( preg_match("/youtube\.com\/watch/i", $url) ) { ?>
  446.             show('video');
  447.         <?php } elseif ( preg_match("/vimeo\.com\/[0-9]+/i", $url) ) { ?>
  448.             show('video');
  449.         <?php  } elseif ( preg_match("/flickr\.com/i", $url) ) { ?>
  450.             show('photo');
  451.         <?php } ?>
  452.         jQuery('#title').unbind();
  453.         jQuery('#publish, #save').click(function() { jQuery('#saving').css('display', 'inline'); });
  454.  
  455.         $('#tagsdiv-post_tag, #categorydiv').children('h3, .handlediv').click(function(){
  456.             $(this).siblings('.inside').toggle();
  457.         });
  458.     });
  459. </script>
  460. </head>
  461. <body class="press-this wp-admin<?php if ( is_rtl() ) echo ' rtl'; ?>">
  462. <form action="press-this.php?action=post" method="post">
  463. <div id="poststuff" class="metabox-holder">
  464.     <div id="side-sortables" class="press-this-sidebar">
  465.         <div class="sleeve">
  466.             <?php wp_nonce_field('press-this') ?>
  467.             <input type="hidden" name="post_type" id="post_type" value="text"/>
  468.             <input type="hidden" name="autosave" id="autosave" />
  469.             <input type="hidden" id="original_post_status" name="original_post_status" value="draft" />
  470.             <input type="hidden" id="prev_status" name="prev_status" value="draft" />
  471.             <input type="hidden" id="post_id" name="post_id" value="<?php echo (int) $post_ID; ?>" />
  472.  
  473.             <!-- This div holds the photo metadata -->
  474.             <div class="photolist"></div>
  475.  
  476.             <div id="submitdiv" class="postbox">
  477.                 <div class="handlediv" title="<?php esc_attr_e( 'Click to toggle' ); ?>"><br /></div>
  478.                 <h3 class="hndle"><?php _e('Press This') ?></h3>
  479.                 <div class="inside">
  480.                     <p id="publishing-actions">
  481.                     <?php
  482.                         submit_button( __( 'Save Draft' ), 'button', 'draft', false, array( 'id' => 'save' ) );
  483.                         if ( current_user_can('publish_posts') ) {
  484.                             submit_button( __( 'Publish' ), 'primary', 'publish', false );
  485.                         } else {
  486.                             echo '<br /><br />';
  487.                             submit_button( __( 'Submit for Review' ), 'primary', 'review', false );
  488.                         } ?>
  489.                         <img src="<?php echo esc_url( admin_url( 'images/wpspin_light.gif' ) ); ?>" alt="" id="saving" style="display:none;" />
  490.                     </p>
  491.                     <?php if ( current_theme_supports( 'post-formats' ) && post_type_supports( 'post', 'post-formats' ) ) :
  492.                             $post_formats = get_theme_support( 'post-formats' );
  493.                             if ( is_array( $post_formats[0] ) ) :
  494.                                 $default_format = get_option( 'default_post_format', '0' );
  495.                         ?>
  496.                     <p>
  497.                         <label for="post_format"><?php _e( 'Post Format:' ); ?>
  498.                         <select name="post_format" id="post_format">
  499.                             <option value="0"><?php _ex( 'Standard', 'Post format' ); ?></option>
  500.                         <?php foreach ( $post_formats[0] as $format ): ?>
  501.                             <option<?php selected( $default_format, $format ); ?> value="<?php echo esc_attr( $format ); ?>"> <?php echo esc_html( get_post_format_string( $format ) ); ?></option>
  502.                         <?php endforeach; ?>
  503.                         </select></label>
  504.                     </p>
  505.                     <?php endif; endif; ?>
  506.                 </div>
  507.             </div>
  508.  
  509.             <?php $tax = get_taxonomy( 'category' ); ?>
  510.             <div id="categorydiv" class="postbox">
  511.                 <div class="handlediv" title="<?php esc_attr_e( 'Click to toggle' ); ?>"><br /></div>
  512.                 <h3 class="hndle"><?php _e('Categories') ?></h3>
  513.                 <div class="inside">
  514.                 <div id="taxonomy-category" class="categorydiv">
  515.  
  516.                     <ul id="category-tabs" class="category-tabs">
  517.                         <li class="tabs"><a href="#category-all" tabindex="3"><?php echo $tax->labels->all_items; ?></a></li>
  518.                         <li class="hide-if-no-js"><a href="#category-pop" tabindex="3"><?php _e( 'Most Used' ); ?></a></li>
  519.                     </ul>
  520.  
  521.                     <div id="category-pop" class="tabs-panel" style="display: none;">
  522.                         <ul id="categorychecklist-pop" class="categorychecklist form-no-clear" >
  523.                             <?php $popular_ids = wp_popular_terms_checklist( 'category' ); ?>
  524.                         </ul>
  525.                     </div>
  526.  
  527.                     <div id="category-all" class="tabs-panel">
  528.                         <ul id="categorychecklist" class="list:category categorychecklist form-no-clear">
  529.                             <?php wp_terms_checklist($post_ID, array( 'taxonomy' => 'category', 'popular_cats' => $popular_ids ) ) ?>
  530.                         </ul>
  531.                     </div>
  532.  
  533.                     <?php if ( !current_user_can($tax->cap->assign_terms) ) : ?>
  534.                     <p><em><?php _e('You cannot modify this Taxonomy.'); ?></em></p>
  535.                     <?php endif; ?>
  536.                     <?php if ( current_user_can($tax->cap->edit_terms) ) : ?>
  537.                         <div id="category-adder" class="wp-hidden-children">
  538.                             <h4>
  539.                                 <a id="category-add-toggle" href="#category-add" class="hide-if-no-js" tabindex="3">
  540.                                     <?php printf( __( '+ %s' ), $tax->labels->add_new_item ); ?>
  541.                                 </a>
  542.                             </h4>
  543.                             <p id="category-add" class="category-add wp-hidden-child">
  544.                                 <label class="screen-reader-text" for="newcategory"><?php echo $tax->labels->add_new_item; ?></label>
  545.                                 <input type="text" name="newcategory" id="newcategory" class="form-required form-input-tip" value="<?php echo esc_attr( $tax->labels->new_item_name ); ?>" tabindex="3" aria-required="true"/>
  546.                                 <label class="screen-reader-text" for="newcategory_parent">
  547.                                     <?php echo $tax->labels->parent_item_colon; ?>
  548.                                 </label>
  549.                                 <?php wp_dropdown_categories( array( 'taxonomy' => 'category', 'hide_empty' => 0, 'name' => 'newcategory_parent', 'orderby' => 'name', 'hierarchical' => 1, 'show_option_none' => '&mdash; ' . $tax->labels->parent_item . ' &mdash;', 'tab_index' => 3 ) ); ?>
  550.                                 <input type="button" id="category-add-submit" class="add:categorychecklist:category-add button category-add-sumbit" value="<?php echo esc_attr( $tax->labels->add_new_item ); ?>" tabindex="3" />
  551.                                 <?php wp_nonce_field( 'add-category', '_ajax_nonce-add-category', false ); ?>
  552.                                 <span id="category-ajax-response"></span>
  553.                             </p>
  554.                         </div>
  555.                     <?php endif; ?>
  556.                 </div>
  557.                 </div>
  558.             </div>
  559.  
  560.             <div id="tagsdiv-post_tag" class="postbox">
  561.                 <div class="handlediv" title="<?php esc_attr_e( 'Click to toggle' ); ?>"><br /></div>
  562.                 <h3><span><?php _e('Tags'); ?></span></h3>
  563.                 <div class="inside">
  564.                     <div class="tagsdiv" id="post_tag">
  565.                         <div class="jaxtag">
  566.                             <label class="screen-reader-text" for="newtag"><?php _e('Tags'); ?></label>
  567.                             <input type="hidden" name="tax_input[post_tag]" class="the-tags" id="tax-input[post_tag]" value="" />
  568.                             <div class="ajaxtag">
  569.                                 <input type="text" name="newtag[post_tag]" class="newtag form-input-tip" size="16" autocomplete="off" value="" />
  570.                                 <input type="button" class="button tagadd" value="<?php esc_attr_e('Add'); ?>" tabindex="3" />
  571.                             </div>
  572.                         </div>
  573.                         <div class="tagchecklist"></div>
  574.                     </div>
  575.                     <p class="tagcloud-link"><a href="#titlediv" class="tagcloud-link" id="link-post_tag"><?php _e('Choose from the most used tags'); ?></a></p>
  576.                 </div>
  577.             </div>
  578.         </div>
  579.     </div>
  580.     <div class="posting">
  581.  
  582.         <div id="wphead">
  583.             <img id="header-logo" src="<?php echo esc_url( includes_url( 'images/blank.gif' ) ); ?>" alt="" width="16" height="16" />
  584.             <h1 id="site-heading">
  585.                 <a href="<?php echo get_option('home'); ?>/" target="_blank">
  586.                     <span id="site-title"><?php bloginfo('name'); ?></span>
  587.                 </a>
  588.             </h1>
  589.         </div>
  590.  
  591.         <?php
  592.         if ( isset($posted) && intval($posted) ) {
  593.             $post_ID = intval($posted); ?>
  594.             <div id="message" class="updated">
  595.             <p><strong><?php _e('Your post has been saved.'); ?></strong>
  596.             <a onclick="window.opener.location.replace(this.href); window.close();" href="<?php echo get_permalink($post_ID); ?>"><?php _e('View post'); ?></a>
  597.             | <a href="<?php echo get_edit_post_link( $post_ID ); ?>" onclick="window.opener.location.replace(this.href); window.close();"><?php _e('Edit Post'); ?></a>
  598.             | <a href="#" onclick="window.close();"><?php _e('Close Window'); ?></a></p>
  599.             </div>
  600.         <?php } ?>
  601.  
  602.         <div id="titlediv">
  603.             <div class="titlewrap">
  604.                 <input name="title" id="title" class="text" value="<?php echo esc_attr($title);?>"/>
  605.             </div>
  606.         </div>
  607.  
  608.         <div id="waiting" style="display: none"><img src="<?php echo esc_url( admin_url( 'images/wpspin_light.gif' ) ); ?>" alt="" /> <?php esc_html_e( 'Loading...' ); ?></div>
  609.  
  610.         <div id="extra-fields" style="display: none"></div>
  611.  
  612.         <div class="postdivrich">
  613.         <?php
  614.  
  615.         $editor_settings = array(
  616.             'teeny' => true,
  617.             'textarea_rows' => '15'
  618.         );
  619.  
  620.         $content = '';
  621.         if ( $selection )
  622.             $content .=  $selection;
  623.  
  624.         if ( $url ) {
  625.             $content .= '<p>';
  626.  
  627.             if ( $selection )
  628.                 $content .= __('via ');
  629.  
  630.             $content .= sprintf( "<a href='%s'>%s</a>.</p>", esc_url( $url ), esc_html( $link_name ) );
  631.         }
  632.  
  633.         remove_action( 'media_buttons', 'media_buttons' );
  634.         add_action( 'media_buttons', 'press_this_media_buttons' );
  635.         function press_this_media_buttons() {
  636.             _e( 'Add:' );
  637.  
  638.             if ( current_user_can('upload_files') ) {
  639.                 ?>
  640.                 <a id="photo_button" title="<?php esc_attr_e('Insert an Image'); ?>" href="#">
  641.                 <img alt="<?php esc_attr_e('Insert an Image'); ?>" src="<?php echo esc_url( admin_url( 'images/media-button-image.gif?ver=20100531' ) ); ?>"/></a>
  642.                 <?php
  643.             }
  644.             ?>
  645.             <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>
  646.             <?php
  647.         }
  648.  
  649.         wp_editor( $content, 'content', $editor_settings );
  650.  
  651.         ?>
  652.         </div>
  653.     </div>
  654. </div>
  655. </form>
  656. <div id="photo-add-url-div" style="display:none;">
  657.     <table><tr>
  658.     <td><label for="this_photo"><?php _e('URL') ?></label></td>
  659.     <td><input type="text" id="this_photo" name="this_photo" class="tb_this_photo text" onkeypress="if(event.keyCode==13) image_selector(this);" /></td>
  660.     </tr><tr>
  661.     <td><label for="this_photo_description"><?php _e('Description') ?></label></td>
  662.     <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>
  663.     </tr><tr>
  664.     <td><input type="button" class="button" onclick="image_selector(this)" value="<?php esc_attr_e('Insert Image'); ?>" /></td>
  665.     </tr></table>
  666. </div>
  667. <?php
  668. do_action('admin_footer');
  669. do_action('admin_print_footer_scripts');
  670. ?>
  671. <script type="text/javascript">if(typeof wpOnload=='function')wpOnload();</script>
  672. </body>
  673. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement