Version Description
Download this release
Release Info
Developer | namith.jawahar |
Plugin | Wp-Insert |
Version | 1.6.1 |
Comparing to | |
See all releases |
Code changes from version 1.6.0 to 1.6.1
- css/adminStyle.css +15 -0
- images/move-16x16.png +0 -0
- includes/ads.php +1 -0
- includes/essentials.php +8 -2
- includes/pages.php +67 -0
- includes/privacypolicy.php +1 -1
- js/jquery/jquery-ui-1.7.1.custom.min.js +273 -0
- readme.txt +14 -9
- screenshot-9.png +0 -0
- wp-insert.php +1 -1
css/adminStyle.css
CHANGED
@@ -66,4 +66,19 @@ margin-left:205px;
|
|
66 |
.multipleSelectBoxControl div select option {
|
67 |
font-size: 10px;
|
68 |
padding: 0px;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
69 |
}
|
66 |
.multipleSelectBoxControl div select option {
|
67 |
font-size: 10px;
|
68 |
padding: 0px;
|
69 |
+
}
|
70 |
+
|
71 |
+
#wp_insert_page_list {
|
72 |
+
list-style: none;
|
73 |
+
}
|
74 |
+
|
75 |
+
#wp_insert_page_list li {
|
76 |
+
display: block;
|
77 |
+
padding: 5px 10px; margin-bottom: 3px;
|
78 |
+
background-color: #efefef;
|
79 |
+
}
|
80 |
+
|
81 |
+
#wp_insert_page_list li img.handle {
|
82 |
+
margin-right: 20px;
|
83 |
+
cursor: move;
|
84 |
}
|
images/move-16x16.png
ADDED
Binary file
|
includes/ads.php
CHANGED
@@ -7,6 +7,7 @@ function smart_add_menu() {
|
|
7 |
add_submenu_page(__FILE__, 'wp-insert', 'Manage Ads<br/>(Posts and Sidebars)', 8, __FILE__, 'wp_insert_add_adspage');
|
8 |
add_submenu_page(__FILE__, 'wp-insert', 'Manage Ads<br/>(Template Tags)', 8, 'Manage Ads Advanced', 'wp_insert_add_advanced_spage');
|
9 |
add_submenu_page(__FILE__, 'wp-insert', 'Manage Privacy Policy', 8, 'Manage Privacy Policy', 'wp_insert_privacy_policy_page');
|
|
|
10 |
add_submenu_page(__FILE__, 'wp-insert', 'Manage Feeds', 8, 'Manage Feeds', 'smart_add_feedspage');
|
11 |
add_submenu_page(__FILE__, 'wp-insert', 'Tracking Codes', 8, 'Tracking Codes', 'smart_add_analytics');
|
12 |
add_submenu_page(__FILE__, 'wp-insert', 'WYSIWYG Editor', 8, 'WYSIWYG Editor', 'smart_add_wysiwyg_pages');
|
7 |
add_submenu_page(__FILE__, 'wp-insert', 'Manage Ads<br/>(Posts and Sidebars)', 8, __FILE__, 'wp_insert_add_adspage');
|
8 |
add_submenu_page(__FILE__, 'wp-insert', 'Manage Ads<br/>(Template Tags)', 8, 'Manage Ads Advanced', 'wp_insert_add_advanced_spage');
|
9 |
add_submenu_page(__FILE__, 'wp-insert', 'Manage Privacy Policy', 8, 'Manage Privacy Policy', 'wp_insert_privacy_policy_page');
|
10 |
+
add_submenu_page(__FILE__, 'wp-insert', 'Manage Pages', 8, 'Manage Pages', 'wp_insert_pages_page');
|
11 |
add_submenu_page(__FILE__, 'wp-insert', 'Manage Feeds', 8, 'Manage Feeds', 'smart_add_feedspage');
|
12 |
add_submenu_page(__FILE__, 'wp-insert', 'Tracking Codes', 8, 'Tracking Codes', 'smart_add_analytics');
|
13 |
add_submenu_page(__FILE__, 'wp-insert', 'WYSIWYG Editor', 8, 'WYSIWYG Editor', 'smart_add_wysiwyg_pages');
|
includes/essentials.php
CHANGED
@@ -80,11 +80,16 @@ wp_nonce_field('update-options');
|
|
80 |
wp_nonce_field( 'closedpostboxes', 'closedpostboxesnonce', false );
|
81 |
wp_nonce_field( 'meta-box-order', 'meta-box-order-nonce', false );
|
82 |
?>
|
|
|
|
|
|
|
|
|
83 |
<script type="text/javascript" src="<?php echo WP_PLUGIN_URL; ?>/wp-insert/js/jquery/ui.core.js"></script>
|
84 |
<script type="text/javascript" src="<?php echo WP_PLUGIN_URL; ?>/wp-insert/js/jquery/ui.draggable.js"></script>
|
85 |
<script type="text/javascript" src="<?php echo WP_PLUGIN_URL; ?>/wp-insert/js/jquery/jquery.corner.js"></script>
|
86 |
-
<?php
|
87 |
-
|
|
|
88 |
<script type="text/javascript" src="<?php echo WP_PLUGIN_URL; ?>/wp-insert/js/common.js"></script>
|
89 |
<div id="poststuff" class="metabox-holder has-right-sidebar">
|
90 |
<div id="side-info-column" class="inner-sidebar">
|
@@ -126,6 +131,7 @@ require_once (dirname(__FILE__) . '/widgethook.php');
|
|
126 |
require_once (dirname(__FILE__) . '/contenthook.php');
|
127 |
require_once (dirname(__FILE__) . '/ads.php');
|
128 |
require_once (dirname(__FILE__) . '/adsadvanced.php');
|
|
|
129 |
require_once (dirname(__FILE__) . '/privacypolicy.php');
|
130 |
require_once (dirname(__FILE__) . '/feeds.php');
|
131 |
?>
|
80 |
wp_nonce_field( 'closedpostboxes', 'closedpostboxesnonce', false );
|
81 |
wp_nonce_field( 'meta-box-order', 'meta-box-order-nonce', false );
|
82 |
?>
|
83 |
+
<?php if($page_type == 'pages') { ?>
|
84 |
+
<script type="text/javascript" src="<?php echo WP_PLUGIN_URL; ?>/wp-insert/js/jquery/jquery-ui-1.7.1.custom.min.js"></script>
|
85 |
+
<?php } ?>
|
86 |
+
<?php if($page_type == 'ads') { ?>
|
87 |
<script type="text/javascript" src="<?php echo WP_PLUGIN_URL; ?>/wp-insert/js/jquery/ui.core.js"></script>
|
88 |
<script type="text/javascript" src="<?php echo WP_PLUGIN_URL; ?>/wp-insert/js/jquery/ui.draggable.js"></script>
|
89 |
<script type="text/javascript" src="<?php echo WP_PLUGIN_URL; ?>/wp-insert/js/jquery/jquery.corner.js"></script>
|
90 |
+
<?php
|
91 |
+
require_once (dirname(__FILE__) . '/postpicker.php');
|
92 |
+
} ?>
|
93 |
<script type="text/javascript" src="<?php echo WP_PLUGIN_URL; ?>/wp-insert/js/common.js"></script>
|
94 |
<div id="poststuff" class="metabox-holder has-right-sidebar">
|
95 |
<div id="side-info-column" class="inner-sidebar">
|
131 |
require_once (dirname(__FILE__) . '/contenthook.php');
|
132 |
require_once (dirname(__FILE__) . '/ads.php');
|
133 |
require_once (dirname(__FILE__) . '/adsadvanced.php');
|
134 |
+
require_once (dirname(__FILE__) . '/pages.php');
|
135 |
require_once (dirname(__FILE__) . '/privacypolicy.php');
|
136 |
require_once (dirname(__FILE__) . '/feeds.php');
|
137 |
?>
|
includes/pages.php
ADDED
@@ -0,0 +1,67 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
function wp_insert_pages_page() {
|
3 |
+
global $screen_layout_columns;
|
4 |
+
wp_insert_update_page_order();
|
5 |
+
add_meta_box('wp_insert_manage_page_order', 'Manage Page Order', 'wp_insert_manage_page_order_HTML', 'col_1');
|
6 |
+
|
7 |
+
$parameters = 'wp_insert_updated_page_order';
|
8 |
+
wp_insert_settings_page_layout($parameters, 'WP-INSERT : Manage Pages', 'pages');
|
9 |
+
}
|
10 |
+
|
11 |
+
function wp_insert_manage_page_order_HTML() { ?>
|
12 |
+
<input id="wp_insert_updated_page_order" name="wp_insert_updated_page_order" type="hidden" value="" />
|
13 |
+
<ul id="wp_insert_page_list">
|
14 |
+
<?php
|
15 |
+
$pages = get_pages('sort_column=menu_order');
|
16 |
+
foreach($pages as $page) {
|
17 |
+
if($page->post_parent == 0) { ?>
|
18 |
+
<li id="wp_insert_listItem_<?php echo $page->ID; ?>">
|
19 |
+
<img src="<?php echo WP_PLUGIN_URL; ?>/wp-insert/images/move-16x16.png" width="16px" height="16px" alt="move" class="handle" />
|
20 |
+
<strong><?php echo $page->post_title; ?></strong></a>
|
21 |
+
<?php
|
22 |
+
/*$temp = '';
|
23 |
+
foreach($pages as $subPage) {
|
24 |
+
if($subPage->post_parent == $page->ID) {
|
25 |
+
$temp .= '<li id="wp_insert_listItem_'.$subPage->ID.'">';
|
26 |
+
$temp .= '<img src="<?php echo WP_PLUGIN_URL; ?>/wp-insert/images/move-16x16.png" width="16px" height="16px" alt="move" class="handle" />';
|
27 |
+
$temp .= '<strong>'.$subPage->post_title.'</strong></a>';
|
28 |
+
$temp .= '</li>';
|
29 |
+
}
|
30 |
+
}
|
31 |
+
if($temp != '') { echo '<ul style="margin-left: 25px;">'.$temp.'</ul>'; }*/
|
32 |
+
?>
|
33 |
+
</li>
|
34 |
+
<?php }
|
35 |
+
}
|
36 |
+
?>
|
37 |
+
</ul>
|
38 |
+
<script type="text/javascript">
|
39 |
+
jQuery("#wp_insert_page_list").sortable({
|
40 |
+
handle : '.handle',
|
41 |
+
update : function () {
|
42 |
+
wpInsertToggleNotSavedAlert();
|
43 |
+
var items = jQuery('#wp_insert_page_list').sortable('toArray');
|
44 |
+
for (i=0; i<items.length; i++) {
|
45 |
+
items[i] = items[i].replace("wp_insert_listItem_", "");
|
46 |
+
}
|
47 |
+
document.getElementById('wp_insert_updated_page_order').value = items.join(",");
|
48 |
+
}
|
49 |
+
});
|
50 |
+
</script>
|
51 |
+
<?php }
|
52 |
+
|
53 |
+
function wp_insert_update_page_order() {
|
54 |
+
if(get_option(wp_insert_updated_page_order) != '') {
|
55 |
+
global $wpdb;
|
56 |
+
$pageOrder = explode(",", get_option(wp_insert_updated_page_order));
|
57 |
+
$sql = "UPDATE $wpdb->posts SET menu_order = CASE id ";
|
58 |
+
for($i = 0; $i < count($pageOrder); $i++) {
|
59 |
+
global $wpdb;
|
60 |
+
$sql .= "WHEN ".$pageOrder[$i]." THEN ".$i." ";
|
61 |
+
}
|
62 |
+
$sql .= "END WHERE id IN (".get_option(wp_insert_updated_page_order).")";
|
63 |
+
$wpdb->query($sql);
|
64 |
+
update_option(wp_insert_updated_page_order, '');
|
65 |
+
}
|
66 |
+
}
|
67 |
+
?>
|
includes/privacypolicy.php
CHANGED
@@ -54,7 +54,7 @@ function wp_insert_privacy_policy_page() {
|
|
54 |
add_meta_box('wp_insert_edit_assign_privacy_policy_page', 'Assign Page for Privacy Policy', 'wp_insert_edit_assign_privacy_policy_page_HTML', 'col_1');
|
55 |
|
56 |
$parameters = 'wp_insert_privacy_policy_content';
|
57 |
-
wp_insert_settings_page_layout($parameters, 'WP-INSERT : Manage Privacy Policy', '
|
58 |
}
|
59 |
|
60 |
function wp_insert_edit_assign_privacy_policy_page_HTML() { ?>
|
54 |
add_meta_box('wp_insert_edit_assign_privacy_policy_page', 'Assign Page for Privacy Policy', 'wp_insert_edit_assign_privacy_policy_page_HTML', 'col_1');
|
55 |
|
56 |
$parameters = 'wp_insert_privacy_policy_content';
|
57 |
+
wp_insert_settings_page_layout($parameters, 'WP-INSERT : Manage Privacy Policy', 'privacy');
|
58 |
}
|
59 |
|
60 |
function wp_insert_edit_assign_privacy_policy_page_HTML() { ?>
|
js/jquery/jquery-ui-1.7.1.custom.min.js
ADDED
@@ -0,0 +1,273 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*
|
2 |
+
* jQuery UI 1.7.1
|
3 |
+
*
|
4 |
+
* Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
|
5 |
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
6 |
+
* and GPL (GPL-LICENSE.txt) licenses.
|
7 |
+
*
|
8 |
+
* http://docs.jquery.com/UI
|
9 |
+
*/
|
10 |
+
* jQuery UI Draggable 1.7.1
|
11 |
+
*
|
12 |
+
* Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
|
13 |
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
14 |
+
* and GPL (GPL-LICENSE.txt) licenses.
|
15 |
+
*
|
16 |
+
* http://docs.jquery.com/UI/Draggables
|
17 |
+
*
|
18 |
+
* Depends:
|
19 |
+
* ui.core.js
|
20 |
+
*/
|
21 |
+
* jQuery UI Droppable 1.7.1
|
22 |
+
*
|
23 |
+
* Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
|
24 |
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
25 |
+
* and GPL (GPL-LICENSE.txt) licenses.
|
26 |
+
*
|
27 |
+
* http://docs.jquery.com/UI/Droppables
|
28 |
+
*
|
29 |
+
* Depends:
|
30 |
+
* ui.core.js
|
31 |
+
* ui.draggable.js
|
32 |
+
*/
|
33 |
+
* jQuery UI Resizable 1.7.1
|
34 |
+
*
|
35 |
+
* Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
|
36 |
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
37 |
+
* and GPL (GPL-LICENSE.txt) licenses.
|
38 |
+
*
|
39 |
+
* http://docs.jquery.com/UI/Resizables
|
40 |
+
*
|
41 |
+
* Depends:
|
42 |
+
* ui.core.js
|
43 |
+
*/
|
44 |
+
* jQuery UI Selectable 1.7.1
|
45 |
+
*
|
46 |
+
* Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
|
47 |
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
48 |
+
* and GPL (GPL-LICENSE.txt) licenses.
|
49 |
+
*
|
50 |
+
* http://docs.jquery.com/UI/Selectables
|
51 |
+
*
|
52 |
+
* Depends:
|
53 |
+
* ui.core.js
|
54 |
+
*/
|
55 |
+
* jQuery UI Sortable 1.7.1
|
56 |
+
*
|
57 |
+
* Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
|
58 |
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
59 |
+
* and GPL (GPL-LICENSE.txt) licenses.
|
60 |
+
*
|
61 |
+
* http://docs.jquery.com/UI/Sortables
|
62 |
+
*
|
63 |
+
* Depends:
|
64 |
+
* ui.core.js
|
65 |
+
*/
|
66 |
+
* jQuery UI Accordion 1.7.1
|
67 |
+
*
|
68 |
+
* Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
|
69 |
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
70 |
+
* and GPL (GPL-LICENSE.txt) licenses.
|
71 |
+
*
|
72 |
+
* http://docs.jquery.com/UI/Accordion
|
73 |
+
*
|
74 |
+
* Depends:
|
75 |
+
* ui.core.js
|
76 |
+
*/
|
77 |
+
* jQuery UI Dialog 1.7.1
|
78 |
+
*
|
79 |
+
* Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
|
80 |
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
81 |
+
* and GPL (GPL-LICENSE.txt) licenses.
|
82 |
+
*
|
83 |
+
* http://docs.jquery.com/UI/Dialog
|
84 |
+
*
|
85 |
+
* Depends:
|
86 |
+
* ui.core.js
|
87 |
+
* ui.draggable.js
|
88 |
+
* ui.resizable.js
|
89 |
+
*/
|
90 |
+
* jQuery UI Slider 1.7.1
|
91 |
+
*
|
92 |
+
* Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
|
93 |
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
94 |
+
* and GPL (GPL-LICENSE.txt) licenses.
|
95 |
+
*
|
96 |
+
* http://docs.jquery.com/UI/Slider
|
97 |
+
*
|
98 |
+
* Depends:
|
99 |
+
* ui.core.js
|
100 |
+
*/
|
101 |
+
* jQuery UI Tabs 1.7.1
|
102 |
+
*
|
103 |
+
* Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
|
104 |
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
105 |
+
* and GPL (GPL-LICENSE.txt) licenses.
|
106 |
+
*
|
107 |
+
* http://docs.jquery.com/UI/Tabs
|
108 |
+
*
|
109 |
+
* Depends:
|
110 |
+
* ui.core.js
|
111 |
+
*/
|
112 |
+
* jQuery UI Datepicker 1.7.1
|
113 |
+
*
|
114 |
+
* Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
|
115 |
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
116 |
+
* and GPL (GPL-LICENSE.txt) licenses.
|
117 |
+
*
|
118 |
+
* http://docs.jquery.com/UI/Datepicker
|
119 |
+
*
|
120 |
+
* Depends:
|
121 |
+
* ui.core.js
|
122 |
+
*/
|
123 |
+
* jQuery UI Progressbar 1.7.1
|
124 |
+
*
|
125 |
+
* Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
|
126 |
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
127 |
+
* and GPL (GPL-LICENSE.txt) licenses.
|
128 |
+
*
|
129 |
+
* http://docs.jquery.com/UI/Progressbar
|
130 |
+
*
|
131 |
+
* Depends:
|
132 |
+
* ui.core.js
|
133 |
+
*/
|
134 |
+
* jQuery UI Effects 1.7.1
|
135 |
+
*
|
136 |
+
* Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
|
137 |
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
138 |
+
* and GPL (GPL-LICENSE.txt) licenses.
|
139 |
+
*
|
140 |
+
* http://docs.jquery.com/UI/Effects/
|
141 |
+
*/
|
142 |
+
* jQuery UI Effects Blind 1.7.1
|
143 |
+
*
|
144 |
+
* Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
|
145 |
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
146 |
+
* and GPL (GPL-LICENSE.txt) licenses.
|
147 |
+
*
|
148 |
+
* http://docs.jquery.com/UI/Effects/Blind
|
149 |
+
*
|
150 |
+
* Depends:
|
151 |
+
* effects.core.js
|
152 |
+
*/
|
153 |
+
* jQuery UI Effects Bounce 1.7.1
|
154 |
+
*
|
155 |
+
* Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
|
156 |
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
157 |
+
* and GPL (GPL-LICENSE.txt) licenses.
|
158 |
+
*
|
159 |
+
* http://docs.jquery.com/UI/Effects/Bounce
|
160 |
+
*
|
161 |
+
* Depends:
|
162 |
+
* effects.core.js
|
163 |
+
*/
|
164 |
+
* jQuery UI Effects Clip 1.7.1
|
165 |
+
*
|
166 |
+
* Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
|
167 |
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
168 |
+
* and GPL (GPL-LICENSE.txt) licenses.
|
169 |
+
*
|
170 |
+
* http://docs.jquery.com/UI/Effects/Clip
|
171 |
+
*
|
172 |
+
* Depends:
|
173 |
+
* effects.core.js
|
174 |
+
*/
|
175 |
+
* jQuery UI Effects Drop 1.7.1
|
176 |
+
*
|
177 |
+
* Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
|
178 |
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
179 |
+
* and GPL (GPL-LICENSE.txt) licenses.
|
180 |
+
*
|
181 |
+
* http://docs.jquery.com/UI/Effects/Drop
|
182 |
+
*
|
183 |
+
* Depends:
|
184 |
+
* effects.core.js
|
185 |
+
*/
|
186 |
+
* jQuery UI Effects Explode 1.7.1
|
187 |
+
*
|
188 |
+
* Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
|
189 |
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
190 |
+
* and GPL (GPL-LICENSE.txt) licenses.
|
191 |
+
*
|
192 |
+
* http://docs.jquery.com/UI/Effects/Explode
|
193 |
+
*
|
194 |
+
* Depends:
|
195 |
+
* effects.core.js
|
196 |
+
*/
|
197 |
+
* jQuery UI Effects Fold 1.7.1
|
198 |
+
*
|
199 |
+
* Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
|
200 |
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
201 |
+
* and GPL (GPL-LICENSE.txt) licenses.
|
202 |
+
*
|
203 |
+
* http://docs.jquery.com/UI/Effects/Fold
|
204 |
+
*
|
205 |
+
* Depends:
|
206 |
+
* effects.core.js
|
207 |
+
*/
|
208 |
+
* jQuery UI Effects Highlight 1.7.1
|
209 |
+
*
|
210 |
+
* Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
|
211 |
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
212 |
+
* and GPL (GPL-LICENSE.txt) licenses.
|
213 |
+
*
|
214 |
+
* http://docs.jquery.com/UI/Effects/Highlight
|
215 |
+
*
|
216 |
+
* Depends:
|
217 |
+
* effects.core.js
|
218 |
+
*/
|
219 |
+
* jQuery UI Effects Pulsate 1.7.1
|
220 |
+
*
|
221 |
+
* Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
|
222 |
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
223 |
+
* and GPL (GPL-LICENSE.txt) licenses.
|
224 |
+
*
|
225 |
+
* http://docs.jquery.com/UI/Effects/Pulsate
|
226 |
+
*
|
227 |
+
* Depends:
|
228 |
+
* effects.core.js
|
229 |
+
*/
|
230 |
+
* jQuery UI Effects Scale 1.7.1
|
231 |
+
*
|
232 |
+
* Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
|
233 |
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
234 |
+
* and GPL (GPL-LICENSE.txt) licenses.
|
235 |
+
*
|
236 |
+
* http://docs.jquery.com/UI/Effects/Scale
|
237 |
+
*
|
238 |
+
* Depends:
|
239 |
+
* effects.core.js
|
240 |
+
*/
|
241 |
+
* jQuery UI Effects Shake 1.7.1
|
242 |
+
*
|
243 |
+
* Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
|
244 |
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
245 |
+
* and GPL (GPL-LICENSE.txt) licenses.
|
246 |
+
*
|
247 |
+
* http://docs.jquery.com/UI/Effects/Shake
|
248 |
+
*
|
249 |
+
* Depends:
|
250 |
+
* effects.core.js
|
251 |
+
*/
|
252 |
+
* jQuery UI Effects Slide 1.7.1
|
253 |
+
*
|
254 |
+
* Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
|
255 |
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
256 |
+
* and GPL (GPL-LICENSE.txt) licenses.
|
257 |
+
*
|
258 |
+
* http://docs.jquery.com/UI/Effects/Slide
|
259 |
+
*
|
260 |
+
* Depends:
|
261 |
+
* effects.core.js
|
262 |
+
*/
|
263 |
+
* jQuery UI Effects Transfer 1.7.1
|
264 |
+
*
|
265 |
+
* Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
|
266 |
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
267 |
+
* and GPL (GPL-LICENSE.txt) licenses.
|
268 |
+
*
|
269 |
+
* http://docs.jquery.com/UI/Effects/Transfer
|
270 |
+
*
|
271 |
+
* Depends:
|
272 |
+
* effects.core.js
|
273 |
+
*/
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link:http://www.wp-insert.smartlogix.co.in/
|
|
4 |
Tags: adsense,google,widget,post,admin,plugin,rss,feedburner,ads,subscribe,fck editor,category description editor,excerpt,WYSIWYG,WYSIWYG editor,in post ads,feed logo,smartlogix,ads in feeds,analytics,google analytics,header,footer,ad management,advertisements,content,ad,advertising,privacy policy,privacy,policy,automatic privacy policy,blog,feed,feeds,formatting,html,javascript,manage,post,posts,seo,sidebar,widget,widgets,wordpress,tracking,syntex highlighter,highlighting,theme tools,plugin tools,developer tools,highlighting,theme editor,plugin editor,middle ad,ad filtration,pagewise ad filtration,template ads,ad tags,adbrite ads,adsense ready,easy adsense,adsense optimized
|
5 |
Requires at least: 2.7
|
6 |
Tested up to: 2.9
|
7 |
-
Stable tag: 1.6.
|
8 |
|
9 |
Wp-Insert is the most powerful yet easiest to use wordpress ad management plugin which does a lot more than ad management.
|
10 |
|
@@ -52,6 +52,10 @@ Manage Ads (Completely Rewritten with a New and Powerful Interface)
|
|
52 |
* Assign Privacy Policy to an existing page or create one automatically.
|
53 |
* WYSIWYG Editor to finetune the Privacy Policy to your requirements.
|
54 |
|
|
|
|
|
|
|
|
|
55 |
**Manage Feeds**
|
56 |
|
57 |
* Your logo in your feeds
|
@@ -90,14 +94,15 @@ Extract the zip file and just drop the contents in the wp-content/plugins/ direc
|
|
90 |
|
91 |
== Screenshots ==
|
92 |
|
93 |
-
1. Wp-Insert
|
94 |
-
2. Wp-Insert
|
95 |
-
3. Wp-Insert
|
96 |
-
4. Wp-Insert
|
97 |
-
5. Wp-Insert
|
98 |
-
6. Wp-Insert
|
99 |
-
7. Wp-Insert in
|
100 |
-
8. Wp-Insert
|
|
|
101 |
|
102 |
|
103 |
== Frequently Asked Questions ==
|
4 |
Tags: adsense,google,widget,post,admin,plugin,rss,feedburner,ads,subscribe,fck editor,category description editor,excerpt,WYSIWYG,WYSIWYG editor,in post ads,feed logo,smartlogix,ads in feeds,analytics,google analytics,header,footer,ad management,advertisements,content,ad,advertising,privacy policy,privacy,policy,automatic privacy policy,blog,feed,feeds,formatting,html,javascript,manage,post,posts,seo,sidebar,widget,widgets,wordpress,tracking,syntex highlighter,highlighting,theme tools,plugin tools,developer tools,highlighting,theme editor,plugin editor,middle ad,ad filtration,pagewise ad filtration,template ads,ad tags,adbrite ads,adsense ready,easy adsense,adsense optimized
|
5 |
Requires at least: 2.7
|
6 |
Tested up to: 2.9
|
7 |
+
Stable tag: 1.6.1
|
8 |
|
9 |
Wp-Insert is the most powerful yet easiest to use wordpress ad management plugin which does a lot more than ad management.
|
10 |
|
52 |
* Assign Privacy Policy to an existing page or create one automatically.
|
53 |
* WYSIWYG Editor to finetune the Privacy Policy to your requirements.
|
54 |
|
55 |
+
**Manage Pages**
|
56 |
+
|
57 |
+
* Reorder Pages using a drag and drop interface.
|
58 |
+
|
59 |
**Manage Feeds**
|
60 |
|
61 |
* Your logo in your feeds
|
94 |
|
95 |
== Screenshots ==
|
96 |
|
97 |
+
1. Wp-Insert - Managing Ads (Auto insertion).
|
98 |
+
2. Wp-Insert - Managing Ads using Template tags.
|
99 |
+
3. Wp-Insert - Managing Feeds
|
100 |
+
4. Wp-Insert - Managing Tracking Codes.
|
101 |
+
5. Wp-Insert - Managing WYSIWYG editing.
|
102 |
+
6. Wp-Insert - Syntax Highlighting.
|
103 |
+
7. Wp-Insert - Adding an in post Ad.
|
104 |
+
8. Wp-Insert - Managing Privacy policy.
|
105 |
+
9. Wp-Insert - Reordering pages.
|
106 |
|
107 |
|
108 |
== Frequently Asked Questions ==
|
screenshot-9.png
ADDED
Binary file
|
wp-insert.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: wp-insert
|
4 |
Plugin URI: http://www.wp-insert.smartlogix.co.in/
|
5 |
Description: The ultimate wordpress plugin
|
6 |
-
Version: 1.6.
|
7 |
Author: Namith Jawahar
|
8 |
Author URI: http://www.smartlogix.co.in/
|
9 |
WP-INSERT by SMARTLOGIX : The ultimate wordpress plugin
|
3 |
Plugin Name: wp-insert
|
4 |
Plugin URI: http://www.wp-insert.smartlogix.co.in/
|
5 |
Description: The ultimate wordpress plugin
|
6 |
+
Version: 1.6.1
|
7 |
Author: Namith Jawahar
|
8 |
Author URI: http://www.smartlogix.co.in/
|
9 |
WP-INSERT by SMARTLOGIX : The ultimate wordpress plugin
|