My Private Site - Version 2.0

Version Description

  • Add Settings page, specifying Landing Location and turning Private Site off and on
  • Warning for new default of OFF for Private Site until Settings are first viewed
  • Add Networking Settings information page
  • Track plugin version number in internal settings
  • Replace WordPress Activation/Deactivation hooks with Version checking code from jonradio Multiple Themes
  • Add Plugin entry on individual sites when plugin is Network Activated, and Settings link on all Plugin entries
Download this release

Release Info

Developer dgewirtz
Plugin Icon 128x128 My Private Site
Version 2.0
Comparing to
See all releases

Version 2.0

includes/admin-settings.php ADDED
@@ -0,0 +1,248 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ Initiated when in the Admin panels.
4
+ Used to create the Settings page for the plugin.
5
+ */
6
+
7
+ // Exit if .php file accessed directly
8
+ if ( !defined( 'ABSPATH' ) ) exit;
9
+
10
+ require_once( jr_ps_path() . 'includes/functions-admin.php' );
11
+
12
+ add_action( 'admin_menu', 'jr_ps_admin_hook' );
13
+ // Runs just before admin_init (below)
14
+
15
+ /**
16
+ * Add Admin Menu item for plugin
17
+ *
18
+ * Plugin needs its own Page in the Settings section of the Admin menu.
19
+ *
20
+ */
21
+ function jr_ps_admin_hook() {
22
+ // Add Settings Page for this Plugin
23
+ global $jr_ps_plugin_data;
24
+ add_options_page( $jr_ps_plugin_data['Name'], 'Private Site', 'manage_options', 'jr_ps_settings', 'jr_ps_settings_page' );
25
+ }
26
+
27
+ /**
28
+ * Settings page for plugin
29
+ *
30
+ * Display and Process Settings page for this plugin.
31
+ *
32
+ */
33
+ function jr_ps_settings_page() {
34
+ global $jr_ps_plugin_data;
35
+ add_thickbox();
36
+ echo '<div class="wrap">';
37
+ screen_icon( 'plugins' );
38
+ echo '<h2>' . $jr_ps_plugin_data['Name'] . '</h2><h3>Overview</h3><p>';
39
+ $settings = get_option( 'jr_ps_settings' );
40
+ if ( $settings['private_site'] ) {
41
+ echo 'This';
42
+ } else {
43
+ echo 'If you click the <b>Private Site</b> checkbox below, this';
44
+ }
45
+ ?>
46
+ Plugin creates a Private Site,
47
+ by ensuring that site visitors login
48
+ before viewing your web site.
49
+ The only things visible to anyone not logged in, including Search Engines, are:
50
+ <ul>
51
+ <li> &raquo; Your site's WordPress Login page;</li>
52
+ <li> &raquo; Any non-WordPress components of your web site, such as HTML, PHP, ASP or other non-WordPress web page files;</li>
53
+ <li> &raquo; Images and other media and text files, but only when accessed directly by their URL,
54
+ or from a browser's directory view, if available.</li>
55
+ </ul>
56
+ Other means are available to hide most, if not all, of the files mentioned above.
57
+ </p>
58
+ <p>
59
+ To see your site, each visitor will need to be registered as a User on your WordPress site.
60
+ They will also have to enter their Username and Password on the WordPress login screen.
61
+ </p>
62
+ <p>
63
+ You can choose what they see after they login by selecting a <b>Landing Location</b> in the section below.
64
+ </p>
65
+ <form action="options.php" method="POST">
66
+ <?php
67
+ // Plugin Settings are displayed and entered here:
68
+ settings_fields( 'jr_ps_settings' );
69
+ do_settings_sections( 'jr_ps_settings_page' );
70
+ echo '<p><input name="save" type="submit" value="Save Changes" class="button-primary" /></p></form>';
71
+
72
+ /* Turn off Warning about Private Site defaulting to OFF
73
+ once Admin has seen Settings page.
74
+ */
75
+ $internal_settings = get_option( 'jr_ps_internal_settings' );
76
+ if ( isset( $internal_settings['warning_privacy'] ) ) {
77
+ unset( $internal_settings['warning_privacy'] );
78
+ update_option( 'jr_ps_internal_settings', $internal_settings );
79
+ }
80
+ }
81
+
82
+ add_action( 'admin_init', 'jr_ps_admin_init' );
83
+
84
+ /**
85
+ * Register and define the settings
86
+ *
87
+ * Everything to be stored and/or can be set by the user
88
+ *
89
+ */
90
+ function jr_ps_admin_init() {
91
+ register_setting( 'jr_ps_settings', 'jr_ps_settings', 'jr_ps_validate_settings' );
92
+ add_settings_section( 'jr_ps_private_settings_section',
93
+ 'Make Site Private',
94
+ 'jr_ps_private_settings_expl',
95
+ 'jr_ps_settings_page'
96
+ );
97
+ add_settings_field( 'private_site',
98
+ 'Private Site',
99
+ 'jr_ps_echo_private_site',
100
+ 'jr_ps_settings_page',
101
+ 'jr_ps_private_settings_section'
102
+ );
103
+ add_settings_section( 'jr_ps_landing_settings_section',
104
+ 'Landing Location',
105
+ 'jr_ps_landing_settings_expl',
106
+ 'jr_ps_settings_page'
107
+ );
108
+ add_settings_field( 'landing',
109
+ 'Where to after Login?',
110
+ 'jr_ps_echo_landing',
111
+ 'jr_ps_settings_page',
112
+ 'jr_ps_landing_settings_section'
113
+ );
114
+ add_settings_field( 'specific_url',
115
+ 'Specific URL',
116
+ 'jr_ps_echo_specific_url',
117
+ 'jr_ps_settings_page',
118
+ 'jr_ps_landing_settings_section'
119
+ );
120
+ }
121
+
122
+ /**
123
+ * Section text for Section1
124
+ *
125
+ * Display an explanation of this Section
126
+ *
127
+ */
128
+ function jr_ps_private_settings_expl() {
129
+ ?>
130
+ <p>
131
+ You will only have a Private Site if the checkbox just below is checked.
132
+ This allows you to disable the Private Site functionality
133
+ without deactivating the Plugin.
134
+ </p>
135
+ <?php
136
+ }
137
+
138
+ function jr_ps_echo_private_site() {
139
+ $settings = get_option( 'jr_ps_settings' );
140
+ echo '<input type="checkbox" id="private_site" name="jr_ps_settings[private_site]" value="true"';
141
+ if ( $settings['private_site'] ) {
142
+ echo ' checked="checked"';
143
+ }
144
+ echo ' />';
145
+ }
146
+
147
+ /**
148
+ * Section text for Section2
149
+ *
150
+ * Display an explanation of this Section
151
+ *
152
+ */
153
+ function jr_ps_landing_settings_expl() {
154
+ ?>
155
+ <p>
156
+ What do you want your visitors to see immediately after they login?
157
+ For most Private Sites, the default
158
+ <b>Return to same URL</b>
159
+ setting works best,
160
+ as it takes visitors to where they would have been had they already been logged on when they clicked a link or entered a URL,
161
+ just as if they hit the browser's Back button twice and then the Refresh button after logging in.
162
+ </p>
163
+ <p>
164
+ <b>Specific URL</b> only applies when <b>Go to specific URL</b> is selected.
165
+ </p>
166
+ <?php
167
+ }
168
+
169
+ function jr_ps_echo_landing() {
170
+ $settings = get_option( 'jr_ps_settings' );
171
+ $first = TRUE;
172
+ foreach ( array(
173
+ 'return' => 'Return to same URL',
174
+ 'home' => 'Go to Site Home',
175
+ 'admin' => 'Go to WordPress Admin Dashboard',
176
+ 'url' => 'Go to Specific URL'
177
+ ) as $val => $desc ) {
178
+ if ( $first ) {
179
+ $first = FALSE;
180
+ } else {
181
+ echo '<br />';
182
+ }
183
+ echo '<input type="radio" id="landing" name="jr_ps_settings[landing]" ';
184
+ if ( $settings['landing'] == $val ) {
185
+ echo 'checked="checked"';
186
+ }
187
+ echo ' value="' . $val . '" /> ' . $desc;
188
+ }
189
+ }
190
+
191
+ function jr_ps_echo_specific_url() {
192
+ $settings = get_option( 'jr_ps_settings' );
193
+ echo '<input type="text" id="specific_url" name="jr_ps_settings[specific_url]" size="100" maxlength="256" value="';
194
+ echo esc_url( $settings['specific_url'] ) . '" />';
195
+ }
196
+
197
+ function jr_ps_validate_settings( $input ) {
198
+ $valid = array();
199
+ $settings = get_option( 'jr_ps_settings' );
200
+
201
+ if ( array_key_exists( 'private_site', $input ) && ( $input['private_site'] === 'true' ) ) {
202
+ $valid['private_site'] = TRUE;
203
+ } else {
204
+ $valid['private_site'] = FALSE;
205
+ }
206
+
207
+ $valid['landing'] = $input['landing'];
208
+
209
+ if ( trim( $input['specific_url'] ) ) {
210
+ if ( jr_ps_site_url( $input['specific_url'] ) ) {
211
+ /* If URL is input without http:// or https://, then add it based on the Site URL.
212
+ */
213
+ $parse_url = parse_url( $input['specific_url'] );
214
+ if ( is_array( $parse_url ) && array_key_exists( 'scheme', $parse_url ) && in_array( strtolower( $parse_url['scheme'] ), array( 'http', 'https' ) ) ) {
215
+ $url = $input['specific_url'];
216
+ } else {
217
+ $parse_url = parse_url( get_home_url() );
218
+ $url = $parse_url['scheme'] . '://' . $input['specific_url'];
219
+ }
220
+ $valid['specific_url'] = esc_url_raw( $url, array( 'http', 'https' ) );
221
+ } else {
222
+ /* Reset to previous URL value and generate an error message.
223
+ */
224
+ $valid['specific_url'] = $settings['specific_url'];
225
+ add_settings_error(
226
+ 'jr_ps_settings',
227
+ 'jr_ps_urlerror',
228
+ 'Error in URL. It must point to someplace on this WordPress web site<br /><code>'
229
+ . sanitize_text_field( $input['specific_url'] ) . '</code>',
230
+ 'error'
231
+ );
232
+ }
233
+ } else {
234
+ $valid['specific_url'] = '';
235
+ if ( 'url' === $input['landing'] ) {
236
+ add_settings_error(
237
+ 'jr_ps_settings',
238
+ 'jr_ps_nourlerror',
239
+ 'Error in Landing Location: <b>Go to specific URL</b> selected but no URL specified.',
240
+ 'error'
241
+ );
242
+ }
243
+ }
244
+
245
+ return $valid;
246
+ }
247
+
248
+ ?>
includes/all-admin.php ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ Loaded for all Admin panels.
4
+ */
5
+
6
+ // Exit if .php file accessed directly
7
+ if ( !defined( 'ABSPATH' ) ) exit;
8
+
9
+ $internal_settings = get_option( 'jr_ps_internal_settings' );
10
+ if ( isset( $internal_settings['warning_privacy'] ) ) {
11
+ add_action( 'all_admin_notices', 'jr_ps_warning_privacy' );
12
+ /**
13
+ * Warn that Private Site is turned OFF by default
14
+ *
15
+ * Put Warning on top of every Admin page (visible to Admins only)
16
+ * until Admin visits plugin's Settings page.
17
+ *
18
+ */
19
+ function jr_ps_warning_privacy() {
20
+ if ( current_user_can( 'manage_options' ) ) {
21
+ echo '<div class="updated"><p><b>Private Site is currently turned off on plugin <a href="'
22
+ . admin_url( 'options-general.php?page=jr_ps_settings' )
23
+ . '">Settings page</a>.</b></p></div>';
24
+ }
25
+ }
26
+ }
27
+
28
+ ?>
includes/functions-admin.php ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * Is the URL on the current WordPress web site?
5
+ *
6
+ * Checks if URL begins with Site Home URL.
7
+ * Strip http[s]://[www.] and leading and trailing blanks and convert to lower-case before comparing,
8
+ * to allow http, etc. to be omitted on entry
9
+ *
10
+ * @param string $url URL to be checked to be sure it is "on" the current WordPress web site
11
+ * @return bool bool TRUE if URL is on current WordPress web site; FALSE otherwise
12
+ */
13
+ function jr_ps_site_url( $url ) {
14
+ $site_home = jr_ps_urlcompare_prep( get_home_url() );
15
+ return ( substr( jr_ps_urlcompare_prep( $url ), 0, strlen( $site_home ) ) === $site_home );
16
+ }
17
+
18
+ /**
19
+ * Prepare a URL for comparison with another URL
20
+ *
21
+ * Strip [http[s]://][www.] and leading and trailing blanks, and convert to lower-case,
22
+ * to:
23
+ * (1) permit comparison of "synonym" URLs; and
24
+ * (2) allow http to be omitted when inputting a URL
25
+ *
26
+ * @param string $url URL to be prepped for comparison
27
+ * @return string URL prepped for comparison
28
+ */
29
+ function jr_ps_urlcompare_prep( $url ) {
30
+ $prep_url = strtolower( trim( $url ) );
31
+ if ( 'http' === substr( $prep_url, 0, 4 ) ) {
32
+ if ( 's' === substr( $prep_url, 4, 1 ) ) {
33
+ $cursor = 5; // Next character to look at in URL
34
+ } else {
35
+ $cursor = 4;
36
+ }
37
+ if ( '://' === substr( $prep_url, $cursor, 3 ) ) {
38
+ $cursor = $cursor + 3;
39
+ }
40
+ } else {
41
+ $cursor = 0;
42
+ }
43
+ if ( 'www.' === substr( $prep_url, $cursor, 4 ) ) {
44
+ $cursor = $cursor + 4;
45
+ }
46
+ return substr( $prep_url, $cursor );
47
+ }
48
+
49
+ ?>
includes/index.html ADDED
File without changes
includes/installed-plugins.php ADDED
@@ -0,0 +1,91 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ Initiated when in the Admin panels.
4
+ Used to handle the plugin's entry on the Install Plugins page.
5
+ */
6
+
7
+ /* Support WordPress Version 3.0.x before is_network_admin() existed
8
+ */
9
+ if ( function_exists( 'is_network_admin' ) && is_network_admin() ) {
10
+ // Add Link to the plugin's entry on the Network Admin "Plugins" Page, for easy access
11
+ add_filter( 'network_admin_plugin_action_links_' . jr_ps_plugin_basename(), 'jr_ps_plugin_network_action_links', 10, 1 );
12
+
13
+ /**
14
+ * Creates Settings link right on the Network Plugins Page entry.
15
+ *
16
+ * Helps the user understand where to go immediately upon Activation of the Plugin
17
+ * by creating entries on the Plugins page, right beside Deactivate and Edit.
18
+ *
19
+ * @param array $links Existing links for our Plugin, supplied by WordPress
20
+ * @param string $file Name of Plugin currently being processed
21
+ * @return string $links Updated set of links for our Plugin
22
+ */
23
+ function jr_ps_plugin_network_action_links( $links ) {
24
+ // The "page=" query string value must be equal to the slug
25
+ // of the Settings admin page.
26
+ array_push( $links, '<a href="' . get_bloginfo('wpurl') . '/wp-admin/network/settings.php?page=jr_ps_network_settings' . '">Settings</a>' );
27
+ return $links;
28
+ }
29
+ } else {
30
+ // Add Link to the plugin's entry on the Admin "Plugins" Page, for easy access
31
+ add_filter( 'plugin_action_links_' . jr_ps_plugin_basename(), 'jr_ps_plugin_action_links', 10, 1 );
32
+
33
+ if ( function_exists( 'is_plugin_active_for_network' ) && is_plugin_active_for_network( jr_ps_plugin_basename() ) ) {
34
+ // Add entry for the plugin on the each site's Admin "Plugins" Page, when Network Activated and not normally shown
35
+ add_action( 'pre_current_active_plugins', 'jr_ps_show_plugin' );
36
+
37
+ function jr_ps_show_plugin() {
38
+ global $wp_list_table;
39
+ global $jr_ps_path;
40
+ $wp_list_table->items[jr_ps_plugin_basename()] = get_plugin_data( $jr_ps_path . basename( jr_ps_plugin_basename() ) );
41
+ uasort( $wp_list_table->items, 'jr_ps_sort_plugins' );
42
+ return;
43
+ }
44
+
45
+ function jr_ps_sort_plugins( $a, $b ) {
46
+ return strcasecmp( $a['Name'], $b['Name'] );
47
+ }
48
+
49
+ /**
50
+ * Creates Settings entry right on the Plugins Page entry.
51
+ *
52
+ * Helps the user understand where to go immediately upon Activation of the Plugin
53
+ * by creating entries on the Plugins page, right beside Deactivate and Edit.
54
+ *
55
+ * @param array $links Existing links for our Plugin, supplied by WordPress
56
+ * @param string $file Name of Plugin currently being processed
57
+ * @return string $links Updated set of links for our Plugin
58
+ */
59
+ function jr_ps_plugin_action_links( $links ) {
60
+ /* Delete existing Links and replace with "Network Activated" (not a link)
61
+ and "Settings" as a link to Plugin Settings page.
62
+ The "page=" query string value must be equal to the slug
63
+ of the Settings admin page.
64
+ */
65
+ return array( 'Network Activated',
66
+ '<a href="' . get_bloginfo('wpurl') . '/wp-admin/admin.php?page=jr_ps_settings' . '">Settings</a>'
67
+ );
68
+ }
69
+ } else {
70
+ /**
71
+ * Creates Settings entry right on the Plugins Page entry.
72
+ *
73
+ * Helps the user understand where to go immediately upon Activation of the Plugin
74
+ * by creating entries on the Plugins page, right beside Deactivate and Edit.
75
+ *
76
+ * @param array $links Existing links for our Plugin, supplied by WordPress
77
+ * @param string $file Name of Plugin currently being processed
78
+ * @return string $links Updated set of links for our Plugin
79
+ */
80
+ function jr_ps_plugin_action_links( $links ) {
81
+ /* Add "Settings" to the end of existing Links
82
+ The "page=" query string value must be equal to the slug
83
+ of the Settings admin page.
84
+ */
85
+ array_push( $links, '<a href="' . get_bloginfo('wpurl') . '/wp-admin/admin.php?page=jr_ps_settings' . '">Settings</a>' );
86
+ return $links;
87
+ }
88
+ }
89
+ }
90
+
91
+ ?>
includes/net-settings.php ADDED
@@ -0,0 +1,61 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ Initiated when in the Network Admin panels.
4
+ Used to create the Settings page for the plugin.
5
+ */
6
+
7
+ add_action('network_admin_menu', 'jr_ps_network_admin_hook' );
8
+ // Runs just after admin_init
9
+
10
+ /**
11
+ * Add Network Admin Menu item for plugin
12
+ *
13
+ * Plugin needs its own Page in the Settings section of the Network Admin menu.
14
+ *
15
+ */
16
+ function jr_ps_network_admin_hook() {
17
+ // Add Network Settings Page for this Plugin
18
+ global $jr_ps_plugin_data;
19
+ add_submenu_page( 'settings.php', $jr_ps_plugin_data['Name'], 'Private Sites', 'manage_network_options', 'jr_ps_network_settings', 'jr_ps_network_settings_page' );
20
+ }
21
+
22
+ /**
23
+ * Network Settings page for plugin
24
+ *
25
+ * Display and Process Settings page for this plugin.
26
+ *
27
+ */
28
+ function jr_ps_network_settings_page() {
29
+ global $jr_ps_plugin_data;
30
+ add_thickbox();
31
+ echo '<div class="wrap">';
32
+ screen_icon( 'plugins' );
33
+ echo '<h2>' . $jr_ps_plugin_data['Name'] . '</h2>';
34
+ ?>
35
+ <p>
36
+ This Plugin has been <b>Network Activated</b> in a WordPress Multisite ("Network") installation.
37
+ Since all of this plugin's Settings can be specified separately for each individual WordPress site,
38
+ you will need to go to the Admin pages for each Site,
39
+ and review the plugin's Settings page,
40
+ making changes appropriate for that Site.
41
+ The plugin's Settings page can be found by opening the <b>Settings</b> submenu on the left sidebar of each Admin page for the Site
42
+ and selecting <b>Private Site</b>.
43
+ Or from the <b>Settings</b> link in the plugin's entry on the <b>Installed Plugins</b> page for the Site
44
+ <i>(WordPress does not list Network Activated plugins on each Site's Installed Plugins page,
45
+ but this plugin has added its own entry for your convenience)</i>.
46
+ </p>
47
+ <p>
48
+ Alternatively, you can <b>Network Deactivate</b> this plugin
49
+ and <b>Activate</b> it individually on each Site where you wish to use it.
50
+ </p>
51
+ <p>
52
+ If you would prefer, when this plugin is Network Activated,
53
+ to have a single set of Settings that would apply to all Sites in a WordPress network,
54
+ and/or be able to view and change all of the Settings for all Sites from this one Network Settings page that you are now viewing,
55
+ <a href="http://zatzlabs.com/contact-us/">please contact the Plugin author</a>
56
+ and this will be added to a future version of this plugin if there is enough interest expressed by webmasters such as you.
57
+ </p>
58
+ <?php
59
+ }
60
+
61
+ ?>
includes/public.php ADDED
@@ -0,0 +1,65 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ Initiated when on the "public" web site,
4
+ i.e. - not an Admin panel.
5
+ */
6
+
7
+ // Exit if .php file accessed directly
8
+ if ( !defined( 'ABSPATH' ) ) exit;
9
+
10
+ add_action( 'login_init', 'jr_ps_login' );
11
+ add_action( 'wp', 'jr_ps_force_login' );
12
+
13
+ /**
14
+ * Login Detection
15
+ *
16
+ * Set a global variable, $jr_ps_is_login, whenever a login occurs
17
+ *
18
+ * @return NULL Nothing is returned
19
+ */
20
+ function jr_ps_login() {
21
+ global $jr_ps_is_login;
22
+ $jr_ps_is_login = TRUE;
23
+ }
24
+
25
+ /**
26
+ * Present a login screen to anyone not logged in
27
+ *
28
+ * Check for already logged in or just logged in.
29
+ * Only called when is_admin() is FALSE
30
+ *
31
+ * @return NULL Nothing is returned
32
+ */
33
+ function jr_ps_force_login() {
34
+ global $jr_ps_is_login;
35
+ if ( !is_user_logged_in() && !isset( $jr_ps_is_login ) ) {
36
+ $settings = get_option( 'jr_ps_settings' );
37
+ switch ( $settings['landing'] ) {
38
+ case 'return':
39
+ // $_SERVER['HTTPS'] can be off in IIS
40
+ if ( empty( $_SERVER['HTTPS'] ) || ( $_SERVER['HTTPS'] == 'off' ) ) {
41
+ $http = 'http://';
42
+ } else {
43
+ $http = 'https://';
44
+ }
45
+ $after_login_url = $http . $_SERVER['SERVER_NAME'] . $_SERVER['REQUEST_URI'];
46
+ break;
47
+ case 'home':
48
+ $after_login_url = get_home_url();
49
+ break;
50
+ case 'admin':
51
+ $after_login_url = get_admin_url();
52
+ break;
53
+ case 'url':
54
+ $after_login_url = trim( $settings['specific_url'] );
55
+ break;
56
+ }
57
+ // Avoid situations where specific URL is requested, but URL is blank
58
+ if ( !empty( $after_login_url ) ) {
59
+ wp_redirect( wp_login_url( $after_login_url ) );
60
+ exit;
61
+ }
62
+ }
63
+ }
64
+
65
+ ?>
index.html ADDED
File without changes
jonradio-private-site.php ADDED
@@ -0,0 +1,151 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ Plugin Name: jonradio Private Site
4
+ Plugin URI: http://zatzlabs.com/plugins/
5
+ Description: Creates a Private Site by allowing only those logged on to view the WordPress web site. Settings select the initial destination after login.
6
+ Version: 2.0
7
+ Author: David Gewirtz
8
+ Author URI: http://zatzlabs.com/plugins/
9
+ License: GPLv2
10
+ */
11
+
12
+ /* Copyright 2013 jonradio (email : info@zatz.com)
13
+
14
+ This program is free software; you can redistribute it and/or modify
15
+ it under the terms of the GNU General Public License as published by
16
+ the Free Software Foundation; either version 2 of the License, or
17
+ (at your option) any later version.
18
+
19
+ This program is distributed in the hope that it will be useful,
20
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
21
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22
+ GNU General Public License for more details.
23
+
24
+ You should have received a copy of the GNU General Public License
25
+ along with this program; if not, write to the Free Software
26
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
27
+ */
28
+
29
+ /* Exit if .php file accessed directly
30
+ */
31
+ if ( !defined( 'ABSPATH' ) ) exit;
32
+
33
+ global $jr_ps_path;
34
+ $jr_ps_path = plugin_dir_path( __FILE__ );
35
+ /**
36
+ * Return Plugin's full directory path with trailing slash
37
+ *
38
+ * Local XAMPP install might return:
39
+ * C:\xampp\htdocs\wpbeta\wp-content\plugins\jonradio-private-site/
40
+ *
41
+ */
42
+ function jr_ps_path() {
43
+ global $jr_ps_path;
44
+ return $jr_ps_path;
45
+ }
46
+
47
+ global $jr_ps_plugin_basename;
48
+ $jr_ps_plugin_basename = plugin_basename( __FILE__ );
49
+ /**
50
+ * Return Plugin's Basename
51
+ *
52
+ * For this plugin, it would be:
53
+ * jonradio-multiple-themes/jonradio-multiple-themes.php
54
+ *
55
+ */
56
+ function jr_ps_plugin_basename() {
57
+ global $jr_ps_plugin_basename;
58
+ return $jr_ps_plugin_basename;
59
+ }
60
+
61
+ if ( !function_exists( 'get_plugin_data' ) ) {
62
+ require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
63
+ }
64
+
65
+ global $jr_ps_plugin_data;
66
+ $jr_ps_plugin_data = get_plugin_data( __FILE__ );
67
+ $jr_ps_plugin_data['slug'] = basename( dirname( __FILE__ ) );
68
+
69
+ /* Detect initial activation or a change in plugin's Version number
70
+
71
+ Sometimes special processing is required when the plugin is updated to a new version of the plugin.
72
+ Also used in place of standard activation and new site creation exits provided by WordPress.
73
+ Once that is complete, update the Version number in the plugin's Network-wide settings.
74
+ */
75
+
76
+ if ( ( FALSE === ( $internal_settings = get_option( 'jr_ps_internal_settings' ) ) )
77
+ || empty( $internal_settings['version'] ) )
78
+ {
79
+ /* Plugin is either:
80
+ - updated from a version so old that Version was not yet stored in the plugin's settings, or
81
+ - first use after install:
82
+ - first time ever installed, or
83
+ - installed previously and properly uninstalled (data deleted)
84
+ */
85
+
86
+ $old_version = '0.1';
87
+ } else {
88
+ $old_version = $internal_settings['version'];
89
+ }
90
+
91
+ $settings = get_option( 'jr_ps_settings' );
92
+ if ( empty( $settings ) ) {
93
+ $settings = array(
94
+ 'private_site' => FALSE,
95
+ 'landing' => 'return',
96
+ 'specific_url' => ''
97
+ );
98
+ /* Add if Settings don't exist, re-initialize if they were empty.
99
+ */
100
+ update_option( 'jr_ps_settings', $settings );
101
+ /* New install on this site, old version or corrupt settings
102
+ */
103
+ $old_version = $jr_ps_plugin_data['Version'];
104
+ }
105
+
106
+ if ( version_compare( $old_version, $jr_ps_plugin_data['Version'], '!=' ) ) {
107
+ /* Create, if internal settings do not exist; update if they do exist
108
+ */
109
+ $internal_settings['version'] = $jr_ps_plugin_data['Version'];
110
+ if ( version_compare( $old_version, '2', '<' ) ) {
111
+ /* Previous versions turned Privacy on at Activation;
112
+ Now it is a Setting on the Settings page,
113
+ so warn Admin.
114
+ */
115
+ $internal_settings['warning_privacy'] = TRUE;
116
+ }
117
+ update_option( 'jr_ps_internal_settings', $internal_settings );
118
+
119
+ /* Handle all Settings changes made in old plugin versions
120
+ */
121
+ /* None yet, so no need to:
122
+ update_option( 'jr_ps_settings', $settings );
123
+ */
124
+ }
125
+
126
+ if ( is_admin() ) {
127
+ require_once( jr_ps_path() . 'includes/all-admin.php' );
128
+ /* Support WordPress Version 3.0.x before is_network_admin() existed
129
+ */
130
+ if ( function_exists( 'is_network_admin' ) && is_network_admin() ) {
131
+ // Network Admin pages in Network/Multisite install
132
+ if ( function_exists( 'is_plugin_active_for_network' ) && is_plugin_active_for_network( jr_ps_plugin_basename() ) ) {
133
+ // Network Admin Settings page for Plugin
134
+ require_once( jr_ps_path() . 'includes/net-settings.php' );
135
+ }
136
+ } else {
137
+ // Regular (non-Network) Admin pages
138
+ // Settings page for Plugin
139
+ require_once( jr_ps_path() . 'includes/admin-settings.php' );
140
+ }
141
+ // All changes to all Admin-Installed Plugins pages
142
+ require_once( jr_ps_path() . 'includes/installed-plugins.php' );
143
+ } else {
144
+ // Public WordPress content, i.e. - not Admin pages
145
+ if ( $settings['private_site'] === TRUE ) {
146
+ // Private Site code
147
+ require_once( jr_ps_path() . 'includes/public.php' );
148
+ }
149
+ }
150
+
151
+ ?>
readme.txt ADDED
@@ -0,0 +1,61 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ === jonradio Private Site ===
2
+ Contributors: dgewirtz
3
+ Donate link: http://zatzlabs.com/plugins/
4
+ Tags: login, visibility, private, security, plugin, pages, page, posts, post
5
+ Requires at least: 3.0
6
+ Tested up to: 3.6
7
+ Stable tag: 2.0
8
+ License: GPLv2 or later
9
+ License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
+
11
+ Create a Private Site visible only to your registered users.
12
+
13
+ == Description ==
14
+
15
+ Allows the Administrator to restrict a WordPress-based web site to viewing only by registered users who are logged on.
16
+
17
+ Any attempt to view any Page, Post or other part of the site will see anyone not logged on greeted by a WordPress login screen. A Settings Page allows the Administrator to determine where Users will be automatically directed to each time that they login, a "Landing Location".
18
+
19
+ A Setting also allows the Private Site feature to be turned off. When the plugin is installed and activated, the Private Site feature is set off by default, to allow the Administrator an opportunity to become familiarized with the plugin's features and to set the desired settings. A warning that the site is not private appears after first activation of the plugin until the Administrator visits the plugin's Settings page.
20
+
21
+ If a WordPress Network is defined, the plugin can be activated individually for select sites. Or Network Activated. In either case, each site will have its own Settings page where the Private Site feature can be turned off (default) or on for just the one site, and a Landing Location defined for each site.
22
+
23
+ Login prompts are provided whenever a non-logged in user ("site visitor") attempts to access any URL controlled by WordPress on the web site. This plugin does not control non-WordPress web pages, such as .html and .php files created by hand or by other software products. Or images and other media and text files directly accessed by their URL, or from a browser's directory view, if available.
24
+
25
+ Yes, there are other plugins that hide some or all WordPress content for any site visitor who is not logged on. But when I was searching for a solution for one of the web sites I support, I decided to "write my own" because I knew how it worked and felt comfortable that there would be no way for anyone not logged in to view the site, including Search Engines.
26
+
27
+ == Installation ==
28
+
29
+ This section describes how to install the plugin and get it working.
30
+
31
+ 1. Use "Add Plugin" within the WordPress Admin panel to download and install this plugin from the WordPress.org plugin repository (preferred method). Or download and unzip this plugin, then upload the `/jonradio-private-site/` directory to your WordPress web site's `/wp-content/plugins/` directory
32
+ 1. Activate the plugin through the 'Plugins' menu in WordPress. If you have a WordPress Network ("Multisite"), you can either Network Activate this plugin, or Activate it individually on the sites where you wish to use it.
33
+ 1. Go the Settings page to make the Site Private, and set where the user ends up after logging in.
34
+
35
+ == Changelog ==
36
+
37
+ = 2.0 =
38
+ * Add Settings page, specifying Landing Location and turning Private Site off and on
39
+ * Warning for new default of OFF for Private Site until Settings are first viewed
40
+ * Add Networking Settings information page
41
+ * Track plugin version number in internal settings
42
+ * Replace WordPress Activation/Deactivation hooks with Version checking code from jonradio Multiple Themes
43
+ * Add Plugin entry on individual sites when plugin is Network Activated, and Settings link on all Plugin entries
44
+
45
+ = 1.1 =
46
+ * Change Action Hook to 'wp' from 'wp_head' to avoid Modify Header errors when certain other plugins are present
47
+
48
+ = 1.0 =
49
+ * Add readme.txt and screenshots
50
+ * Add in-line documentation for php functions
51
+
52
+ == Upgrade Notice ==
53
+
54
+ = 2.0 =
55
+ Create a Settings page that defines where the user ends up after logging in
56
+
57
+ = 1.1 =
58
+ Should eliminate Modify Header errors due to conflict with other plugins
59
+
60
+ = 1.0 =
61
+ Production version, updated to meet WordPress Repository standards
uninstall.php ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ // Ensure call comes from WordPress, not a hacker or anyone else trying direct access.
3
+ if ( !defined( 'WP_UNINSTALL_PLUGIN' ) )
4
+ exit ();
5
+
6
+
7
+ /* Remove any tables, options, and such created by this Plugin */
8
+ if ( function_exists('is_multisite') && is_multisite() ) {
9
+ global $wpdb, $site_id;
10
+ $blogs = $wpdb->get_results( "SELECT blog_id FROM {$wpdb->blogs} WHERE site_id = $site_id" );
11
+ foreach ($blogs as $blog_obj) {
12
+ delete_blog_option( $blog_obj->blog_id, 'jr_ps_settings' );
13
+ delete_blog_option( $blog_obj->blog_id, 'jr_ps_internal_settings' );
14
+ }
15
+ } else {
16
+ delete_option( 'jr_ps_settings' );
17
+ delete_option( 'jr_ps_internal_settings' );
18
+ }
19
+ ?>