[ Index ]

PHP Cross Reference of Wordpress 2.9.1

title

Body

[close]

/wp-admin/ -> edit-tag-form.php (source)

   1  <?php
   2  /**
   3   * Edit tag form for inclusion in administration panels.
   4   *
   5   * @package WordPress
   6   * @subpackage Administration
   7   */
   8  
   9  // don't load directly
  10  if ( !defined('ABSPATH') )
  11      die('-1');
  12  
  13  if ( !current_user_can('manage_categories') )
  14      wp_die(__('You do not have sufficient permissions to edit tags for this blog.'));
  15  
  16  if ( empty($tag_ID) ) { ?>
  17      <div id="message" class="updated fade"><p><strong><?php _e('A tag was not selected for editing.'); ?></strong></p></div>
  18  <?php
  19      return;
  20  }
  21  
  22  do_action('edit_tag_form_pre', $tag); ?>
  23  
  24  <div class="wrap">
  25  <?php screen_icon(); ?>
  26  <h2><?php _e('Edit Tag'); ?></h2>
  27  <div id="ajax-response"></div>
  28  <form name="edittag" id="edittag" method="post" action="edit-tags.php" class="validate">
  29  <input type="hidden" name="action" value="editedtag" />
  30  <input type="hidden" name="tag_ID" value="<?php echo esc_attr($tag->term_id) ?>" />
  31  <input type="hidden" name="taxonomy" value="<?php echo esc_attr($taxonomy) ?>" />
  32  <?php wp_original_referer_field(true, 'previous'); wp_nonce_field('update-tag_' . $tag_ID); ?>
  33      <table class="form-table">
  34          <tr class="form-field form-required">
  35              <th scope="row" valign="top"><label for="name"><?php _e('Tag name') ?></label></th>
  36              <td><input name="name" id="name" type="text" value="<?php if ( isset( $tag->name ) ) echo esc_attr($tag->name); ?>" size="40" aria-required="true" /></td>
  37          </tr>
  38          <tr class="form-field">
  39              <th scope="row" valign="top"><label for="slug"><?php _e('Tag slug') ?></label></th>
  40              <td><input name="slug" id="slug" type="text" value="<?php if ( isset( $tag->slug ) ) echo esc_attr(apply_filters('editable_slug', $tag->slug)); ?>" size="40" />
  41              <p class="description"><?php _e('The &#8220;slug&#8221; is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens.'); ?></p></td>
  42          </tr>
  43          <tr class="form-field">
  44              <th scope="row" valign="top"><label for="description"><?php _e('Description') ?></label></th>
  45              <td><textarea name="description" id="description" rows="5" cols="50" style="width: 97%;"><?php echo esc_html($tag->description); ?></textarea><br />
  46              <span class="description"><?php _e('The description is not prominent by default, however some themes may show it.'); ?></span></td>
  47          </tr>
  48          <?php do_action('edit_tag_form_fields', $tag); ?>
  49      </table>
  50  <p class="submit"><input type="submit" class="button-primary" name="submit" value="<?php esc_attr_e('Update Tag'); ?>" /></p>
  51  <?php do_action('edit_tag_form', $tag); ?>
  52  </form>
  53  </div>


Generated: Fri Jan 8 00:19:48 2010 Cross-referenced by PHPXref 0.7