forked from wp-plugins/simple-urls
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.php
164 lines (125 loc) · 4.56 KB
/
plugin.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
<?php
/*
Plugin Name: Simple URLs
Plugin URI: http://www.studiopress.com/plugins/simple-urls
Description: Simple URLs is a complete URL management system that allows you create, manage, and track outbound links from your site by using custom post types and 301 redirects.
Version: 0.9.4
Author: Nathan Rice
Author URI: http://www.nathanrice.net/
*/
class SimpleURLs {
// Constructor
function __construct() {
//register_activation_hook( __FILE__, 'flush_rewrite_rules' );
add_action( 'init', array( &$this, 'register_post_type' ) );
add_action( 'manage_posts_custom_column', array( &$this, 'columns_data' ) );
add_filter( 'manage_edit-surl_columns', array( &$this, 'columns_filter' ) );
add_action( 'admin_menu', array( &$this, 'add_meta_box' ) );
add_action( 'save_post', array( &$this, 'meta_box_save' ), 1, 2 );
add_action( 'template_redirect', array( &$this, 'count_and_redirect' ) );
}
// PHP4 Constructor
function SimpleURLs() {
$this->__construct();
}
function register_post_type() {
register_post_type( 'surl',
array(
'labels' => array(
'name' => __( 'Simple URLs' ),
'singular_name' => __( 'URL' ),
'add_new' => __( 'Add New' ),
'add_new_item' => __( 'Add New URL' ),
'edit' => __( 'Edit' ),
'edit_item' => __( 'Edit URL' ),
'new_item' => __( 'New URL' ),
'view' => __( 'View URL' ),
'view_item' => __( 'View URL' ),
'search_items' => __( 'Search URL' ),
'not_found' => __( 'No URLs found' ),
'not_found_in_trash' => __( 'No URLs found in Trash' )
),
'public' => true,
'query_var' => true,
'menu_position' => 20,
'supports' => array( 'title' ),
'rewrite' => array( 'slug' => 'go', 'with_front' => false )
)
);
}
function columns_filter( $columns ) {
$columns = array(
'cb' => '<input type="checkbox" />',
'title' => __('Title'),
'url' => __('Redirect to'),
'permalink' => __('Permalink'),
'clicks' => __('Clicks')
);
return $columns;
}
function columns_data( $column ) {
global $post;
$url = get_post_meta($post->ID, '_surl_redirect', true);
$count = get_post_meta($post->ID, '_surl_count', true);
if ( $column == 'url' ) {
echo make_clickable( esc_url( $url ? $url : '' ) );
}
elseif ( $column == 'permalink' ) {
echo make_clickable( get_permalink() );
}
elseif ( $column == 'clicks' ) {
echo esc_html( $count ? $count : 0 );
}
}
function add_meta_box() {
add_meta_box('surl', __('URL Information', 'surl'), array( &$this, 'meta_box' ), 'surl', 'normal', 'high');
}
function meta_box() {
global $post;
printf( '<input type="hidden" name="_surl_nonce" value="%s" />', wp_create_nonce( plugin_basename(__FILE__) ) );
printf( '<p><label for="%s">%s</label></p>', '_surl_redirect', __('Redirect URI', 'surl') );
printf( '<p><input style="%s" type="text" name="%s" id="%s" value="%s" /></p>', 'width: 99%;', '_surl_redirect', '_surl_redirect', esc_attr( get_post_meta( $post->ID, '_surl_redirect', true ) ) );
$count = isset( $post->ID ) ? get_post_meta($post->ID, '_surl_count', true) : 0;
printf( '<p>This URL has been accessed <b>%d</b> times.', esc_attr( $count ) );
}
function meta_box_save( $post_id, $post ) {
$key = '_surl_redirect';
// verify the nonce
if ( !isset($_POST['_surl_nonce']) || !wp_verify_nonce( $_POST['_surl_nonce'], plugin_basename(__FILE__) ) )
return;
// don't try to save the data under autosave, ajax, or future post.
if ( defined('DOING_AUTOSAVE') && DOING_AUTOSAVE ) return;
if ( defined('DOING_AJAX') && DOING_AJAX ) return;
if ( defined('DOING_CRON') && DOING_CRON ) return;
// is the user allowed to edit the URL?
if ( ! current_user_can( 'edit_posts' ) || $post->post_type != 'surl' )
return;
$value = isset( $_POST[$key] ) ? $_POST[$key] : '';
if ( $value ) {
// save/update
update_post_meta($post->ID, $key, $value);
} else {
// delete if blank
delete_post_meta($post->ID, $key);
}
}
function count_and_redirect() {
if ( !is_singular('surl') )
return;
global $wp_query;
// Update the count
$count = isset( $wp_query->post->ID ) ? get_post_meta($wp_query->post->ID, '_surl_count', true) : 0;
update_post_meta( $wp_query->post->ID, '_surl_count', $count + 1 );
// Handle the redirect
$redirect = isset( $wp_query->post->ID ) ? get_post_meta($wp_query->post->ID, '_surl_redirect', true) : '';
if ( !empty( $redirect ) ) {
wp_redirect( esc_url_raw( $redirect ), 301);
exit;
}
else {
wp_redirect( home_url(), 302 );
exit;
}
}
}
$SimpleURLs = new SimpleURLs;