[ Index ]

PHP Cross Reference of WordPress 3.0 beta 1

[ Index ]     [ Variables ]     [ Functions ]     [ Classes ]     [ Constants ]     [ Statistics ]

title

Body

[close]

/wp-admin/ -> press-this.php (source)

   1  <?php
   2  /**
   3   * Press This Display and Handler.
   4   *
   5   * @package WordPress
   6   * @subpackage Press_This
   7   */
   8  
   9  /** WordPress Administration Bootstrap */
  10  require_once ('admin.php');
  11  header('Content-Type: ' . get_option('html_type') . '; charset=' . get_option('blog_charset'));
  12  
  13  if ( ! current_user_can('edit_posts') )
  14      wp_die( __( 'Cheatin&#8217; uh?' ) );
  15  
  16  /**
  17   * Press It form handler.
  18   *
  19   * @package WordPress
  20   * @subpackage Press_This
  21   * @since 2.6.0
  22   *
  23   * @return int Post ID
  24   */
  25  function press_it() {
  26      // define some basic variables
  27      $quick['post_status'] = 'draft'; // set as draft first
  28      $quick['post_category'] = isset($_POST['post_category']) ? $_POST['post_category'] : null;
  29      $quick['tax_input'] = isset($_POST['tax_input']) ? $_POST['tax_input'] : null;
  30      $quick['post_title'] = ( trim($_POST['title']) != '' ) ? $_POST['title'] : '  ';
  31      $quick['post_content'] = isset($_POST['post_content']) ? $_POST['post_content'] : '';
  32  
  33      // insert the post with nothing in it, to get an ID
  34      $post_ID = wp_insert_post($quick, true);
  35      if ( is_wp_error($post_ID) )
  36          wp_die($post_ID);
  37  
  38      $content = isset($_POST['content']) ? $_POST['content'] : '';
  39  
  40      $upload = false;
  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);
  47  
  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);
  51              }
  52          }
  53      }
  54      // set the post_content and status
  55      $quick['post_status'] = isset($_POST['publish']) ? 'publish' : 'draft';
  56      $quick['post_content'] = $content;
  57      // error handling for media_sideload
  58      if ( is_wp_error($upload) ) {
  59          wp_delete_post($post_ID);
  60          wp_die($upload);
  61      } else {
  62          $quick['ID'] = $post_ID;
  63          wp_update_post($quick);
  64      }
  65      return $post_ID;
  66  }
  67  
  68  // For submitted posts.
  69  if ( isset($_REQUEST['action']) && 'post' == $_REQUEST['action'] ) {
  70      check_admin_referer('press-this');
  71      $post_ID = press_it();
  72      $posted =  $post_ID;
  73  } else {
  74      $post_ID = 0;
  75  }
  76  
  77  // Set Variables
  78  $title = isset( $_GET['t'] ) ? trim( strip_tags( html_entity_decode( stripslashes( $_GET['t'] ) , ENT_QUOTES) ) ) : '';
  79  
  80  $selection = '';
  81  if ( !empty($_GET['s']) ) {
  82      $selection = str_replace('&apos;', "'", stripslashes($_GET['s']));
  83      $selection = trim( htmlspecialchars( html_entity_decode($selection, ENT_QUOTES) ) );
  84  }
  85  
  86  if ( ! empty($selection) ) {
  87      $selection = preg_replace('/(\r?\n|\r)/', '</p><p>', $selection);
  88      $selection = '<p>' . str_replace('<p></p>', '', $selection) . '</p>';
  89  }
  90  
  91  $url = isset($_GET['u']) ? esc_url($_GET['u']) : '';
  92  $image = isset($_GET['i']) ? $_GET['i'] : '';
  93  
  94  if ( !empty($_REQUEST['ajax']) ) {
  95      switch ($_REQUEST['ajax']) {
  96          case 'video': ?>
  97              <script type="text/javascript" charset="utf-8">
  98              /* <![CDATA[ */
  99                  jQuery('.select').click(function() {
 100                      append_editor(jQuery('#embed-code').val());
 101                      jQuery('#extra-fields').hide();
 102                      jQuery('#extra-fields').html('');
 103                  });
 104                  jQuery('.close').click(function() {
 105                      jQuery('#extra-fields').hide();
 106                      jQuery('#extra-fields').html('');
 107                  });
 108              /* ]]> */
 109              </script>
 110              <div class="postbox">
 111                  <h2><label for="embed-code"><?php _e('Embed Code') ?></label></h2>
 112                  <div class="inside">
 113                      <textarea name="embed-code" id="embed-code" rows="8" cols="40"><?php echo wp_htmledit_pre( $selection ); ?></textarea>
 114                      <p id="options"><a href="#" class="select button"><?php _e('Insert Video'); ?></a> <a href="#" class="close button"><?php _e('Cancel'); ?></a></p>
 115                  </div>
 116              </div>
 117              <?php break;
 118  
 119          case 'photo_thickbox': ?>
 120              <script type="text/javascript" charset="utf-8">
 121                  /* <![CDATA[ */
 122                  jQuery('.cancel').click(function() {
 123                      tb_remove();
 124                  });
 125                  jQuery('.select').click(function() {
 126                      image_selector();
 127                  });
 128                  /* ]]> */
 129              </script>
 130              <h3 class="tb"><label for="this_photo_description"><?php _e('Description') ?></label></h3>
 131              <div class="titlediv">
 132                  <div class="titlewrap">
 133                      <input id="this_photo_description" name="photo_description" class="tbtitle text" onkeypress="if(event.keyCode==13) image_selector();" value="<?php echo esc_attr($title);?>"/>
 134                  </div>
 135              </div>
 136  
 137              <p class="centered">
 138                  <input type="hidden" name="this_photo" value="<?php echo esc_attr($image); ?>" id="this_photo" />
 139                  <a href="#" class="select">
 140                      <img src="<?php echo esc_url($image); ?>" alt="<?php echo esc_attr(__('Click to insert.')); ?>" title="<?php echo esc_attr(__('Click to insert.')); ?>" />
 141                  </a>
 142              </p>
 143  
 144              <p id="options"><a href="#" class="select button"><?php _e('Insert Image'); ?></a> <a href="#" class="cancel button"><?php _e('Cancel'); ?></a></p>
 145              <?php break;
 146  
 147          case 'photo_thickbox_url': ?>
 148              <script type="text/javascript" charset="utf-8">
 149                  /* <![CDATA[ */
 150                  jQuery('.cancel').click(function() {
 151                      tb_remove();
 152                  });
 153  
 154                  jQuery('.select').click(function() {
 155                      image_selector();
 156                  });
 157                  /* ]]> */
 158              </script>
 159              <h3 class="tb"><label for="this_photo"><?php _e('URL') ?></label></h3>
 160              <div class="titlediv">
 161                  <div class="titlewrap">
 162                      <input id="this_photo" name="this_photo" class="tbtitle text" onkeypress="if(event.keyCode==13) image_selector();" />
 163                  </div>
 164              </div>
 165              <h3 class="tb"><label for="photo_description"><?php _e('Description') ?></label></h3>
 166              <div id="titlediv">
 167                  <div class="titlewrap">
 168                      <input id="this_photo_description" name="photo_description" class="tbtitle text" onkeypress="if(event.keyCode==13) image_selector();" value="<?php echo esc_attr($title);?>"/>
 169                  </div>
 170              </div>
 171  
 172              <p id="options"><a href="#" class="select"><?php _e('Insert Image'); ?></a> | <a href="#" class="cancel"><?php _e('Cancel'); ?></a></p>
 173              <?php break;
 174      case 'photo_images':
 175          /**
 176           * Retrieve all image URLs from given URI.
 177           *
 178           * @package WordPress
 179           * @subpackage Press_This
 180           * @since 2.6.0
 181           *
 182           * @param string $uri
 183           * @return string
 184           */
 185  		function get_images_from_uri($uri) {
 186              $uri = preg_replace('/\/#.+?$/','', $uri);
 187              if ( preg_match('/\.(jpg|jpe|jpeg|png|gif)$/', $uri) && !strpos($uri,'blogger.com') )
 188                  return "'" . esc_attr( html_entity_decode($uri) ) . "'";
 189              $content = wp_remote_fopen($uri);
 190              if ( false === $content )
 191                  return '';
 192              $host = parse_url($uri);
 193              $pattern = '/<img ([^>]*)src=(\"|\')([^<>\'\"]+)(\2)([^>]*)\/*>/i';
 194              $content = str_replace(array("\n","\t","\r"), '', $content);
 195              preg_match_all($pattern, $content, $matches);
 196              if ( empty($matches[0]) )
 197                  return '';
 198              $sources = array();
 199              foreach ($matches[3] as $src) {
 200                  // if no http in url
 201                  if (strpos($src, 'http') === false)
 202                      // if it doesn't have a relative uri
 203                      if ( strpos($src, '../') === false && strpos($src, './') === false && strpos($src, '/') === 0)
 204                          $src = 'http://'.str_replace('//','/', $host['host'].'/'.$src);
 205                      else
 206                          $src = 'http://'.str_replace('//','/', $host['host'].'/'.dirname($host['path']).'/'.$src);
 207                  $sources[] = esc_attr($src);
 208              }
 209              return "'" . implode("','", $sources) . "'";
 210          }
 211          $url = wp_kses(urldecode($url), null);
 212          echo 'new Array('.get_images_from_uri($url).')';
 213          break;
 214  
 215      case 'photo_js': ?>
 216          // gather images and load some default JS
 217          var last = null
 218          var img, img_tag, aspect, w, h, skip, i, strtoappend = "";
 219          if(photostorage == false) {
 220          var my_src = eval(
 221              jQuery.ajax({
 222                     type: "GET",
 223                     url: "<?php echo esc_url($_SERVER['PHP_SELF']); ?>",
 224                  cache : false,
 225                  async : false,
 226                     data: "ajax=photo_images&u=<?php echo urlencode($url); ?>",
 227                  dataType : "script"
 228              }).responseText
 229          );
 230          if(my_src.length == 0) {
 231              var my_src = eval(
 232                  jQuery.ajax({
 233                         type: "GET",
 234                         url: "<?php echo esc_url($_SERVER['PHP_SELF']); ?>",
 235                      cache : false,
 236                      async : false,
 237                         data: "ajax=photo_images&u=<?php echo urlencode($url); ?>",
 238                      dataType : "script"
 239                  }).responseText
 240              );
 241              if(my_src.length == 0) {
 242                  strtoappend = '<?php _e('Unable to retrieve images or no images on page.'); ?>';
 243              }
 244          }
 245          }
 246          for (i = 0; i < my_src.length; i++) {
 247              img = new Image();
 248              img.src = my_src[i];
 249              img_attr = 'id="img' + i + '"';
 250              skip = false;
 251  
 252              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>';
 253  
 254              if (img.width && img.height) {
 255                  if (img.width >= 30 && img.height >= 30) {
 256                      aspect = img.width / img.height;
 257                      scale = (aspect > 1) ? (71 / img.width) : (71 / img.height);
 258  
 259                      w = img.width;
 260                      h = img.height;
 261  
 262                      if (scale < 1) {
 263                          w = parseInt(img.width * scale);
 264                          h = parseInt(img.height * scale);
 265                      }
 266                      img_attr += ' style="width: ' + w + 'px; height: ' + h + 'px;"';
 267                      strtoappend += maybeappend;
 268                  }
 269              } else {
 270                  strtoappend += maybeappend;
 271              }
 272          }
 273  
 274          function pick(img, desc) {
 275              if (img) {
 276                  if('object' == typeof jQuery('.photolist input') && jQuery('.photolist input').length != 0) length = jQuery('.photolist input').length;
 277                  if(length == 0) length = 1;
 278                  jQuery('.photolist').append('<input name="photo_src[' + length + ']" value="' + img +'" type="hidden"/>');
 279                  jQuery('.photolist').append('<input name="photo_description[' + length + ']" value="' + desc +'" type="hidden"/>');
 280                  insert_editor( "\n\n" + encodeURI('<p style="text-align: center;"><a href="<?php echo $url; ?>"><img src="' + img +'" alt="' + desc + '" /></a></p>'));
 281              }
 282              return false;
 283          }
 284  
 285          function image_selector() {
 286              tb_remove();
 287              desc = jQuery('#this_photo_description').val();
 288              src = jQuery('#this_photo').val();
 289              pick(src, desc);
 290              jQuery('#extra-fields').hide();
 291              jQuery('#extra-fields').html('');
 292              return false;
 293          }
 294              jQuery('#extra-fields').html('<div class="postbox"><h2>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="thickbox 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>');
 295              jQuery('#img_container').html(strtoappend);
 296          <?php break;
 297  }
 298  die;
 299  }
 300  
 301  ?>
 302  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 303  <html xmlns="http://www.w3.org/1999/xhtml" <?php do_action('admin_xml_ns'); ?> <?php language_attributes(); ?>>
 304  <head>
 305      <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php echo get_option('blog_charset'); ?>" />
 306      <title><?php _e('Press This') ?></title>
 307  
 308  <?php
 309      add_thickbox();
 310      wp_enqueue_style( 'press-this' );
 311      wp_enqueue_style( 'press-this-ie');
 312      wp_enqueue_style( 'colors' );
 313      wp_enqueue_script( 'post' );
 314      wp_enqueue_script( 'editor' );
 315  ?>
 316  <script type="text/javascript">
 317  //<![CDATA[
 318  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();}}};
 319  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() ?>'};
 320  var ajaxurl = '<?php echo admin_url('admin-ajax.php'); ?>', pagenow = 'press-this';
 321  var photostorage = false;
 322  //]]>
 323  </script>
 324  
 325  <?php
 326      do_action('admin_print_styles');
 327      do_action('admin_print_scripts');
 328      do_action('admin_head');
 329  
 330      if ( user_can_richedit() )
 331          wp_tiny_mce( true, array( 'height' => '370' ) );
 332  ?>
 333      <script type="text/javascript">
 334      function insert_plain_editor(text) {
 335          edCanvas = document.getElementById('content');
 336          edInsertContent(edCanvas, text);
 337      }
 338      function set_editor(text) {
 339          if ( '' == text || '<p></p>' == text ) text = '<p><br /></p>';
 340          if ( tinyMCE.activeEditor ) tinyMCE.execCommand('mceSetContent', false, text);
 341      }
 342      function insert_editor(text) {
 343          if ( '' != text && tinyMCE.activeEditor && ! tinyMCE.activeEditor.isHidden()) {
 344              tinyMCE.execCommand('mceInsertContent', false, '<p>' + decodeURI(tinymce.DOM.decode(text)) + '</p>', {format : 'raw'});
 345          } else {
 346              insert_plain_editor(decodeURI(text));
 347          }
 348      }
 349      function append_editor(text) {
 350          if ( '' != text && tinyMCE.activeEditor && ! tinyMCE.activeEditor.isHidden()) {
 351              tinyMCE.execCommand('mceSetContent', false, tinyMCE.activeEditor.getContent({format : 'raw'}) + '<p>' + text + '</p>');
 352              tinyMCE.execCommand('mceCleanup');
 353          } else {
 354              insert_plain_editor(text);
 355          }
 356      }
 357  
 358      function show(tab_name) {
 359          jQuery('#extra-fields').html('');
 360          switch(tab_name) {
 361              case 'video' :
 362                  jQuery('#extra-fields').load('<?php echo esc_url($_SERVER['PHP_SELF']); ?>', { ajax: 'video', s: '<?php echo esc_attr($selection); ?>'}, function() {
 363                      <?php
 364                      $content = '';
 365                      if ( preg_match("/youtube\.com\/watch/i", $url) ) {
 366                          list($domain, $video_id) = split("v=", $url);
 367                          $video_id = esc_attr($video_id);
 368                          $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>';
 369  
 370                      } elseif ( preg_match("/vimeo\.com\/[0-9]+/i", $url) ) {
 371                          list($domain, $video_id) = split(".com/", $url);
 372                          $video_id = esc_attr($video_id);
 373                          $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>';
 374  
 375                          if ( trim($selection) == '' )
 376                              $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>';
 377  
 378                      } elseif ( strpos( $selection, '<object' ) !== false ) {
 379                          $content = $selection;
 380                      }
 381                      ?>
 382                      jQuery('#embed-code').prepend('<?php echo htmlentities($content); ?>');
 383                  });
 384                  jQuery('#extra-fields').show();
 385                  return false;
 386                  break;
 387              case 'photo' :
 388                  function setup_photo_actions() {
 389                      jQuery('.close').click(function() {
 390                          jQuery('#extra-fields').hide();
 391                          jQuery('#extra-fields').html('');
 392                      });
 393                      jQuery('.refresh').click(function() {
 394                          photostorage = false;
 395                          show('photo');
 396                      });
 397                      jQuery('#photo-add-url').attr('href', '?ajax=photo_thickbox_url&height=200&width=500');
 398                      tb_init('#extra-fields .thickbox');
 399                      jQuery('#waiting').hide();
 400                      jQuery('#extra-fields').show();
 401                  }
 402                  jQuery('#extra-fields').before('<div id="waiting"><img src="<?php echo esc_url( admin_url( 'images/wpspin_light.gif' ) ); ?>" alt="" /> <?php echo esc_js( __( 'Loading...' ) ); ?></div>');
 403  
 404                  if(photostorage == false) {
 405                      jQuery.ajax({
 406                          type: "GET",
 407                          cache : false,
 408                          url: "<?php echo esc_url($_SERVER['PHP_SELF']); ?>",
 409                          data: "ajax=photo_js&u=<?php echo urlencode($url)?>",
 410                          dataType : "script",
 411                          success : function(data) {
 412                              eval(data);
 413                              photostorage = jQuery('#extra-fields').html();
 414                              setup_photo_actions();
 415                          }
 416                      });
 417                  } else {
 418                      jQuery('#extra-fields').html(photostorage);
 419                      setup_photo_actions();
 420                  }
 421                  return false;
 422                  break;
 423          }
 424      }
 425      jQuery(document).ready(function($) {
 426          //resize screen
 427          window.resizeTo(720,540);
 428          // set button actions
 429          jQuery('#photo_button').click(function() { show('photo'); return false; });
 430          jQuery('#video_button').click(function() { show('video'); return false; });
 431          // auto select
 432          <?php if ( preg_match("/youtube\.com\/watch/i", $url) ) { ?>
 433              show('video');
 434          <?php } elseif ( preg_match("/vimeo\.com\/[0-9]+/i", $url) ) { ?>
 435              show('video');
 436          <?php  } elseif ( preg_match("/flickr\.com/i", $url) ) { ?>
 437              show('photo');
 438          <?php } ?>
 439          jQuery('#title').unbind();
 440          jQuery('#publish, #save').click(function() { jQuery('#saving').css('display', 'inline'); });
 441  
 442          $('#tagsdiv-post_tag, #categorydiv').children('h3, .handlediv').click(function(){
 443              $(this).siblings('.inside').toggle();
 444          });
 445      });
 446  </script>
 447  </head>
 448  <body class="press-this wp-admin">
 449  <div id="wphead"></div>
 450  <form action="press-this.php?action=post" method="post">
 451  <div id="poststuff" class="metabox-holder">
 452      <div id="side-info-column">
 453          <div class="sleeve">
 454              <h1 id="viewsite"><a href="<?php echo get_option('home'); ?>/" target="_blank"><?php bloginfo('name'); ?> &rsaquo; <?php _e('Press This') ?></a></span></h1>
 455  
 456              <?php wp_nonce_field('press-this') ?>
 457              <input type="hidden" name="post_type" id="post_type" value="text"/>
 458              <input type="hidden" name="autosave" id="autosave" />
 459              <input type="hidden" id="original_post_status" name="original_post_status" value="draft" />
 460              <input type="hidden" id="prev_status" name="prev_status" value="draft" />
 461  
 462              <!-- This div holds the photo metadata -->
 463              <div class="photolist"></div>
 464  
 465              <div id="submitdiv" class="stuffbox">
 466                  <div class="handlediv" title="<?php _e( 'Click to toggle' ); ?>">
 467                      <br/>
 468                  </div>
 469                  <h3><?php _e('Publish') ?></h3>
 470                  <div class="inside">
 471                      <p>
 472                          <input class="button" type="submit" name="draft" value="<?php esc_attr_e('Save Draft') ?>" id="save" />
 473                          <?php if ( current_user_can('publish_posts') ) { ?>
 474                              <input class="button-primary" type="submit" name="publish" value="<?php esc_attr_e('Publish') ?>" id="publish" />
 475                          <?php } else { ?>
 476                              <br /><br /><input class="button-primary" type="submit" name="review" value="<?php esc_attr_e('Submit for Review') ?>" id="review" />
 477                          <?php } ?>
 478                          <img src="<?php echo esc_url( admin_url( 'images/wpspin_light.gif' ) ); ?>" alt="" id="saving" style="display:none;" />
 479                      </p>
 480                  </div>
 481              </div>
 482  
 483              <div id="categorydiv" class="stuffbox">
 484                  <div class="handlediv" title="<?php _e( 'Click to toggle' ); ?>">
 485                      <br/>
 486                  </div>
 487                  <h3><?php _e('Categories') ?></h3>
 488                  <div class="inside">
 489  
 490                      <div id="categories-all" class="tabs-panel">
 491  
 492                          <ul id="categorychecklist" class="list:category categorychecklist form-no-clear">
 493                              <?php wp_category_checklist($post_ID, false) ?>
 494                          </ul>
 495                      </div>
 496  
 497                      <div id="category-adder" class="wp-hidden-children">
 498                          <a id="category-add-toggle" href="#category-add" class="hide-if-no-js" tabindex="3"><?php _e( '+ Add New Category' ); ?></a>
 499                          <p id="category-add" class="wp-hidden-child">
 500                              <label class="screen-reader-text" for="newcat"><?php _e( 'Add New Category' ); ?></label><input type="text" name="newcat" id="newcat" class="form-required form-input-tip" value="<?php esc_attr_e( 'New category name' ); ?>" tabindex="3" aria-required="true"/>
 501                              <label class="screen-reader-text" for="newcat_parent"><?php _e('Parent category'); ?>:</label><?php wp_dropdown_categories( array( 'hide_empty' => 0, 'name' => 'newcat_parent', 'orderby' => 'name', 'hierarchical' => 1, 'show_option_none' => __('Parent category'), 'tab_index' => 3 ) ); ?>
 502                              <input type="button" id="category-add-sumbit" class="add:categorychecklist:category-add button" value="<?php esc_attr_e( 'Add' ); ?>" tabindex="3" />
 503                              <?php wp_nonce_field( 'add-category', '_ajax_nonce', false ); ?>
 504                              <span id="category-ajax-response"></span>
 505                          </p>
 506                      </div>
 507                  </div>
 508              </div>
 509  
 510              <div id="tagsdiv-post_tag" class="stuffbox" >
 511                  <div class="handlediv" title="<?php _e( 'Click to toggle' ); ?>">
 512                      <br/>
 513                  </div>
 514                  <h3><span><?php _e('Post Tags'); ?></span></h3>
 515                  <div class="inside">
 516                      <div class="tagsdiv" id="post_tag">
 517                          <p class="jaxtag">
 518                              <label class="screen-reader-text" for="newtag"><?php _e('Post Tags'); ?></label>
 519                              <input type="hidden" name="tax_input[post_tag]" class="the-tags" id="tax-input[post_tag]" value="" />
 520                              <div class="ajaxtag">
 521                                  <input type="text" name="newtag[post_tag]" class="newtag form-input-tip" size="16" autocomplete="off" value="" />
 522                                  <input type="button" class="button tagadd" value="<?php esc_attr_e('Add'); ?>" tabindex="3" />
 523                              </div>
 524                          </p>
 525                          <div class="tagchecklist"></div>
 526                      </div>
 527                      <p class="tagcloud-link"><a href="#titlediv" class="tagcloud-link" id="link-post_tag"><?php _e('Choose from the most used tags in Post Tags'); ?></a></p>
 528                  </div>
 529              </div>
 530          </div>
 531      </div>
 532      <div class="posting">
 533          <?php if ( isset($posted) && intval($posted) ) { $post_ID = intval($posted); ?>
 534          <div id="message" class="updated"><p><strong><?php _e('Your post has been saved.'); ?></strong> <a onclick="window.opener.location.replace(this.href); window.close();" href="<?php echo get_permalink( $post_ID); ?>"><?php _e('View post'); ?></a> | <a href="<?php echo get_edit_post_link( $post_ID ); ?>" onclick="window.opener.location.replace(this.href); window.close();"><?php _e('Edit Post'); ?></a> | <a href="#" onclick="window.close();"><?php _e('Close Window'); ?></a></p></div>
 535          <?php } ?>
 536  
 537          <div id="titlediv">
 538              <div class="titlewrap">
 539                  <input name="title" id="title" class="text" value="<?php echo esc_attr($title);?>"/>
 540              </div>
 541          </div>
 542  
 543          <div id="extra-fields" style="display: none"></div>
 544  
 545          <div class="postdivrich">
 546              <ul id="actions" class="actions">
 547  
 548                  <li id="photo_button">
 549                      Add: <?php if ( current_user_can('upload_files') ) { ?><a title="<?php _e('Insert an Image'); ?>" href="#">
 550  <img alt="<?php _e('Insert an Image'); ?>" src="<?php echo esc_url( admin_url( 'images/media-button-image.gif' ) ); ?>"/></a>
 551                      <?php } ?>
 552                  </li>
 553                  <li id="video_button">
 554                      <a title="<?php _e('Embed a Video'); ?>" href="#"><img alt="<?php _e('Embed a Video'); ?>" src="<?php echo esc_url( admin_url( 'images/media-button-video.gif' ) ); ?>"/></a>
 555                  </li>
 556                  <?php if ( user_can_richedit() ) { ?>
 557                  <li id="switcher">
 558                      <?php wp_print_scripts( 'quicktags' ); ?>
 559                      <?php add_filter('the_editor_content', 'wp_richedit_pre'); ?>
 560                      <a id="edButtonHTML" onclick="switchEditors.go('content', 'html');"><?php _e('HTML'); ?></a>
 561                      <a id="edButtonPreview" class="active" onclick="switchEditors.go('content', 'tinymce');"><?php _e('Visual'); ?></a>
 562                      <div class="zerosize"><input accesskey="e" type="button" onclick="switchEditors.go('content')" /></div>
 563                  </li>
 564                  <?php } ?>
 565              </ul>
 566              <div id="quicktags"></div>
 567              <div class="editor-container">
 568                  <textarea name="content" id="content" style="width:100%;" class="theEditor" rows="15"><?php
 569                      if ( $selection )
 570                          echo wp_richedit_pre($selection);
 571                      if ( $url ) {
 572                          echo '<p>';
 573                          if ( $selection )
 574                              _e('via ');
 575                          printf( "<a href='%s'>%s</a>.</p>", esc_url( $url ), esc_html( $title ) );
 576                      }
 577                  ?></textarea>
 578              </div>
 579          </div>
 580      </div>
 581  </div>
 582  </form>
 583  <?php do_action('admin_print_footer_scripts'); ?>
 584  <script type="text/javascript">if(typeof wpOnload=='function')wpOnload();</script>
 585  </body>
 586  </html>


Generated: Mon Apr 5 14:26:09 2010 Cross-referenced by PHPXref 0.7