PluginProbe ʕ •ᴥ•ʔ
Nested Pages / 1.3.4
Nested Pages v1.3.4
3.1.8 3.1.9 3.2.0 3.2.1 3.2.10 3.2.11 3.2.12 3.2.13 3.2.2 3.2.3 3.2.4 3.2.5 3.2.6 3.2.7 3.2.8 3.2.9 trunk 1.0 1.1 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.1.6 1.1.7 1.1.8 1.1.9 1.2.0 1.2.1 1.3.0 1.3.1 1.3.10 1.3.11 1.3.12 1.3.13 1.3.14 1.3.15 1.3.2 1.3.4 1.3.5 1.3.6 1.3.7 1.3.8 1.3.9 1.4.0 1.4.1 1.5.0 1.5.1 1.5.2 1.5.3 1.5.4 1.6.0 1.6.1 1.6.2 1.6.3 1.6.3.1 1.6.3.2 1.6.4 1.6.5 1.6.5.1 1.6.5.2 1.6.6 1.6.7 1.6.8 1.7.0 1.7.1 2.0.1 2.0.2 2.0.3 2.0.4 3.0.1 3.0.10 3.0.11 3.0.2 3.0.3 3.0.4 3.0.5 3.0.6 3.0.7 3.0.8 3.0.9 3.1.0 3.1.1 3.1.10 3.1.11 3.1.12 3.1.13 3.1.14 3.1.15 3.1.16 3.1.17 3.1.18 3.1.19 3.1.2 3.1.20 3.1.21 3.1.22 3.1.3 3.1.4 3.1.5 3.1.6 3.1.7
wp-nested-pages / app / Views / forms / quickedit-link.php
wp-nested-pages / app / Views / forms Last commit date
bulk-add.php 11 years ago empty-trash-modal.php 11 years ago link-form.php 11 years ago new-child.php 11 years ago quickedit-link.php 11 years ago quickedit-post.php 11 years ago
quickedit-link.php
88 lines
1 <?php
2 $post_type_object = get_post_type_object( 'np-redirect' );
3 $can_publish = current_user_can( $post_type_object->cap->publish_posts );
4 ?>
5
6 <form method="get" action="">
7 <div class="form-interior">
8 <h3><?php _e('Link', 'nestedpages'); ?></h3>
9
10 <div class="np-quickedit-error" style="clear:both;display:none;"></div>
11
12 <div class="fields">
13
14 <div class="left">
15
16 <div class="form-control">
17 <label><?php _e( 'Navigation Label' ); ?></label>
18 <input type="text" name="post_title" class="np_title" value="" />
19 </div>
20
21 <div class="form-control">
22 <label><?php _e( 'URL' ); ?></label>
23 <input type="text" name="post_content" class="np_content" value="" />
24 </div>
25
26 <div class="form-control">
27 <label><?php _e( 'Status' ); ?></label>
28 <select name="_status" class="np_status">
29 <?php if ( $can_publish ) : ?>
30 <option value="publish"><?php _e( 'Published' ); ?></option>
31 <option value="future"><?php _e( 'Scheduled' ); ?></option>
32 <?php endif; ?>
33 <option value="pending"><?php _e( 'Pending Review' ); ?></option>
34 <option value="draft"><?php _e( 'Draft' ); ?></option>
35 </select>
36 </div>
37
38 </div><!-- .left -->
39
40 <div class="right">
41
42 <?php if ( $this->user->canSortPages() && !$this->isSearch() ) : // Menu Options Button ?>
43 <div class="form-control">
44 <label><?php _e( 'Title Attribute' ); ?></label>
45 <input type="text" name="np_title_attribute" class="np_title_attribute" value="" />
46 </div>
47 <div class="form-control">
48 <label><?php _e( 'CSS Classes' ); ?></label>
49 <input type="text" name="np_nav_css_classes" class="np_nav_css_classes" value="" />
50 </div>
51 <div class="comments">
52 <label>
53 <input type="checkbox" name="nav_status" class="np_nav_status" value="hide" />
54 <span class="checkbox-title"><?php _e( 'Hide in Nav Menu', 'nestedpages' ); ?></span>
55 </label>
56 </div>
57 <div class="comments">
58 <label>
59 <input type="checkbox" name="nested_pages_status" class="np_status" value="hide" />
60 <span class="checkbox-title"><?php _e( 'Hide in Nested Pages', 'nestedpages' ); ?></span>
61 </label>
62 </div>
63 <div class="comments">
64 <label>
65 <input type="checkbox" name="link_target" class="link_target" value="_blank" />
66 <span class="checkbox-title"><?php _e( 'Open link in a new window/tab' ); ?></span>
67 </label>
68 </div>
69 <?php endif; // Edit theme options?>
70
71 </div><!-- .right -->
72
73 </div><!-- .fields -->
74
75 </div><!-- .form-interior -->
76
77 <div class="buttons">
78 <input type="hidden" name="post_id" class="np_id" value="<?php echo get_the_id(); ?>">
79 <input type="hidden" name="parent_id" class="np_parent_id" value="">
80 <a accesskey="c" href="#inline-edit" class="button-secondary alignleft np-cancel-quickedit">
81 <?php _e( 'Cancel' ); ?>
82 </a>
83 <a accesskey="s" href="#inline-edit" class="button-primary np-save-quickedit-redirect alignright">
84 <?php _e( 'Update' ); ?>
85 </a>
86 <span class="np-qe-loading"></span>
87 </div>
88 </form>