/wp-content/plugins/custompress/ui-admin/edit-post-type.php
https://github.com/sharpmachine/wakeupmedia.com · PHP · 528 lines · 526 code · 2 blank · 0 comment · 57 complexity · d8550e0c2d4da723e0dc53bda25e179c MD5 · raw file
- <?php if (!defined('ABSPATH')) die('No direct access allowed!'); ?>
- <?php $post_type = $this->post_types[$_GET['ct_edit_post_type']]; ?>
- <h3><?php _e('Edit Post Type', $this->text_domain); ?></h3>
- <form action="" method="post" class="ct-post-type">
- <div class="ct-wrap-left">
- <div class="ct-table-wrap">
- <div class="ct-arrow"><br></div>
- <h3 class="ct-toggle"><?php _e('Post Type', $this->text_domain) ?></h3>
- <table class="form-table">
- <tr>
- <th>
- <label for="post_type"><?php _e('Post Type', $this->text_domain) ?> (<span class="ct-required"> <?php _e('required', $this->text_domain); ?> </span>)</label>
- </th>
- <td>
- <input type="text" value="<?php if ( isset( $_GET['ct_edit_post_type'] ) ) echo $_GET['ct_edit_post_type']; ?>" disabled="disabled">
- <input type="hidden" name="post_type" value="<?php if ( isset( $_GET['ct_edit_post_type'] ) ) echo $_GET['ct_edit_post_type']; ?>" />
- <span class="description"><?php _e('The new post type system name ( max. 20 characters ). Alphanumeric characters and underscores only. Min 2 letters. Once added the post type system name cannot be changed.', $this->text_domain); ?></span>
- </td>
- </tr>
- </table>
- </div>
- <div class="ct-table-wrap">
- <div class="ct-arrow"><br></div>
- <h3 class="ct-toggle"><?php _e('Supports', $this->text_domain) ?></h3>
- <table class="form-table supports">
- <tr>
- <th>
- <label for="supports"><?php _e('Supports', $this->text_domain) ?></label>
- </th>
- <td>
- <span class="description"><?php _e('Register support of certain features for a post type.', $this->text_domain); ?></span>
- </td>
- </tr>
- <tr>
- <th></th>
- <td>
- <input type="checkbox" name="supports[title]" value="title" <?php if ( isset( $post_type['supports']['title'] ) ) echo 'checked="checked"'; ?>>
- <span class="description"><strong><?php _e('Title', $this->text_domain) ?></strong></span>
- <br />
- <input type="checkbox" name="supports[editor]" value="editor" <?php if ( isset( $post_type['supports']['editor'] ) ) echo 'checked="checked"'; ?>>
- <span class="description"><strong><?php _e('Editor', $this->text_domain) ?></strong> - <?php _e('Content', $this->text_domain) ?></span>
- <br />
- <input type="checkbox" name="supports[author]" value="author" <?php if ( isset( $post_type['supports']['author'] ) ) echo 'checked="checked"'; ?>>
- <span class="description"><strong><?php _e('Author', $this->text_domain) ?></strong></span>
- <br />
- <input type="checkbox" name="supports[thumbnail]" value="thumbnail" <?php if ( isset( $post_type['supports']['thumbnail'] ) ) echo 'checked="checked"'; ?>>
- <span class="description"><strong><?php _e('Thumbnail', $this->text_domain) ?></strong> - <?php _e('Featured Image - current theme must also support post-thumbnails.', $this->text_domain) ?></span>
- <br />
- <input type="checkbox" name="supports[excerpt]" value="excerpt" <?php if ( isset( $post_type['supports']['excerpt'] ) ) echo 'checked="checked"'; ?>>
- <span class="description"><strong><?php _e('Excerpt', $this->text_domain) ?></strong></span>
- <br />
- <input type="checkbox" name="supports[trackbacks]" value="trackbacks" <?php if ( isset( $post_type['supports']['trackbacks'] ) ) echo 'checked="checked"'; ?>>
- <span class="description"><strong><?php _e('Trackbacks', $this->text_domain) ?></strong></span>
- <br />
- <input type="checkbox" name="supports[custom_fields]" value="custom_fields" <?php if ( isset( $post_type['supports']['custom_fields'] ) ) echo 'checked="checked"'; ?>>
- <span class="description"><strong><?php _e('Custom Fields', $this->text_domain) ?></strong></span>
- <br />
- <input type="checkbox" name="supports[comments]" value="comments" <?php if ( isset( $post_type['supports']['comments'] ) ) echo 'checked="checked"'; ?>>
- <span class="description"><strong><?php _e('Comments', $this->text_domain) ?></strong> - <?php _e('Also will see comment count balloon on edit screen.', $this->text_domain) ?></span>
- <br />
- <input type="checkbox" name="supports[revisions]" value="revisions" <?php if ( isset( $post_type['supports']['revisions'] ) ) echo 'checked="checked"'; ?>>
- <span class="description"><strong><?php _e('Revisions', $this->text_domain) ?></strong> - <?php _e('Will store revisions.', $this->text_domain) ?></span>
- <br />
- <input type="checkbox" name="supports[page_attributes]" value="page-attributes" <?php if ( isset( $post_type['supports']['page_attributes'] ) ) echo 'checked="checked"'; ?>>
- <span class="description"><strong><?php _e('Page Attributes', $this->text_domain) ?></strong> - <?php _e('Template and menu order - Hierarchical must be true!', $this->text_domain) ?></span>
- <br />
- <input type="checkbox" name="supports[post_formats]" value="post-formats" <?php if ( isset( $post_type['supports']['post_formats'] ) ) echo 'checked="checked"'; ?>>
- <span class="description"><strong><?php _e('Post Formats', $this->text_domain) ?></strong> - <?php _e('Add post formats.', $this->text_domain) ?></span>
- </td>
- </tr>
- </table>
- </div>
- <div class="ct-table-wrap">
- <div class="ct-arrow"><br></div>
- <h3 class="ct-toggle"><?php _e('Capability Type', $this->text_domain) ?></h3>
- <table class="form-table">
- <tr>
- <th>
- <label for="capability_type"><?php _e('Capability Type', $this->text_domain) ?></label>
- </th>
- <td>
- <input type="text" name="capability_type" value="<?php if ( isset( $post_type['capability_type'] ) ) echo $post_type['capability_type']; ?>">
- <input type="checkbox" name="capability_type_edit" value="1" />
- <span class="description ct-capability-type-edit"><strong><?php _e('Edit' , $this->text_domain); ?></strong> (<?php _e('advanced' , $this->text_domain); ?>)</span>
- <span class="description"><?php _e('The post type to use for checking read, edit, and delete capabilities. Default: "post".' , $this->text_domain); ?></span>
- </td>
- </tr>
- </table>
- </div>
- <div class="ct-table-wrap">
- <div class="ct-arrow"><br></div>
- <h3 class="ct-toggle"><?php _e('Labels', $this->text_domain) ?></h3>
- <table class="form-table">
- <tr>
- <th>
- <label for="name"><?php _e('Name', $this->text_domain) ?></label>
- </th>
- <td>
- <input type="text" name="labels[name]" value="<?php if ( isset( $post_type['labels']['name'] ) ) echo $post_type['labels']['name']; ?>">
- <span class="description"><?php _e('General name for the post type, usually plural.', $this->text_domain); ?></span>
- </td>
- </tr>
- <tr>
- <th>
- <label for="singular_name"><?php _e('Singular Name', $this->text_domain) ?></label>
- </th>
- <td>
- <input type="text" name="labels[singular_name]" value="<?php if ( isset( $post_type['labels']['singular_name'] ) ) echo ( $post_type['labels']['singular_name'] ); ?>">
- <span class="description"><?php _e('Name for one object of this post type. Defaults to value of name.', $this->text_domain); ?></span>
- </td>
- </tr>
- <tr>
- <th>
- <label for="add_new"><?php _e('Add New', $this->text_domain) ?></label>
- </th>
- <td>
- <input type="text" name="labels[add_new]" value="<?php if ( isset( $post_type['labels']['add_new'] ) ) echo ( $post_type['labels']['add_new'] ); ?>">
- <span class="description"><?php _e('The add new text. The default is Add New for both hierarchical and non-hierarchical types.', $this->text_domain); ?></span>
- </td>
- </tr>
- <tr>
- <th>
- <label for="add_new_item"><?php _e('Add New Item', $this->text_domain) ?></label>
- </th>
- <td>
- <input type="text" name="labels[add_new_item]" value="<?php if ( isset( $post_type['labels']['add_new_item'] ) ) echo ( $post_type['labels']['add_new_item'] ); ?>">
- <span class="description"><?php _e('The add new item text. Default is Add New Post/Add New Page.', $this->text_domain); ?></span>
- </td>
- </tr>
- <tr>
- <th>
- <label for="edit_item"><?php _e('Edit Item', $this->text_domain) ?></label>
- </th>
- <td>
- <input type="text" name="labels[edit_item]" value="<?php if ( isset( $post_type['labels']['edit_item'] ) ) echo ( $post_type['labels']['edit_item'] ); ?>">
- <span class="description"><?php _e('The edit item text. Default is Edit Post/Edit Page.', $this->text_domain); ?></span>
- </td>
- </tr>
- <tr>
- <th>
- <label for="new_item"><?php _e('New Item', $this->text_domain) ?></label>
- </th>
- <td>
- <input type="text" name="labels[new_item]" value="<?php if ( isset( $post_type['labels']['new_item'] ) ) echo ( $post_type['labels']['new_item'] ); ?>">
- <span class="description"><?php _e('The new item text. Default is New Post/New Page.', $this->text_domain); ?></span>
- </td>
- </tr>
- <tr>
- <th>
- <label for="view_item"><?php _e('View Item', $this->text_domain) ?></label>
- </th>
- <td>
- <input type="text" name="labels[view_item]" value="<?php if ( isset( $post_type['labels']['view_item'] ) ) echo ( $post_type['labels']['view_item'] ); ?>">
- <span class="description"><?php _e('The view item text. Default is View Post/View Page.', $this->text_domain); ?></span>
- </td>
- </tr>
- <tr>
- <th>
- <label for="search_items"><?php _e('Search Items', $this->text_domain) ?></label>
- </th>
- <td>
- <input type="text" name="labels[search_items]" value="<?php if ( isset( $post_type['labels']['search_items'] ) ) echo ( $post_type['labels']['search_items'] ); ?>">
- <span class="description"><?php _e('The search items text. Default is Search Posts/Search Pages.', $this->text_domain); ?></span>
- </td>
- </tr>
- <tr>
- <th>
- <label for="not_found"><?php _e('Not Found', $this->text_domain) ?></label>
- </th>
- <td>
- <input type="text" name="labels[not_found]" value="<?php if ( isset( $post_type['labels']['not_found'] ) ) echo ( $post_type['labels']['not_found'] ); ?>">
- <span class="description"><?php _e('The not found text. Default is No posts found/No pages found.', $this->text_domain); ?></span>
- </td>
- </tr>
- <tr>
- <th>
- <label for="not_found_in_trash"><?php _e('Not Found In Trash', $this->text_domain) ?></label>
- </th>
- <td>
- <input type="text" name="labels[not_found_in_trash]" value="<?php if ( isset( $post_type['labels']['not_found_in_trash'] ) ) echo ( $post_type['labels']['not_found_in_trash'] ); ?>">
- <span class="description"><?php _e('The not found in trash text. Default is No posts found in Trash/No pages found in Trash.', $this->text_domain); ?></span>
- </td>
- </tr>
- <tr>
- <th>
- <label for="parent_item_colon"><?php _e('Parent Item Colon', $this->text_domain) ?></label>
- </th>
- <td>
- <input type="text" name="labels[parent_item_colon]" value="<?php if ( isset( $post_type['labels']['parent_item_colon'] ) ) echo ( $post_type['labels']['parent_item_colon'] ); ?>">
- <span class="description"><?php _e('The parent text. This string isn\'t used on non-hierarchical types. In hierarchical ones the default is Parent Page', $this->text_domain); ?></span>
- </td>
- </tr>
- </table>
- </div>
- <div class="ct-table-wrap">
- <div class="ct-arrow"><br></div>
- <h3 class="ct-toggle"><?php _e('Description', $this->text_domain) ?></h3>
- <table class="form-table">
- <tr>
- <th>
- <label for="description"><?php _e('Description', $this->text_domain) ?></label>
- </th>
- <td>
- <textarea name="description" cols="52" rows="3"><?php if ( isset( $post_type['description'] ) ) echo ( $post_type['description'] ); ?></textarea>
- <span class="description"><?php _e('A short descriptive summary of what the post type is.', $this->text_domain); ?></span>
- </td>
- </tr>
- </table>
- </div>
- <div class="ct-table-wrap">
- <div class="ct-arrow"><br></div>
- <h3 class="ct-toggle"><?php _e('Menu Position', $this->text_domain) ?></h3>
- <table class="form-table">
- <tr>
- <th>
- <label for="menu_position"><?php _e('Menu Position', $this->text_domain) ?></label>
- </th>
- <td>
- <input type="text" name="menu_position" value="<?php if ( isset( $post_type['menu_position'] ) ) echo ( $post_type['menu_position'] ); ?>">
- <span class="description"><?php _e('5 - below Posts; 10 - below Media; 20 - below Pages; 60 - below first separator; 100 - below second separator', $this->text_domain); ?></span>
- </td>
- </tr>
- </table>
- </div>
- <div class="ct-table-wrap">
- <div class="ct-arrow"><br></div>
- <h3 class="ct-toggle"><?php _e('Menu Icon', $this->text_domain) ?></h3>
- <table class="form-table">
- <tr>
- <th>
- <label for="menu_icon"><?php _e('Menu Icon', $this->text_domain) ?></label>
- </th>
- <td>
- <input type="text" name="menu_icon" value="<?php if ( isset( $post_type['menu_icon'] ) ) echo ( $post_type['menu_icon'] ); ?>">
- <span class="description"><?php _e('The url to the icon to be used for this menu.', $this->text_domain); ?></span>
- </td>
- </tr>
- </table>
- </div>
- </div>
- <div class="ct-wrap-right">
- <div class="ct-table-wrap">
- <div class="ct-arrow"><br></div>
- <h3 class="ct-toggle"><?php _e('Public', $this->text_domain) ?></h3>
- <table class="form-table publica">
- <tr>
- <th>
- <label for="public"><?php _e('Public', $this->text_domain) ?></label>
- </th>
- <td>
- <span class="description"><?php _e('Meta argument used to define default values for publicly_queriable, show_ui, show_in_nav_menus and exclude_from_search.', $this->text_domain); ?></span>
- </td>
- </tr>
- <tr>
- <th></th>
- <td>
- <input type="radio" name="public" value="1" <?php if ( isset( $post_type['public'] ) && $post_type['public'] === true ) echo ( 'checked="checked"' ); ?>>
- <span class="description"><strong><?php _e('TRUE', $this->text_domain); ?></strong><br />
- <?php _e('Display a user-interface for this "post_type"', $this->text_domain);?><br /><code>( show_ui = TRUE )</code><br /><br />
- <?php _e('Show "post_type" for selection in navigation menus', $this->text_domain); ?><br /><code>( show_in_nav_menus = TRUE )</code><br /><br />
- <?php _e('"post_type" queries can be performed from the front-end', $this->text_domain); ?><br /><code>( publicly_queryable = TRUE )</code><br /><br />
- <?php _e('Exclude posts with this post type from search results', $this->text_domain); ?><br /><code>( exclude_from_search = FALSE )</code></span>
- <br /><br />
- <input type="radio" name="public" value="0" <?php if ( isset( $post_type['public'] ) && $post_type['public'] === false ) echo ( 'checked="checked"' ); ?>>
- <span class="description"><strong><?php _e('FALSE', $this->text_domain); ?></strong><br />
- <?php _e('Don not display a user-interface for this "post_type"', $this->text_domain);?><br /><code>( show_ui = FALSE )</code><br /><br />
- <?php _e('Hide "post_type" for selection in navigation menus', $this->text_domain); ?><br /><code>( show_in_nav_menus = FALSE )</code><br /><br />
- <?php _e('"post_type" queries cannot be performed from the front-end', $this->text_domain); ?><br /><code>( publicly_queryable = FALSE )</code><br /><br />
- <?php _e('Exclude posts with this post type from search results', $this->text_domain); ?><br /><code>( exclude_from_search = TRUE )</code></span>
- <br /><br />
- <input type="radio" name="public" value="advanced" <?php if ( !isset( $post_type['public'] ) ) echo ( 'checked="checked"' ); ?>>
- <span class="description"><strong><?php _e('Advanced', $this->text_domain); ?></strong> - <?php _e('You can set each component manualy.', $this->text_domain); ?></span>
- </td>
- </tr>
- </table>
- </div>
- <div class="ct-table-wrap">
- <div class="ct-arrow"><br></div>
- <h3 class="ct-toggle"><?php _e('Show UI', $this->text_domain) ?></h3>
- <table class="form-table show-ui">
- <tr>
- <th>
- <label for="show_ui"><?php _e('Show UI', $this->text_domain) ?></label>
- </th>
- <td>
- <span class="description"><?php _e('Whether to generate a default UI for managing this post type. Note that built-in post types, such as post and page, are intentionally set to false.', $this->text_domain); ?></span>
- </td>
- </tr>
- <tr>
- <th></th>
- <td>
- <input type="radio" name="show_ui" value="1" <?php if ( !empty( $post_type['show_ui'] ) ) echo ( 'checked="checked"' ); ?>>
- <span class="description"><strong><?php _e('TRUE', $this->text_domain); ?></strong> - <?php _e('Display a user-interface (admin panel) for this post type.', $this->text_domain); ?></span>
- <br />
- <input type="radio" name="show_ui" value="0" <?php if ( empty( $post_type['show_ui'] ) ) echo ( 'checked="checked"' ); ?>>
- <span class="description"><strong><?php _e('FALSE', $this->text_domain); ?></strong> - <?php _e('Do not display a user-interface for this post type.', $this->text_domain); ?></span>
- </td>
- </tr>
- </table>
- </div>
- <div class="ct-table-wrap">
- <div class="ct-arrow"><br></div>
- <h3 class="ct-toggle"><?php _e('Show In Nav Menus ', $this->text_domain) ?></h3>
- <table class="form-table show-in-nav-menus">
- <tr>
- <th>
- <label for="show_in_nav_menus"><?php _e('Show In Nav Menus', $this->text_domain) ?></label>
- </th>
- <td>
- <span class="description"><?php _e('Whether post_type is available for selection in navigation menus.', $this->text_domain); ?></span>
- </td>
- </tr>
- <tr>
- <th></th>
- <td>
- <input type="radio" name="show_in_nav_menus" value="1" <?php if ( !empty( $post_type['show_in_nav_menus'] ) ) echo ( 'checked="checked"' ); ?>>
- <span class="description"><strong><?php _e('TRUE', $this->text_domain); ?></strong></span>
- <br />
- <input type="radio" name="show_in_nav_menus" value="0" <?php if ( empty( $post_type['show_in_nav_menus'] ) ) echo ( 'checked="checked"' ); ?>>
- <span class="description"><strong><?php _e('FALSE', $this->text_domain); ?></strong></span>
- </td>
- </tr>
- </table>
- </div>
- <div class="ct-table-wrap">
- <div class="ct-arrow"><br></div>
- <h3 class="ct-toggle"><?php _e('Publicly Queryable', $this->text_domain) ?></h3>
- <table class="form-table public-queryable">
- <tr>
- <th>
- <label for="publicly_queryable"><?php _e('Publicly Queryable', $this->text_domain) ?></label>
- </th>
- <td>
- <span class="description"><?php _e('Whether post_type queries can be performed from the front end.', $this->text_domain); ?></span>
- </td>
- </tr>
- <tr>
- <th></th>
- <td>
- <input type="radio" name="publicly_queryable" value="1" <?php if ( !empty( $post_type['publicly_queryable'] ) ) echo ( 'checked="checked"' ); ?>>
- <span class="description"><strong><?php _e('TRUE', $this->text_domain); ?></strong></span>
- <br />
- <input type="radio" name="publicly_queryable" value="0" <?php if ( empty( $post_type['publicly_queryable'] ) ) echo ( 'checked="checked"' ); ?>>
- <span class="description"><strong><?php _e('FALSE', $this->text_domain); ?></strong></span>
- </td>
- </tr>
- </table>
- </div>
- <div class="ct-table-wrap">
- <div class="ct-arrow"><br></div>
- <h3 class="ct-toggle"><?php _e('Exclude From Search', $this->text_domain) ?></h3>
- <table class="form-table exclude-from-search">
- <tr>
- <th>
- <label for="exclude_from_search"><?php _e('Exclude From Search', $this->text_domain) ?></label>
- </th>
- <td>
- <span class="description"><?php _e('Whether to exclude posts with this post type from search results.', $this->text_domain); ?></span>
- </td>
- </tr>
- <tr>
- <th></th>
- <td>
- <input type="radio" name="exclude_from_search" value="1" <?php if ( !empty( $post_type['exclude_from_search'] ) ) echo ( 'checked="checked"' ); ?>>
- <span class="description"><strong><?php _e('TRUE', $this->text_domain); ?></strong></span>
- <br />
- <input type="radio" name="exclude_from_search" value="0" <?php if ( empty( $post_type['exclude_from_search'] ) ) echo ( 'checked="checked"' ); ?>>
- <span class="description"><strong><?php _e('FALSE', $this->text_domain); ?></strong></span>
- </td>
- </tr>
- </table>
- </div>
- <div class="ct-table-wrap">
- <div class="ct-arrow"><br></div>
- <h3 class="ct-toggle"><?php _e('Hierarchical', $this->text_domain) ?></h3>
- <table class="form-table">
- <tr>
- <th>
- <label for="hierarchical"><?php _e('Hierarchical', $this->text_domain) ?></label>
- </th>
- <td>
- <span class="description"><?php _e('Whether the post type is hierarchical. Allows Parent to be specified.', $this->text_domain); ?></span>
- </td>
- </tr>
- <tr>
- <th></th>
- <td>
- <input type="radio" name="hierarchical" value="1" <?php if ( !empty( $post_type['hierarchical'] ) ) echo ( 'checked="checked"' ); ?>>
- <span class="description"><strong><?php _e('TRUE', $this->text_domain); ?></strong></span>
- <br />
- <input type="radio" name="hierarchical" value="0" <?php if ( empty( $post_type['hierarchical'] ) ) echo ( 'checked="checked"' ); ?>>
- <span class="description"><strong><?php _e('FALSE', $this->text_domain); ?></strong></span>
- </td>
- </tr>
- </table>
- </div>
- <div class="ct-table-wrap">
- <div class="ct-arrow"><br></div>
- <h3 class="ct-toggle"><?php _e('Has Archive', $this->text_domain) ?></h3>
- <table class="form-table">
- <tr>
- <th>
- <label for="hierarchical"><?php _e('Has Archive', $this->text_domain) ?></label>
- </th>
- <td>
- <span class="description"><?php _e('Enables post type archives. Will use string as archive slug. Will generate the proper rewrite rules if rewrite is enabled.', $this->text_domain); ?></span>
- </td>
- </tr>
- <tr>
- <th></th>
- <td>
- <input type="radio" name="has_archive" value="1" <?php if ( !empty( $post_type['has_archive'] ) ) echo 'checked="checked"'; ?>>
- <span class="description"><strong><?php _e('TRUE', $this->text_domain); ?></strong></span>
- <br />
- <input type="radio" name="has_archive" value="0" <?php if ( empty( $post_type['has_archive'] ) ) echo 'checked="checked"'; ?>>
- <span class="description"><strong><?php _e('FALSE', $this->text_domain); ?></strong></span>
- <br /><br />
- <span class="description"><strong><?php _e('Custom Slug', $this->text_domain); ?></strong></span>
- <br />
- <input type="text" name="has_archive_slug" value="<?php if ( is_string( $post_type['has_archive'] ) ) echo $post_type['has_archive']; ?>" />
- <br />
- <span class="description"><?php _e('Custom slug for post type archive.', $this->text_domain); ?></span>
- </td>
- </tr>
- </table>
- </div>
- <div class="ct-table-wrap">
- <div class="ct-arrow"><br></div>
- <h3 class="ct-toggle"><?php _e('Rewrite', $this->text_domain) ?></h3>
- <table class="form-table">
- <tr>
- <th>
- <label for="rewrite"><?php _e('Rewrite', $this->text_domain) ?></label>
- </th>
- <td>
- <span class="description"><?php _e('Rewrite permalinks with this format.', $this->text_domain); ?></span>
- </td>
- </tr>
- <tr>
- <th></th>
- <td>
- <input type="radio" name="rewrite" value="1" <?php if ( !empty( $post_type['rewrite'] ) ) echo 'checked="checked"'; ?>>
- <span class="description"><strong><?php _e('TRUE', $this->text_domain); ?></strong></span>
- <br />
- <input type="radio" name="rewrite" value="0" <?php if ( empty( $post_type['rewrite'] ) ) echo 'checked="checked"'; ?>>
- <span class="description"><strong><?php _e('FALSE', $this->text_domain); ?></strong></span>
- <br /><br />
- <span class="description"><strong><?php _e('Custom Slug', $this->text_domain); ?></strong></span>
- <br />
- <input type="text" name="rewrite_slug" value="<?php if ( !empty( $post_type['rewrite']['slug'] ) ) echo( $post_type['rewrite']['slug'] ); ?>" />
- <br />
- <span class="description"><?php _e('Prepend posts with this slug. If empty default will be used.', $this->text_domain); ?></span>
- <br /><br />
- <input type="checkbox" name="rewrite_with_front" value="1" <?php if ( !empty( $post_type['rewrite']['with_front'] ) ) echo 'checked="checked"'; ?>>
- <span class="description"><strong><?php _e('Allow Front Base', $this->text_domain); ?></strong></span>
- <br />
- <span class="description"><?php _e('Allowing permalinks to be prepended with front base.', $this->text_domain); ?></span>
- <br /><br />
- <input type="checkbox" name="rewrite_feeds" value="1" <?php if ( !empty( $post_type['rewrite']['feeds'] ) ) echo 'checked="checked"'; ?>>
- <span class="description"><strong><?php _e('Feeds', $this->text_domain); ?></strong></span>
- <br />
- <span class="description"><?php _e('Default will use has_archive.', $this->text_domain); ?></span>
- <br />
- <input type="checkbox" name="rewrite_pages" value="1" <?php if ( !empty( $post_type['rewrite']['pages'] ) ) echo 'checked="checked"'; ?>>
- <span class="description"><strong><?php _e('Pages', $this->text_domain); ?></strong></span>
- <br />
- <span class="description"><?php _e('Defaults to true.', $this->text_domain); ?></span>
- </td>
- </tr>
- </table>
- </div>
- <div class="ct-table-wrap">
- <div class="ct-arrow"><br></div>
- <h3 class="ct-toggle"><?php _e('Query var', $this->text_domain) ?></h3>
- <table class="form-table">
- <tr>
- <th>
- <label for="query_var"><?php _e('Query var', $this->text_domain) ?></label>
- </th>
- <td>
- <span class="description"><?php _e('Name of the query var to use for this post type.', $this->text_domain); ?></span>
- </td>
- </tr>
- <tr>
- <th></th>
- <td>
- <input type="radio" name="query_var" value="1" <?php if ( !empty( $post_type['query_var'] ) ) echo ( 'checked="checked"' ); ?>>
- <span class="description"><strong><?php _e('TRUE', $this->text_domain); ?></strong></span>
- <br />
- <input type="radio" name="query_var" value="0" <?php if ( empty( $post_type['query_var'] ) ) echo ( 'checked="checked"' ); ?>>
- <span class="description"><strong><?php _e('FALSE', $this->text_domain); ?></strong></span>
- </td>
- </tr>
- </table>
- </div>
- <div class="ct-table-wrap">
- <div class="ct-arrow"><br></div>
- <h3 class="ct-toggle"><?php _e('Can Export', $this->text_domain) ?></h3>
- <table class="form-table">
- <tr>
- <th>
- <label for="hierarchical"><?php _e('Can Export', $this->text_domain) ?></label>
- </th>
- <td>
- <span class="description"><?php _e('Can this post_type be exported.', $this->text_domain); ?></span>
- </td>
- </tr>
- <tr>
- <th></th>
- <td>
- <input type="radio" name="can_export" value="1" <?php if ( !empty( $post_type['can_export'] ) ) echo ( 'checked="checked"' ); ?>>
- <span class="description"><strong><?php _e('TRUE', $this->text_domain); ?></strong></span>
- <br />
- <input type="radio" name="can_export" value="0" <?php if ( empty( $post_type['can_export'] ) ) echo ( 'checked="checked"' ); ?>>
- <span class="description"><strong><?php _e('FALSE', $this->text_domain); ?></strong></span>
- </td>
- </tr>
- </table>
- </div>
- </div>
- <p class="submit">
- <?php wp_nonce_field('submit_post_type'); ?>
- <input type="submit" class="button-primary" name="submit" value="Save Changes" />
- </p>
- <br /><br /><br /><br />
- </form>