Version Description
Download this release
Release Info
Developer | MattyRob |
Plugin | Subscribe2 |
Version | 2.12 |
Comparing to | |
See all releases |
Code changes from version 3.0 to 2.12
- ReadMe.txt +1 -14
- subscribe2/include.php +1 -5
- subscribe2/subscribe2.php +240 -301
- subscribe2/subscribe2.pot +108 -128
ReadMe.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: MattyRob, Skippy, Ravan
|
|
3 |
Donate link: http://subscribe2.wordpress.com/donate/
|
4 |
Tags: posts, subscription, email
|
5 |
Requires at least: 2.0.x
|
6 |
-
Tested up to: 2.
|
7 |
|
8 |
Sends a list of subscribers an email notification when new posts are published to your blog
|
9 |
|
@@ -77,19 +77,6 @@ Batches will occur for each group of message as described above. A site on Drea
|
|
77 |
|
78 |
== Version History ==
|
79 |
|
80 |
-
Version 3.0 by Matthew Robinson
|
81 |
-
|
82 |
-
* Updated for WordPress 2.1 Branch
|
83 |
-
|
84 |
-
Version 2.14 by Matthew Robinson
|
85 |
-
|
86 |
-
* Amended DREAMHOST setting to BCCLIMIT as more hosts are limiting emails
|
87 |
-
* Fixed oversight in upgrade() function
|
88 |
-
|
89 |
-
Version 2.13 by Matthew Robinson
|
90 |
-
|
91 |
-
* Added WordPress nonce functionality to improve admin security
|
92 |
-
|
93 |
Version 2.12 by Matthew Robinson
|
94 |
|
95 |
* Fix for missing Quicktags (probably since version 2.2.10)
|
3 |
Donate link: http://subscribe2.wordpress.com/donate/
|
4 |
Tags: posts, subscription, email
|
5 |
Requires at least: 2.0.x
|
6 |
+
Tested up to: 2.1
|
7 |
|
8 |
Sends a list of subscribers an email notification when new posts are published to your blog
|
9 |
|
77 |
|
78 |
== Version History ==
|
79 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
80 |
Version 2.12 by Matthew Robinson
|
81 |
|
82 |
* Fix for missing Quicktags (probably since version 2.2.10)
|
subscribe2/include.php
CHANGED
@@ -31,16 +31,12 @@ if (!isset($this->subscribe2_options['barred'])) {
|
|
31 |
$this->subscribe2_options['barred'] = '';
|
32 |
} // option containing domains barred from public registration
|
33 |
|
34 |
-
if (!isset($this->subscribe2_options['email_freq'])) {
|
35 |
-
$this->subscribe2_options['email_freq'] = "never";
|
36 |
-
} // option for sending emails periodically or per-post
|
37 |
-
|
38 |
if (!isset($this->subscribe2_options['mailtext'])) {
|
39 |
$this->subscribe2_options['mailtext'] = "BLOGNAME has posted a new item, 'TITLE'\r\nPOST\r\nYou may view the latest post at\r\nPERMALINK\r\nYou received this e-mail because you asked to be notified when new updates are posted.\r\nBest regards,\r\nMYNAME\r\nEMAIL";
|
40 |
} // Default notification email text
|
41 |
|
42 |
if (!isset($this->subscribe2_options['confirm_email'])) {
|
43 |
-
$this->subscribe2_options['confirm_email'] = "
|
44 |
} // Default confirmation email text
|
45 |
|
46 |
if (!isset($this->subscribe2_options['remind_email'])) {
|
31 |
$this->subscribe2_options['barred'] = '';
|
32 |
} // option containing domains barred from public registration
|
33 |
|
|
|
|
|
|
|
|
|
34 |
if (!isset($this->subscribe2_options['mailtext'])) {
|
35 |
$this->subscribe2_options['mailtext'] = "BLOGNAME has posted a new item, 'TITLE'\r\nPOST\r\nYou may view the latest post at\r\nPERMALINK\r\nYou received this e-mail because you asked to be notified when new updates are posted.\r\nBest regards,\r\nMYNAME\r\nEMAIL";
|
36 |
} // Default notification email text
|
37 |
|
38 |
if (!isset($this->subscribe2_options['confirm_email'])) {
|
39 |
+
$this->subscribe2_options['confirm_email'] = "In order to confirm your request for BLOGNAME, please click on the link below:\n\nLINK\n\nIf you did not request this, please feel free to disregard this notice!\n\nThank you,\nMYNAME.";
|
40 |
} // Default confirmation email text
|
41 |
|
42 |
if (!isset($this->subscribe2_options['remind_email'])) {
|
subscribe2/subscribe2.php
CHANGED
@@ -3,13 +3,13 @@
|
|
3 |
Plugin Name: Subscribe2
|
4 |
Plugin URI: http://subscribe2.wordpress.com
|
5 |
Description: Notifies an email list when new entries are posted.
|
6 |
-
Version: 2.
|
7 |
Author: Matthew Robinson
|
8 |
Author URI: http://subscribe2.wordpress.com
|
9 |
*/
|
10 |
|
11 |
/*
|
12 |
-
Copyright (C) 2006
|
13 |
Based on the Original Subscribe2 plugin by
|
14 |
Copyright (C) 2005 Scott Merrill (skippy@skippy.net)
|
15 |
|
@@ -29,18 +29,22 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
29 |
http://www.gnu.org/licenses/gpl.html
|
30 |
*/
|
31 |
|
32 |
-
//
|
33 |
-
//
|
34 |
-
//
|
35 |
-
define('
|
36 |
|
37 |
// by default, subscribe2 grabs the first page from your database for use
|
38 |
// when displaying the confirmation screen to public subscribers.
|
39 |
// You can override this by specifying a page ID below.
|
40 |
define('S2PAGE', '0');
|
41 |
|
|
|
|
|
|
|
|
|
42 |
// our version number. Don't touch.
|
43 |
-
define('S2VERSION', '2.
|
44 |
|
45 |
// Add the Subscribe code into the WP API
|
46 |
add_action('init', 's2init');
|
@@ -102,9 +106,7 @@ class subscribe2 {
|
|
102 |
|
103 |
$this->please_log_in = "<p>" . __('To manage your subscription options please ', 'subscribe2') . "<a href=\"" . get_settings('siteurl') . "/wp-login.php\">login</a>.</p>";
|
104 |
|
105 |
-
$this->
|
106 |
-
|
107 |
-
$this->use_profile_users = "<p>" . __('You may manage your subscription options from your ', 'subscribe2') . "<a href=\"" . get_settings('siteurl') . "/wp-admin/profile.php?page=" . plugin_basename(__FILE__) . "\">profile</a>.</p>";
|
108 |
|
109 |
$this->confirmation_sent = "<p>" . __('A confirmation message is on its way!', 'subscribe2') . "</p>";
|
110 |
|
@@ -147,13 +149,8 @@ class subscribe2 {
|
|
147 |
function admin_menu() {
|
148 |
add_management_page(__('Subscribers', 'subscribe2'), __('Subscribers', 'subscribe2'), "manage_options", __FILE__, array(&$this, 'manage_menu'));
|
149 |
add_options_page(__('Subscribe2 Options', 'subscribe2'), __('Subscribe2','subscribe2'), "manage_options", __FILE__, array(&$this, 'options_menu'));
|
150 |
-
|
151 |
-
|
152 |
-
} else {
|
153 |
-
add_submenu_page('profile.php', __('Subscriptions', 'subscribe2'), __('Subscriptions', 'subscribe2'), "read", __FILE__, array(&$this, 'user_menu'));
|
154 |
-
}
|
155 |
-
add_submenu_page('post-new.php', __('Mail Subscribers','subscribe2'), __('Mail Subscribers', 'subscribe2'),"manage_options", __FILE__, array(&$this, 'write_menu'));
|
156 |
-
$s2nonce = md5('subscribe2');
|
157 |
}
|
158 |
|
159 |
/**
|
@@ -174,18 +171,13 @@ class subscribe2 {
|
|
174 |
echo "</script>\r\n";
|
175 |
}
|
176 |
|
177 |
-
function add_weekly_sched($sched) {
|
178 |
-
$sched['weekly'] = array('interval' => 604800, 'display' => __('Once Weekly','subscribe2'));
|
179 |
-
return $sched;
|
180 |
-
}
|
181 |
-
|
182 |
/* ===== Install, upgrade, reset ===== */
|
183 |
/**
|
184 |
Install our table
|
185 |
*/
|
186 |
function install() {
|
187 |
// include upgrade-functions for maybe_create_table;
|
188 |
-
if (!function_exists('maybe_create_table')) {
|
189 |
require_once(ABSPATH . '/wp-admin/upgrade-functions.php');
|
190 |
}
|
191 |
$date = date('Y-m-d');
|
@@ -208,21 +200,23 @@ class subscribe2 {
|
|
208 |
global $wpdb;
|
209 |
|
210 |
// include upgrade-functions for maybe_create_table;
|
211 |
-
if (!function_exists('maybe_create_table')) {
|
212 |
require_once(ABSPATH . '/wp-admin/upgrade-functions.php');
|
213 |
}
|
214 |
$date = date('Y-m-d');
|
215 |
maybe_add_column($this->public, 'date', "ALTER TABLE `$this->public` ADD `date` DATE DEFAULT '$date' NOT NULL AFTER `active`;");
|
216 |
|
217 |
// let's take the time to check process registered users
|
218 |
-
//
|
219 |
$users = $wpdb->get_col("SELECT ID FROM $wpdb->users");
|
220 |
-
if (!empty($users)) {
|
221 |
foreach ($users as $user) {
|
222 |
$this->register($user);
|
223 |
}
|
224 |
}
|
225 |
// update the options table to serialized format
|
|
|
|
|
226 |
$old_options = $wpdb->get_col("SELECT option_name from $wpdb->options where option_name LIKE 's2%' AND option_name != 's2_future_posts'");
|
227 |
|
228 |
if (!empty($old_options)) {
|
@@ -234,8 +228,6 @@ class subscribe2 {
|
|
234 |
}
|
235 |
}
|
236 |
$this->subscribe2_options['version'] = S2VERSION;
|
237 |
-
//double check that the options are in the database
|
238 |
-
require_once(ABSPATH . "/wp-content/plugins/subscribe2/include.php");
|
239 |
update_option('subscribe2_options', $this->subscribe2_options);
|
240 |
} // end upgrade()
|
241 |
|
@@ -299,8 +291,8 @@ class subscribe2 {
|
|
299 |
|
300 |
// BCC all recipients
|
301 |
$bcc = '';
|
302 |
-
if ( (defined('
|
303 |
-
(count($recipients) >
|
304 |
// we're on Dreamhost, and have more than 30 susbcribers
|
305 |
$count = 1;
|
306 |
$batch = array();
|
@@ -310,7 +302,7 @@ class subscribe2 {
|
|
310 |
next($recipients);
|
311 |
$recipient = trim($recipient);
|
312 |
// sanity check -- make sure we have a valid email
|
313 |
-
if (!is_email($recipient)) { continue; }
|
314 |
// and NOT the sender's email, since they'll
|
315 |
// get a copy anyway
|
316 |
if ( (! empty($recipient)) && ($this->myemail != $recipient) ) {
|
@@ -340,10 +332,10 @@ class subscribe2 {
|
|
340 |
foreach ($recipients as $recipient) {
|
341 |
$recipient = trim($recipient);
|
342 |
// sanity check -- make sure we have a valid email
|
343 |
-
if (!is_email($recipient)) { continue; }
|
344 |
// and NOT the sender's email, since they'll
|
345 |
// get a copy anyway
|
346 |
-
if ( (!empty($recipient)) && ($this->myemail != $recipient) ) {
|
347 |
('' == $bcc) ? $bcc = "Bcc: $recipient" : $bcc .= ",\r\n $recipient";
|
348 |
// Headers constructed as per definition at http://www.ietf.org/rfc/rfc2822.txt
|
349 |
}
|
@@ -351,7 +343,7 @@ class subscribe2 {
|
|
351 |
$headers .= "$bcc\r\n";
|
352 |
}
|
353 |
// actually send mail
|
354 |
-
if ( (defined('
|
355 |
foreach ($batch as $bcc) {
|
356 |
$newheaders = $headers . "$bcc\r\n";
|
357 |
@wp_mail($this->myemail, $subject, $mailtext, $newheaders);
|
@@ -364,18 +356,21 @@ class subscribe2 {
|
|
364 |
/**
|
365 |
Sends an email notification of a new post
|
366 |
*/
|
367 |
-
function publish($id = 0) {
|
368 |
-
if (
|
369 |
|
370 |
// are we doing daily digests? If so, don't send anything now
|
371 |
-
if (
|
372 |
|
373 |
// we need to determine whether this is a new post, or an edit
|
374 |
-
if ($
|
375 |
-
//
|
376 |
-
|
377 |
-
|
378 |
-
|
|
|
|
|
|
|
379 |
}
|
380 |
|
381 |
$post_cats = wp_get_post_cats('1', $id);
|
@@ -399,16 +394,29 @@ class subscribe2 {
|
|
399 |
}
|
400 |
|
401 |
global $wpdb;
|
402 |
-
$post
|
403 |
// is this post set in the future?
|
404 |
if ($post->post_date > current_time('mysql')) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
405 |
// bail out
|
406 |
return $id;
|
407 |
}
|
408 |
|
409 |
// lets collect our public subscribers
|
410 |
// and all our registered subscribers for these categories
|
411 |
-
if (
|
412 |
// if this post is assigned to an excluded
|
413 |
// category, then this test will prevent
|
414 |
// the public from receiving notification
|
@@ -417,7 +425,7 @@ class subscribe2 {
|
|
417 |
$registered = $this->get_registered("cats=$post_cats_string");
|
418 |
|
419 |
// do we have subscribers?
|
420 |
-
if (
|
421 |
// if not, no sense doing anything else
|
422 |
return $id;
|
423 |
}
|
@@ -517,11 +525,11 @@ class subscribe2 {
|
|
517 |
*/
|
518 |
function send_confirm($what = '', $is_remind = FALSE) {
|
519 |
if ($this->filtered == 1) { return; }
|
520 |
-
if ( (
|
521 |
return false;
|
522 |
}
|
523 |
$id = $this->get_id($this->email);
|
524 |
-
if (
|
525 |
return false;
|
526 |
}
|
527 |
|
@@ -541,7 +549,7 @@ class subscribe2 {
|
|
541 |
|
542 |
$admin = get_userdata(1);
|
543 |
$this->myname = $admin->display_name;
|
544 |
-
|
545 |
if ($is_remind == TRUE) {
|
546 |
$body = $this->substitute(stripslashes($this->subscribe2_options['remind_email']));
|
547 |
$subject = stripslashes($this->remind_subject);
|
@@ -605,7 +613,7 @@ class subscribe2 {
|
|
605 |
function get_email ($id = 0) {
|
606 |
global $wpdb;
|
607 |
|
608 |
-
if (
|
609 |
return false;
|
610 |
}
|
611 |
return $wpdb->get_var("SELECT email FROM $this->public WHERE id=$id");
|
@@ -617,7 +625,7 @@ class subscribe2 {
|
|
617 |
function get_id ($email = '') {
|
618 |
global $wpdb;
|
619 |
|
620 |
-
if (
|
621 |
return false;
|
622 |
}
|
623 |
return $wpdb->get_var("SELECT id FROM $this->public WHERE email='$email'");
|
@@ -662,7 +670,7 @@ class subscribe2 {
|
|
662 |
}
|
663 |
}
|
664 |
|
665 |
-
if (!is_email($email)) { return false; }
|
666 |
|
667 |
if (false !== $this->is_public($email)) {
|
668 |
$wpdb->get_results("UPDATE $this->public SET date=NOW() WHERE email='$email'");
|
@@ -685,7 +693,7 @@ class subscribe2 {
|
|
685 |
}
|
686 |
}
|
687 |
|
688 |
-
if (!is_email($email)) { return false; }
|
689 |
$wpdb->get_results("DELETE FROM $this->public WHERE email='$email'");
|
690 |
} // end delete()
|
691 |
|
@@ -718,7 +726,7 @@ class subscribe2 {
|
|
718 |
$this->myname = $admin->display_name;
|
719 |
|
720 |
$recipients = explode(",", $emails);
|
721 |
-
if (!is_array($recipients)) { $recipients = array(); }
|
722 |
foreach ($recipients as $recipient) {
|
723 |
$this->email = $recipient;
|
724 |
$this->send_confirm('add', TRUE);
|
@@ -857,11 +865,11 @@ class subscribe2 {
|
|
857 |
$subscribers = array();
|
858 |
|
859 |
parse_str($args, $r);
|
860 |
-
if (!isset($r['cats']))
|
861 |
$r['cats'] = '';
|
862 |
-
if (!isset($r['format']))
|
863 |
$r['format'] = 'all';
|
864 |
-
if (!isset($r['amount']))
|
865 |
$r['amount'] = 'all';
|
866 |
|
867 |
$JOIN = ''; $AND = '';
|
@@ -911,7 +919,7 @@ class subscribe2 {
|
|
911 |
if ('' == $email) { return false; }
|
912 |
|
913 |
global $wpdb;
|
914 |
-
if (!empty($this->signup_dates)) {
|
915 |
return $this->signup_dates[$email];
|
916 |
} else {
|
917 |
$results = $wpdb->get_results("SELECT email, date FROM $this->public", ARRAY_N);
|
@@ -931,18 +939,14 @@ class subscribe2 {
|
|
931 |
|
932 |
if (0 == $user_id) { return $user_id; }
|
933 |
$user = get_userdata($user_id);
|
934 |
-
$all_cats = get_categories('type=post&hide_empty=1&hierarchical=0');
|
935 |
-
foreach ($all_cats as $cat) {
|
936 |
-
('' == $cats) ? $cats = "$cat->cat_ID" : $cats .= ",$cat->cat_ID";
|
937 |
-
}
|
938 |
|
939 |
// has this user previously signed up for email notification?
|
940 |
if (false !== $this->is_public($user->user_email)) {
|
941 |
// delete this user from the public table, and subscribe them to all the categories
|
942 |
$this->delete($user->user_email);
|
943 |
-
update_usermeta($user_id, 's2_subscribed', $
|
944 |
-
foreach(explode(',', $
|
945 |
-
update_usermeta($user_id, 's2_cat' . $
|
946 |
}
|
947 |
update_usermeta($user_id, 's2_format', 'text');
|
948 |
update_usermeta($user_id, 's2_excerpt', 'excerpt');
|
@@ -951,16 +955,16 @@ class subscribe2 {
|
|
951 |
$check = get_usermeta($user_id, 's2_subscribed');
|
952 |
// ensure existing subscriptions are not overwritten on upgrade
|
953 |
if (empty($check)) {
|
954 |
-
if ('yes' == $this->subscribe2_options['
|
955 |
// don't add entires by default if autosub is off, messes up daily digests
|
956 |
update_usermeta($user_id, 's2_subscribed', $this->get_all_categories());
|
957 |
foreach(explode(',', $this->get_all_categories()) as $cat) {
|
958 |
update_usermeta($user_id, 's2_cat' . $cat, "$cat");
|
959 |
}
|
960 |
-
if ('html' == $this->subscribe2_options['
|
961 |
update_usermeta($user_id, 's2_format', 'html');
|
962 |
update_usermeta($user_id, 's2_excerpt', 'post');
|
963 |
-
} elseif ('fulltext' == $this->subscribe2_options['
|
964 |
update_usermeta($user_id, 's2_format', 'text');
|
965 |
update_usermeta($user_id, 's2_excerpt', 'post');
|
966 |
} else {
|
@@ -977,7 +981,7 @@ class subscribe2 {
|
|
977 |
Subscribe all registered users to category selected on Admin Manage Page
|
978 |
*/
|
979 |
function subscribe_registered_users ($emails = '', $cats = '') {
|
980 |
-
if (
|
981 |
global $wpdb;
|
982 |
|
983 |
$useremails = explode(",", $emails);
|
@@ -986,17 +990,17 @@ class subscribe2 {
|
|
986 |
$sql = "SELECT ID FROM $wpdb->users WHERE user_email IN ('$useremails')";
|
987 |
$user_IDs = $wpdb->get_col($sql);
|
988 |
$cats = $_POST['category'];
|
989 |
-
if (!is_array($cats)) {
|
990 |
$cats = array($_POST['category']);
|
991 |
}
|
992 |
|
993 |
foreach ($user_IDs as $user_ID) {
|
994 |
$old_cats = explode(',', get_usermeta($user_ID, 's2_subscribed'));
|
995 |
-
if (!is_array($old_cats)) {
|
996 |
$old_cats = array($old_cats);
|
997 |
}
|
998 |
$new = array_diff($cats, $old_cats);
|
999 |
-
if (!empty($new)) {
|
1000 |
// add subscription to these cat IDs
|
1001 |
foreach ($new as $id) {
|
1002 |
update_usermeta($user_ID, 's2_cat' . $id, "$id");
|
@@ -1011,7 +1015,7 @@ class subscribe2 {
|
|
1011 |
Unsubscribe all registered users to category selected on Admin Manage Page
|
1012 |
*/
|
1013 |
function unsubscribe_registered_users ($emails = '', $cats = '') {
|
1014 |
-
if (
|
1015 |
global $wpdb;
|
1016 |
|
1017 |
$useremails = explode(",", $emails);
|
@@ -1020,17 +1024,17 @@ class subscribe2 {
|
|
1020 |
$sql = "SELECT ID FROM $wpdb->users WHERE user_email IN ('$useremails')";
|
1021 |
$user_IDs = $wpdb->get_col($sql);
|
1022 |
$cats = $_POST['category'];
|
1023 |
-
if (!is_array($cats)) {
|
1024 |
$cats = array($_POST['category']);
|
1025 |
}
|
1026 |
|
1027 |
foreach ($user_IDs as $user_ID) {
|
1028 |
$old_cats = explode(',', get_usermeta($user_ID, 's2_subscribed'));
|
1029 |
-
if (!is_array($old_cats)) {
|
1030 |
$old_cats = array($old_cats);
|
1031 |
}
|
1032 |
$remain = array_diff($old_cats, $cats);
|
1033 |
-
if (!empty($remain)) {
|
1034 |
// remove subscription to these cat IDs and update s2_subscribed
|
1035 |
foreach ($cats as $id) {
|
1036 |
delete_usermeta($user_ID, 's2_cat' . $id, "$id");
|
@@ -1059,7 +1063,7 @@ class subscribe2 {
|
|
1059 |
|
1060 |
foreach ($user_IDs as $user_ID) {
|
1061 |
$old_cats = explode(',', get_usermeta($user_ID, 's2_subscribed'));
|
1062 |
-
if (!is_array($old_cats)) {
|
1063 |
$old_cats = array($old_cats);
|
1064 |
}
|
1065 |
// add subscription to these cat IDs
|
@@ -1074,20 +1078,19 @@ class subscribe2 {
|
|
1074 |
Our management page
|
1075 |
*/
|
1076 |
function manage_menu() {
|
1077 |
-
global $wpdb
|
1078 |
|
1079 |
//Get Registered Subscribers for bulk management
|
1080 |
$registered = $this->get_registered();
|
1081 |
-
if
|
1082 |
$emails = implode(",", $registered);
|
1083 |
}
|
1084 |
|
1085 |
$what = '';
|
1086 |
-
$reminderform =
|
1087 |
|
1088 |
// was anything POSTed ?
|
1089 |
if (isset($_POST['s2_admin'])) {
|
1090 |
-
check_admin_referer('subscribe2-manage_subscribers' . $s2nonce);
|
1091 |
if ('subscribe' == $_POST['s2_admin']) {
|
1092 |
foreach (preg_split ("/[\s,]+/", $_POST['addresses']) as $email) {
|
1093 |
if (is_email($email)) {
|
@@ -1138,7 +1141,7 @@ class subscribe2 {
|
|
1138 |
$subscribers = $unconfirmed;
|
1139 |
if (!empty($unconfirmed)) {
|
1140 |
$reminderemails = implode(",", $unconfirmed);
|
1141 |
-
$reminderform =
|
1142 |
}
|
1143 |
} elseif (is_numeric($_POST['what'])) {
|
1144 |
$what = intval($_POST['what']);
|
@@ -1155,7 +1158,7 @@ class subscribe2 {
|
|
1155 |
$confirmed = $this->get_public();
|
1156 |
$subscribers = $confirmed;
|
1157 |
$what = 'confirmed';
|
1158 |
-
if (empty($subscribers)) {
|
1159 |
$unconfirmed = $this->get_public(0);
|
1160 |
$subscribers = $unconfirmed;
|
1161 |
$what = 'unconfirmed';
|
@@ -1177,9 +1180,6 @@ class subscribe2 {
|
|
1177 |
echo "<div class=\"wrap\">";
|
1178 |
echo "<h2>" . __('Subscribe Addresses', 'subscribe2') . "</h2>\r\n";
|
1179 |
echo "<form method=\"post\" action=\"\">\r\n";
|
1180 |
-
if (function_exists('wp_nonce_field')) {
|
1181 |
-
wp_nonce_field('subscribe2-manage_subscribers' . $s2nonce);
|
1182 |
-
}
|
1183 |
echo "<span style=\"align:left\">" . __('Enter addresses, one per line or comma-seperated', 'subscribe2') . "</span><br />\r\n";
|
1184 |
echo "<textarea rows=\"2\" cols=\"80\" name=\"addresses\"></textarea>";
|
1185 |
echo "<span class=\"submit\"><input type=\"submit\" name=\"submit\" value=\"" . __('Subscribe', 'subscribe2') . "\"/>";
|
@@ -1196,14 +1196,7 @@ class subscribe2 {
|
|
1196 |
echo "<p align=\"center\"><b>" . __('Registered on the left, confirmed in the middle, unconfirmed on the right', 'subscribe2') . "</b></p>";
|
1197 |
if (is_writable(ABSPATH . '/wp-content')) {
|
1198 |
$exportcsv = implode(",", $subscribers);
|
1199 |
-
echo "<span class=\"submit\"><form method=\"post\" action=\"\"
|
1200 |
-
if (function_exists('wp_nonce_field')) {
|
1201 |
-
wp_nonce_field('subscribe2-manage_subscribers' . $s2nonce);
|
1202 |
-
}
|
1203 |
-
echo "<input type=\"hidden\" name=\"exportcsv\" value=\"$exportcsv\" />\r\n";
|
1204 |
-
echo "<input type=\"hidden\" name=\"s2_admin\" value=\"exportcsv\" />\r\n";
|
1205 |
-
echo "<input type=\"submit\" name=\"submit\" value=\"" . __('Save Emails to CSV File','subscribe2') . "\" />\r\n";
|
1206 |
-
echo "</form></span>\r\n";
|
1207 |
}
|
1208 |
}
|
1209 |
echo "<table cellpadding=\"2\" cellspacing=\"2\">";
|
@@ -1220,29 +1213,11 @@ class subscribe2 {
|
|
1220 |
}
|
1221 |
echo "<a href=\"mailto:$subscriber\">$subscriber</a>\r\n";
|
1222 |
if (in_array($subscriber, $unconfirmed) || in_array($subscriber, $confirmed) ) {
|
1223 |
-
echo "(" . $this->signup_date($subscriber) . ")</td
|
1224 |
-
echo "<td width=\"5%\" align=\"center\"
|
1225 |
-
echo "<form method=\"post\" action=\"\">";
|
1226 |
-
if (function_exists('wp_nonce_field')) {
|
1227 |
-
wp_nonce_field('subscribe2-manage_subscribers' . $s2nonce);
|
1228 |
-
}
|
1229 |
-
echo "<input type=\"hidden\" name=\"email\" value=\"$subscriber\" />\r\n";
|
1230 |
-
echo "<input type=\"hidden\" name=\"s2_admin\" value=\"toggle\" />\r\n";
|
1231 |
-
echo "<input type=\"hidden\" name=\"what\" value=\"$what\" />\r\n";
|
1232 |
-
echo "<input type=\"submit\" name=\"submit\" value=\"";
|
1233 |
(in_array($subscriber, $unconfirmed)) ? $foo = '<-' : $foo= '->';
|
1234 |
-
echo "$foo\" /></form></td
|
1235 |
-
echo "<td width=\"2%\" align=\"center\"
|
1236 |
-
echo "<form method=\"post\" action=\"\">\r\n";
|
1237 |
-
if (function_exists('wp_nonce_field')) {
|
1238 |
-
wp_nonce_field('subscribe2-manage_subscribers' . $s2nonce);
|
1239 |
-
}
|
1240 |
-
echo "<span class=\"delete\">\r\n";
|
1241 |
-
echo "<input type=\"hidden\" name=\"email\" value=\"$subscriber\" />\r\n";
|
1242 |
-
echo "<input type=\"hidden\" name=\"s2_admin\" value=\"delete\" />\r\n";
|
1243 |
-
echo "<input type=\"hidden\" name=\"what\" value=\"$what\" />\r\n";
|
1244 |
-
echo "<input type=\"submit\" name=\"submit\" value=\"X\" />\r\n";
|
1245 |
-
echo "</span></form>";
|
1246 |
}
|
1247 |
echo "</td></tr>\r\n";
|
1248 |
('alternate' == $alternate) ? $alternate = '' : $alternate = 'alternate';
|
@@ -1251,16 +1226,7 @@ class subscribe2 {
|
|
1251 |
echo "<tr><td align=\"center\"><b>" . __('NONE', 'subscribe2') . "</b></td></tr>\r\n";
|
1252 |
}
|
1253 |
echo "</table>";
|
1254 |
-
if ($reminderform) {
|
1255 |
-
echo "<span class=\"submit\"><form method=\"post\" action=\"\">\r\n";
|
1256 |
-
if (function_exists('wp_nonce_field')) {
|
1257 |
-
wp_nonce_field('subscribe2-manage_subscribers' . $s2nonce);
|
1258 |
-
}
|
1259 |
-
echo "<input type=\"hidden\" name=\"reminderemails\" value=\"$reminderemails\" />\r\n";
|
1260 |
-
echo "<input type=\"hidden\" name=\"s2_admin\" value=\"remind\" />\r\n";
|
1261 |
-
echo "<input type=\"submit\" name=\"submit\" value=\"" . __('Send Reminder Email','subscribe2') . "\" />\r\n";
|
1262 |
-
echo "</form></span>";
|
1263 |
-
}
|
1264 |
echo "</div>\r\n";
|
1265 |
|
1266 |
//show bulk managment form
|
@@ -1268,12 +1234,8 @@ class subscribe2 {
|
|
1268 |
echo "<h2 >" . __('Categories', 'subscribe2') . "</h2>\r\n";
|
1269 |
echo __('Existing Registered Users can be automatically (un)subscribed to categories using this section.', 'subscribe2') . "<br />\r\n";
|
1270 |
echo "<strong><em style=\"color: red\">" . __('Consider User Privacy as changes cannot be undone', 'subscribe2') . "</em></strong><br />\r\n";
|
1271 |
-
echo "<span class=\"submit\"><form method=\"post\" action=\"\"
|
1272 |
-
|
1273 |
-
wp_nonce_field('subscribe2-manage_subscribers' . $s2nonce);
|
1274 |
-
}
|
1275 |
-
echo "<input type=\"hidden\" name=\"emails\" value=\"$emails\" /><input type=\"hidden\" name=\"s2_admin\" value=\"register\" />";
|
1276 |
-
$this->display_category_form();
|
1277 |
echo "<input type=\"submit\" id=\"deletepost\" name=\"submit\" value=\"" . __('Subscribe','subscribe2') . "\" />";
|
1278 |
echo "<input type=\"submit\" id=\"deletepost\" name=\"submit\" value=\"" . __('Unsubscribe','subscribe2') . "\" /></form></span>";
|
1279 |
|
@@ -1289,11 +1251,8 @@ class subscribe2 {
|
|
1289 |
Our options page
|
1290 |
*/
|
1291 |
function options_menu() {
|
1292 |
-
global $s2nonce;
|
1293 |
-
|
1294 |
// was anything POSTed?
|
1295 |
if (isset($_POST['s2_admin'])) {
|
1296 |
-
check_admin_referer('subscribe2-options_subscribers' . $s2nonce);
|
1297 |
if ('RESET' == $_POST['s2_admin']) {
|
1298 |
$this->reset();
|
1299 |
echo "<div id=\"message\" class=\"updated fade\"><strong><p>$this->options_reset</p></strong></div>";
|
@@ -1304,7 +1263,7 @@ class subscribe2 {
|
|
1304 |
} else {
|
1305 |
$exclude_cats = '';
|
1306 |
}
|
1307 |
-
|
1308 |
// allow override?
|
1309 |
(isset($_POST['reg_override'])) ? $override = '1' : $override = '0';
|
1310 |
$this->subscribe2_options['reg_override'] = $override;
|
@@ -1318,77 +1277,51 @@ class subscribe2 {
|
|
1318 |
if ('admin' == $_POST['sender']) {
|
1319 |
$sender = 'admin';
|
1320 |
}
|
1321 |
-
|
1322 |
-
|
1323 |
-
// send per-post or digest emails
|
1324 |
-
$email_freq = $_POST['email_freq'];
|
1325 |
-
$this->subscribe2_options['email_freq'] = $email_freq;
|
1326 |
-
wp_clear_scheduled_hook('s2_digest_cron');
|
1327 |
-
$scheds = (array) wp_get_schedules();
|
1328 |
-
$interval = ( isset($scheds[$email_freq]['interval']) ) ? (int) $scheds[$email_freq]['interval'] : 0;
|
1329 |
-
if ($interval == 0) {
|
1330 |
-
// if we are on per-post emails remove last_cron entry
|
1331 |
-
unset($this->subscribe2_options['last_s2cron']);
|
1332 |
-
} else {
|
1333 |
-
if (!wp_next_scheduled('s2_digest_cron')) {
|
1334 |
-
// if we are using digest schedule the event and prime last_cron as now
|
1335 |
-
wp_schedule_event(time() + $interval, $email_freq, 's2_digest_cron');
|
1336 |
-
$now = date('Y-m-d H:i:s', time());
|
1337 |
-
$this->subscribe2_options['last_s2cron'] = $now;
|
1338 |
-
}
|
1339 |
-
}
|
1340 |
|
1341 |
// email templates
|
1342 |
$mailtext = $_POST['mailtext'];
|
1343 |
-
|
1344 |
$confirm_email = $_POST['confirm_email'];
|
1345 |
-
|
1346 |
$remind_email = $_POST['remind_email'];
|
1347 |
-
|
1348 |
|
1349 |
//automatic subscription
|
1350 |
$autosub_option = $_POST['autosub'];
|
1351 |
-
|
1352 |
$autosub_format_option = $_POST['autoformat'];
|
1353 |
-
|
1354 |
|
1355 |
//barred domains
|
1356 |
$barred_option = $_POST['barred'];
|
1357 |
-
|
1358 |
echo "<div id=\"message\" class=\"updated fade\"><strong><p>$this->options_saved</p></strong></div>";
|
1359 |
-
|
1360 |
}
|
1361 |
}
|
1362 |
// show our form
|
1363 |
echo "<div class=\"wrap\">";
|
1364 |
-
echo "<form method=\"post\" action=\"\"
|
1365 |
-
|
1366 |
-
|
1367 |
-
}
|
1368 |
-
echo "<input type=\"hidden\" name=\"s2_admin\" value=\"options\" />\r\n";
|
1369 |
-
echo "<h2>" . __('Delivery Options', 'subscribe2') . ":</h2>\r\n";
|
1370 |
echo __('Send Email From', 'subscribe2') . ': ';
|
1371 |
-
echo "<input type=\"radio\" name=\"sender\" value=\"author\"";
|
1372 |
if ('author' == $this->subscribe2_options['sender']) {
|
1373 |
echo "checked=\"checked\" ";
|
1374 |
}
|
1375 |
echo " /> " . __('Author of the post', 'subscribe2') . " ";
|
1376 |
-
echo "<input type=\"radio\" name=\"sender\" value=\"admin\"";
|
1377 |
if ('admin' == $this->subscribe2_options['sender']) {
|
1378 |
echo "checked=\"checked\" ";
|
1379 |
}
|
1380 |
-
echo " /> " . __('Blog Admin', 'subscribe2') . "<br
|
1381 |
-
if (function_exists('wp_schedule_event')) {
|
1382 |
-
echo __('Send Email as Digest', 'subscribe2') . ": <br /><br />\r\n";
|
1383 |
-
$this->display_digest_choices();
|
1384 |
-
echo "<br />\r\n";
|
1385 |
-
}
|
1386 |
echo "<h2>" . __('Email Templates', 'subscribe2') . "</h2>\r\n";
|
1387 |
-
echo "<table width=\"100%\" cellspacing=\"2\" cellpadding=\"1\" class=\"editform\"
|
1388 |
echo "<tr><td>";
|
1389 |
echo __('New Post email (must not be empty)', 'subscribe2') . ":";
|
1390 |
echo "<br />\r\n";
|
1391 |
-
echo "<textarea rows=\"9\" cols=\"60\" name=\"mailtext\">" . stripslashes($this->subscribe2_options['mailtext']) . "</textarea><
|
1392 |
echo "</td><td valign=\"top\" rowspan=\"3\">";
|
1393 |
echo "<h3>" . __('Message substitions', 'subscribe2') . "</h3>\r\n";
|
1394 |
echo "<dl>";
|
@@ -1404,38 +1337,38 @@ class subscribe2 {
|
|
1404 |
echo "<dt><b>ACTION</b></dt><dd>" . __("Action performed by LINK in confirmation email<br />(<i>only used in the confirmation email template</i>)", 'subscribe2') . "</dd>\r\n";
|
1405 |
echo "</dl></td></tr><tr><td>";
|
1406 |
echo __('Subscribe / Unsubscribe confirmation email', 'subscribe2') . ":<br />\r\n";
|
1407 |
-
echo "<textarea rows=\"9\" cols=\"60\" name=\"confirm_email\">" . stripslashes($this->subscribe2_options['confirm_email']) . "</textarea><
|
1408 |
-
echo "</td></tr><tr
|
1409 |
echo __('Reminder email to Unconfirmed Subscribers', 'subscribe2') . ":<br />\r\n";
|
1410 |
-
echo "<textarea rows=\"9\" cols=\"60\" name=\"remind_email\">" . stripslashes($this->subscribe2_options['remind_email']) . "</textarea><
|
1411 |
-
echo "</td></tr></table
|
1412 |
|
1413 |
// excluded categories
|
1414 |
echo "<h2>" . __('Excluded Categories', 'subscribe2') . "</h2>\r\n";
|
1415 |
$this->display_category_form(explode(',', $this->get_excluded_cats()));
|
1416 |
-
echo "<center><input type=\"checkbox\" name=\"reg_override\" value=\"1\"";
|
1417 |
if ('1' == $this->subscribe2_options['reg_override']) {
|
1418 |
-
echo "
|
1419 |
}
|
1420 |
-
echo "
|
1421 |
echo "<h2>" . __('Writing Options', 'subscribe2') . "</h2>\r\n";
|
1422 |
-
echo "<input type=\"checkbox\" name=\"show_button\" value=\"1\"";
|
1423 |
if ('1' == $this->subscribe2_options['show_button']) {
|
1424 |
-
echo "
|
1425 |
}
|
1426 |
-
echo "
|
1427 |
|
1428 |
//Auto Subscription for new registrations
|
1429 |
echo "<h2>" . __('Auto Subscribe', 'subscribe2') . "</h2>\r\n";
|
1430 |
echo __('Automatically subscribe new users registering with your blog.', 'subscribe2') . "<br />\r\n";
|
1431 |
-
echo "<input type=\"radio\" name=\"autosub\" value=\"yes\"";
|
1432 |
if ('yes' == $this->subscribe2_options['autosub']) {
|
1433 |
-
echo "
|
1434 |
}
|
1435 |
echo " /> " . __('Yes', 'subscribe2') . " ";
|
1436 |
-
echo "<input type=\"radio\" name=\"autosub\" value=\"no\"";
|
1437 |
if ('no' == $this->subscribe2_options['autosub']) {
|
1438 |
-
echo "
|
1439 |
}
|
1440 |
echo " /> " . __('No', 'subscribe2') . "<br /><br />\r\n";
|
1441 |
echo __('Auto-subscribe users to receive email as', 'subscribe2') . ": <br />\r\n";
|
@@ -1453,12 +1386,12 @@ class subscribe2 {
|
|
1453 |
if ('text' == $this->subscribe2_options['autoformat']) {
|
1454 |
echo "checked=\"checked\" ";
|
1455 |
}
|
1456 |
-
echo "/> " . __('Plain Text - Excerpt', 'subscribe2') . "
|
1457 |
|
1458 |
//barred domains
|
1459 |
echo "<h2>" . __('Barred Domains', 'subscribe2') . "</h2>\r\n";
|
1460 |
echo __('Enter domains to bar from public subscriptions: <br /> (Use a new line for each entry and omit the "@" symbol, for example email.com)', 'subscribe2');
|
1461 |
-
echo "<
|
1462 |
|
1463 |
// submit
|
1464 |
echo "<p align=\"center\"><span class=\"submit\"><input type=\"submit\" id=\"save\" name=\"submit\" value=\"" . __('Submit', 'subscribe2') . "\" /></span></p>";
|
@@ -1469,9 +1402,6 @@ class subscribe2 {
|
|
1469 |
echo "<h2>" . __('Reset Default', 'subscribe2') . "</h2>\r\n";
|
1470 |
echo "<p>" . __('Use this to reset all options to their defaults. This <strong><em>will not</em></strong> modify your list of subscribers.', 'subscribe2') . "</p>\r\n";
|
1471 |
echo "<form method=\"post\" action=\"\">";
|
1472 |
-
if (function_exists('wp_nonce_field')) {
|
1473 |
-
wp_nonce_field('subscribe2-options_subscribers' . $s2nonce);
|
1474 |
-
}
|
1475 |
echo "<p align=\"center\"><span class=\"submit\">";
|
1476 |
echo "<input type=\"hidden\" name=\"s2_admin\" value=\"RESET\" />";
|
1477 |
echo "<input type=\"submit\" id=\"deletepost\" name=\"submit\" value=\"" . __('RESET', 'subscribe2') .
|
@@ -1487,13 +1417,12 @@ class subscribe2 {
|
|
1487 |
Our profile menu
|
1488 |
*/
|
1489 |
function user_menu() {
|
1490 |
-
global $user_ID
|
1491 |
|
1492 |
get_currentuserinfo();
|
1493 |
|
1494 |
// was anything POSTed?
|
1495 |
if ( (isset($_POST['s2_admin'])) && ('user' == $_POST['s2_admin']) ) {
|
1496 |
-
check_admin_referer('subscribe2-user_subscribers' . $s2nonce);
|
1497 |
echo "<div id=\"message\" class=\"updated fade\"><p><strong>" . __('Subscription preferences updated.', 'subscribe2') . "</strong></p></div>\n";
|
1498 |
$format = 'text';
|
1499 |
$post = 'post';
|
@@ -1517,19 +1446,19 @@ class subscribe2 {
|
|
1517 |
}
|
1518 |
delete_usermeta($user_ID, 's2_subscribed');
|
1519 |
} else {
|
1520 |
-
if (!is_array($cats)) {
|
1521 |
$cats = array($_POST['category']);
|
1522 |
}
|
1523 |
$old_cats = explode(',', get_usermeta($user_ID, 's2_subscribed'));
|
1524 |
$remove = array_diff($old_cats, $cats);
|
1525 |
$new = array_diff($cats, $old_cats);
|
1526 |
-
if (!empty($remove)) {
|
1527 |
// remove subscription to these cat IDs
|
1528 |
foreach ($remove as $id) {
|
1529 |
delete_usermeta($user_ID, "s2_cat" .$id);
|
1530 |
}
|
1531 |
}
|
1532 |
-
if (!empty($new)) {
|
1533 |
// add subscription to these cat IDs
|
1534 |
foreach ($new as $id) {
|
1535 |
update_usermeta($user_ID, 's2_cat' . $id, "$id");
|
@@ -1543,11 +1472,8 @@ class subscribe2 {
|
|
1543 |
echo "<div class=\"wrap\">";
|
1544 |
echo "<h2>" . __('Notification Settings', 'subscribe2') . "</h2>\r\n";
|
1545 |
echo "<form method=\"post\" action=\"\">";
|
1546 |
-
if (function_exists('wp_nonce_field')) {
|
1547 |
-
wp_nonce_field('subscribe2-user_subscribers' . $s2nonce);
|
1548 |
-
}
|
1549 |
echo "<input type=\"hidden\" name=\"s2_admin\" value=\"user\" />";
|
1550 |
-
if (
|
1551 |
echo __('Receive email as', 'subscribe2') . ": ";
|
1552 |
echo "<input type=\"radio\" name=\"s2_format\" value=\"html\"";
|
1553 |
if ('html' == get_usermeta($user_ID, 's2_format')) {
|
@@ -1571,9 +1497,9 @@ class subscribe2 {
|
|
1571 |
}
|
1572 |
echo "<p style=\"color: red\">" . __('Note: HTML format will always deliver the full post.', 'subscribe2') . "</p>\r\n";
|
1573 |
echo __('Automatically subscribe me to newly created categories', 'subscribe2') . ': ';
|
1574 |
-
|
1575 |
-
|
1576 |
-
|
1577 |
}
|
1578 |
echo "/> Yes <input type=\"radio\" name=\"new_category\" value=\"no\" ";
|
1579 |
if ('no' == get_usermeta($user_ID, 's2_autosub')) {
|
@@ -1588,9 +1514,9 @@ class subscribe2 {
|
|
1588 |
// we're doing daily digests, so just show
|
1589 |
// subscribe / unnsubscribe
|
1590 |
echo __('Receive daily summary of new posts?', 'subscribe2') . ': ';
|
1591 |
-
|
1592 |
-
|
1593 |
-
|
1594 |
}
|
1595 |
echo "/> Yes <input type=\"radio\" name=\"category\" value=\"\" ";
|
1596 |
if (! get_usermeta($user_ID, 's2_subscribed')) {
|
@@ -1612,11 +1538,8 @@ class subscribe2 {
|
|
1612 |
Display the Write sub-menu
|
1613 |
*/
|
1614 |
function write_menu() {
|
1615 |
-
global $wpdb, $s2nonce;
|
1616 |
-
|
1617 |
// was anything POSTed?
|
1618 |
if (isset($_POST['s2_admin']) && ('mail' == $_POST['s2_admin']) ) {
|
1619 |
-
check_admin_referer('subscribe2-write_subscribers' . $s2nonce);
|
1620 |
if ('confirmed' == $_POST['what']) {
|
1621 |
$recipients = $this->get_public();
|
1622 |
} elseif ('unconfirmed' == $_POST['what']) {
|
@@ -1647,9 +1570,6 @@ class subscribe2 {
|
|
1647 |
// show our form
|
1648 |
echo "<div class=\"wrap\"><h2>" . __('Send email to all subscribers', 'subscribe2') . "</h2>\r\n";
|
1649 |
echo "<form method=\"post\" action=\"\">\r\n";
|
1650 |
-
if (function_exists('wp_nonce_field')) {
|
1651 |
-
wp_nonce_field('subscribe2-write_subscribers' . $s2nonce);
|
1652 |
-
}
|
1653 |
echo __('Subject', 'subscribe2') . ": <input type=\"text\" size=\"69\" name=\"subject\" value=\"" . __('A message from ', 'subscribe2') . get_settings('blogname') . "\" /> <br />";
|
1654 |
echo "<textarea rows=\"12\" cols=\"75\" name=\"message\"></textarea>";
|
1655 |
echo "<br />\r\n";
|
@@ -1673,8 +1593,7 @@ class subscribe2 {
|
|
1673 |
function display_category_form($selected = array(), $override = 1) {
|
1674 |
global $wpdb;
|
1675 |
|
1676 |
-
$all_cats =
|
1677 |
-
|
1678 |
if (0 == $override) {
|
1679 |
// registered users are not allowed to subscribe to
|
1680 |
// excluded categories
|
@@ -1688,32 +1607,32 @@ class subscribe2 {
|
|
1688 |
$half = (count($all_cats) / 2);
|
1689 |
$i = 0;
|
1690 |
$j = 0;
|
1691 |
-
echo "<table width=\"100%\" cellspacing=\"2\" cellpadding=\"5\" class=\"editform\"
|
1692 |
-
echo "<tr valign=\"top\"><td width=\"50%\" align=\"left\"
|
1693 |
-
foreach ($all_cats as $
|
1694 |
if ( ($i >= $half) && (0 == $j) ){
|
1695 |
-
echo "</td><td width=\"50%\" align=\"left\"
|
1696 |
$j++;
|
1697 |
}
|
1698 |
if (0 == $j) {
|
1699 |
-
echo "<input type=\"checkbox\" name=\"category[]\" value=\"" . $
|
1700 |
-
if (in_array($
|
1701 |
echo " checked=\"checked\" ";
|
1702 |
}
|
1703 |
-
echo " /> " . $
|
1704 |
} else {
|
1705 |
|
1706 |
-
echo "<input type=\"checkbox\" name=\"category[]\" value=\"" . $
|
1707 |
-
if (in_array($
|
1708 |
echo " checked=\"checked\" ";
|
1709 |
}
|
1710 |
-
echo " /> " . $
|
1711 |
}
|
1712 |
$i++;
|
1713 |
}
|
1714 |
echo "</td></tr>\r\n";
|
1715 |
-
echo "<tr><td
|
1716 |
-
echo "<input type=\"checkbox\" name=\"checkall\" onclick=\"setAll(this)\" />
|
1717 |
echo "</td></tr>\r\n";
|
1718 |
echo "</table>\r\n";
|
1719 |
} // end display_category_form()
|
@@ -1732,8 +1651,6 @@ class subscribe2 {
|
|
1732 |
'unconfirmed' => ' ' . __('Unconfirmed', 'subscribe2'),
|
1733 |
'registered' => __('Registered Subscribers', 'subscribe2'));
|
1734 |
|
1735 |
-
$all_cats = get_categories('type=post&hide_empty=1&hierarchical=0');
|
1736 |
-
|
1737 |
// count the number of subscribers
|
1738 |
$count['confirmed'] = $wpdb->get_var("SELECT COUNT(id) FROM $this->public WHERE active='1'");
|
1739 |
$count['unconfirmed'] = $wpdb->get_var("SELECT COUNT(id) FROM $this->public WHERE active='0'");
|
@@ -1746,8 +1663,8 @@ class subscribe2 {
|
|
1746 |
}
|
1747 |
$count['registered'] = $wpdb->get_var("SELECT COUNT(meta_key) FROM $wpdb->usermeta WHERE meta_key='s2_subscribed'");
|
1748 |
$count['all'] = ($count['confirmed'] + $count['unconfirmed'] + $count['registered']);
|
1749 |
-
foreach ($
|
1750 |
-
$count[$
|
1751 |
}
|
1752 |
|
1753 |
// do have actually have some subscribers?
|
@@ -1764,17 +1681,18 @@ class subscribe2 {
|
|
1764 |
if (in_array($whom, $exclude)) { continue; }
|
1765 |
if (0 == $count[$whom]) { continue; }
|
1766 |
|
1767 |
-
echo "<option value=\"
|
1768 |
if ($whom == $selected) { echo " selected=\"selected\" "; }
|
1769 |
echo ">$display (" . ($count[$whom]) . ")</option>\r\n";
|
1770 |
}
|
1771 |
|
1772 |
if ($count['registered'] > 0) {
|
1773 |
-
foreach ($
|
1774 |
-
if (in_array($
|
1775 |
-
|
1776 |
-
|
1777 |
-
|
|
|
1778 |
}
|
1779 |
}
|
1780 |
echo "</select>";
|
@@ -1783,51 +1701,22 @@ class subscribe2 {
|
|
1783 |
}
|
1784 |
} // end display_subscriber_dropdown()
|
1785 |
|
1786 |
-
function display_digest_choices() {
|
1787 |
-
global $wpdb;
|
1788 |
-
$schedule = (array)wp_get_schedules();
|
1789 |
-
$schedule = array_merge(array('never' => array('interval' => 0, 'display' => __('Per Post Email','subscribe2'))), $schedule);
|
1790 |
-
$sort = array();
|
1791 |
-
foreach ( (array)$schedule as $key => $value ) $sort[$key] = $value['interval'];
|
1792 |
-
asort($sort);
|
1793 |
-
$schedule_sorted = array();
|
1794 |
-
foreach ($sort as $key => $value) {
|
1795 |
-
$schedule_sorted[$key] = $schedule[$key];
|
1796 |
-
}
|
1797 |
-
foreach ($schedule_sorted as $key => $value) {
|
1798 |
-
echo "<input type=\"radio\" name=\"email_freq\" value=\"" . $key . "\"";
|
1799 |
-
if ($key == $this->subscribe2_options['email_freq']) {
|
1800 |
-
echo " checked=\"checked\" ";
|
1801 |
-
}
|
1802 |
-
echo " /> " . $value['display'] . "<br />\r\n";
|
1803 |
-
}
|
1804 |
-
if (wp_next_scheduled('s2_digest_cron')) {
|
1805 |
-
$datetime = get_option('date_format') . ' @ ' . get_option('time_format');
|
1806 |
-
echo "<p>" . __('Next email notification will be sent', 'subscribe2') . ": \r\n";
|
1807 |
-
echo "<strong>" . gmdate($datetime, wp_next_scheduled('s2_digest_cron') + (get_option('gmt_offset') * 3600)) . "</strong></p>\r\n";
|
1808 |
-
}
|
1809 |
-
} // end display_digest_choices()
|
1810 |
-
|
1811 |
/* ===== template and filter functions ===== */
|
1812 |
/**
|
1813 |
Display our form; also handles (un)subscribe requests
|
1814 |
*/
|
1815 |
function filter($content = '') {
|
1816 |
-
if (
|
1817 |
$this->s2form = $this->form;
|
1818 |
|
1819 |
global $user_ID;
|
1820 |
get_currentuserinfo();
|
1821 |
if ($user_ID) {
|
1822 |
-
|
1823 |
-
$this->s2form = $this->use_profile_admin;
|
1824 |
-
} else {
|
1825 |
-
$this->s2form = $this->use_profile_users;
|
1826 |
-
}
|
1827 |
}
|
1828 |
if (isset($_POST['s2_action'])) {
|
1829 |
global $wpdb, $user_email;
|
1830 |
-
if (!is_email($_POST['email'])) {
|
1831 |
$this->s2form = $this->form . $this->not_an_email;
|
1832 |
} elseif ($this->is_barred($_POST['email'])) {
|
1833 |
$this->s2form = $this->form . $this->barred_domain;
|
@@ -1885,7 +1774,7 @@ class subscribe2 {
|
|
1885 |
|
1886 |
global $wpdb;
|
1887 |
|
1888 |
-
if (
|
1889 |
return "page_id=" . S2PAGE;
|
1890 |
} else {
|
1891 |
$id = $wpdb->get_var("SELECT ID FROM $wpdb->posts WHERE post_status='static' LIMIT 1");
|
@@ -1916,23 +1805,49 @@ class subscribe2 {
|
|
1916 |
} // end template_filter()
|
1917 |
|
1918 |
/* ===== wp-cron functions ===== */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1919 |
/**
|
1920 |
Send a daily digest of today's new posts
|
1921 |
*/
|
1922 |
-
function
|
1923 |
global $wpdb;
|
1924 |
|
1925 |
-
// collect posts
|
1926 |
-
$
|
1927 |
-
$
|
1928 |
-
$posts = $wpdb->get_results("SELECT ID, post_title, post_excerpt, post_content FROM $wpdb->posts WHERE post_date >= '$prev' AND post_date < '$now' AND post_status='publish' AND post_type='post'");
|
1929 |
|
1930 |
-
// update last_s2cron execution time before completing or bailing
|
1931 |
-
$this->subscribe2_options['last_s2cron'] = $now;
|
1932 |
-
update_option('subscribe2_options', $this->subscribe2_options);
|
1933 |
-
|
1934 |
// do we have any posts?
|
1935 |
-
if (
|
1936 |
|
1937 |
// if we have posts, let's prepare the digest
|
1938 |
foreach ($posts as $post) {
|
@@ -1974,6 +1889,7 @@ class subscribe2 {
|
|
1974 |
}
|
1975 |
|
1976 |
$author = get_userdata($post->post_author);
|
|
|
1977 |
|
1978 |
// do we send as admin, or post author?
|
1979 |
if ('author' == $this->subscribe2_options['sender']) {
|
@@ -1985,18 +1901,41 @@ class subscribe2 {
|
|
1985 |
}
|
1986 |
$this->myemail = $user->user_email;
|
1987 |
$this->myname = $user->display_name;
|
1988 |
-
|
1989 |
-
$
|
1990 |
-
$email_freq = $this->subscribe2_options['email_freq'];
|
1991 |
-
$display = $scheds[$email_freq]['display'];
|
1992 |
-
$subject = '[' . stripslashes(get_settings('blogname')) . '] ' . $display . ' ' . __('Digest Email', 'subscribe2');
|
1993 |
$public = $this->get_public();
|
1994 |
$registered = $this->get_registered();
|
1995 |
$recipients = array_merge((array)$public, (array)$registered);
|
1996 |
$mailtext = $this->substitute(stripslashes($this->subscribe2_options['mailtext']));
|
1997 |
$body = str_replace('POST', $message, $mailtext);
|
1998 |
$this->mail($recipients, $subject, $body);
|
1999 |
-
} // end
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2000 |
|
2001 |
/* ===== Our constructor ===== */
|
2002 |
/**
|
@@ -2013,11 +1952,11 @@ class subscribe2 {
|
|
2013 |
|
2014 |
// do we need to install anything?
|
2015 |
$this->public = $table_prefix . "subscribe2";
|
2016 |
-
if(mysql_query("SELECT COUNT(*) FROM ".$this->public)==FALSE) {
|
2017 |
//do we need to upgrade anything?
|
2018 |
if ($this->subscribe2_options['version'] !== S2VERSION) {
|
2019 |
-
|
2020 |
-
|
2021 |
|
2022 |
if (isset($_GET['s2'])) {
|
2023 |
// someone is confirming a request
|
@@ -2028,18 +1967,17 @@ class subscribe2 {
|
|
2028 |
|
2029 |
add_action('admin_head', array(&$this, 'admin_head'));
|
2030 |
add_action('admin_menu', array(&$this, 'admin_menu'));
|
|
|
|
|
|
|
2031 |
add_action('user_register', array(&$this, 'register'));
|
2032 |
add_action('create_category', array(&$this, 'autosub_new_category'));
|
2033 |
add_filter('the_content', array(&$this, 'filter'));
|
2034 |
-
|
2035 |
-
|
2036 |
-
|
2037 |
-
add_action('s2_digest_cron', array(&$this, 'subscribe2_cron'));
|
2038 |
-
} else {
|
2039 |
-
add_action('publish_post', array(&$this, 'publish'));
|
2040 |
-
add_action('edit_post', array(&$this, 'edit'));
|
2041 |
-
add_action('private_to_published', array(&$this, 'private2publish'));
|
2042 |
}
|
|
|
2043 |
|
2044 |
// load our strings
|
2045 |
$this->load_strings();
|
@@ -2082,5 +2020,6 @@ class subscribe2 {
|
|
2082 |
var $confirm_subject = '';
|
2083 |
var $options_saved = '';
|
2084 |
var $options_reset = '';
|
|
|
2085 |
} // end class subscribe2
|
2086 |
?>
|
3 |
Plugin Name: Subscribe2
|
4 |
Plugin URI: http://subscribe2.wordpress.com
|
5 |
Description: Notifies an email list when new entries are posted.
|
6 |
+
Version: 2.2.12
|
7 |
Author: Matthew Robinson
|
8 |
Author URI: http://subscribe2.wordpress.com
|
9 |
*/
|
10 |
|
11 |
/*
|
12 |
+
Copyright (C) 2006 Matthew Robinson
|
13 |
Based on the Original Subscribe2 plugin by
|
14 |
Copyright (C) 2005 Scott Merrill (skippy@skippy.net)
|
15 |
|
29 |
http://www.gnu.org/licenses/gpl.html
|
30 |
*/
|
31 |
|
32 |
+
// change this to TRUE if you're on Dreamhost
|
33 |
+
// (or any other host that limits the number of recipients
|
34 |
+
// permitted on each outgoing email message)
|
35 |
+
define('DREAMHOST', false);
|
36 |
|
37 |
// by default, subscribe2 grabs the first page from your database for use
|
38 |
// when displaying the confirmation screen to public subscribers.
|
39 |
// You can override this by specifying a page ID below.
|
40 |
define('S2PAGE', '0');
|
41 |
|
42 |
+
// change this to TRUE if you want a daily digest of the day's posts
|
43 |
+
// send to your subscribers
|
44 |
+
define('S2DIGEST', false);
|
45 |
+
|
46 |
// our version number. Don't touch.
|
47 |
+
define('S2VERSION', '2.2.12');
|
48 |
|
49 |
// Add the Subscribe code into the WP API
|
50 |
add_action('init', 's2init');
|
106 |
|
107 |
$this->please_log_in = "<p>" . __('To manage your subscription options please ', 'subscribe2') . "<a href=\"" . get_settings('siteurl') . "/wp-login.php\">login</a>.</p>";
|
108 |
|
109 |
+
$this->use_profile = "<p>" . __('You may manage your subscription options from your ', 'subscribe2') . "<a href=\"" . get_settings('siteurl') . "/wp-admin/profile.php?page=" . plugin_basename(__FILE__) . "\">profile</a>.</p>";
|
|
|
|
|
110 |
|
111 |
$this->confirmation_sent = "<p>" . __('A confirmation message is on its way!', 'subscribe2') . "</p>";
|
112 |
|
149 |
function admin_menu() {
|
150 |
add_management_page(__('Subscribers', 'subscribe2'), __('Subscribers', 'subscribe2'), "manage_options", __FILE__, array(&$this, 'manage_menu'));
|
151 |
add_options_page(__('Subscribe2 Options', 'subscribe2'), __('Subscribe2','subscribe2'), "manage_options", __FILE__, array(&$this, 'options_menu'));
|
152 |
+
add_submenu_page('profile.php', __('Subscriptions', 'subscribe2'), __('Subscriptions', 'subscribe2'), "read", __FILE__, array(&$this, 'user_menu'));
|
153 |
+
add_submenu_page('post.php', __('Mail Subscribers','subscribe2'), __('Mail Subscribers', 'subscribe2'),"manage_options", __FILE__, array(&$this, 'write_menu'));
|
|
|
|
|
|
|
|
|
|
|
154 |
}
|
155 |
|
156 |
/**
|
171 |
echo "</script>\r\n";
|
172 |
}
|
173 |
|
|
|
|
|
|
|
|
|
|
|
174 |
/* ===== Install, upgrade, reset ===== */
|
175 |
/**
|
176 |
Install our table
|
177 |
*/
|
178 |
function install() {
|
179 |
// include upgrade-functions for maybe_create_table;
|
180 |
+
if (! function_exists('maybe_create_table')) {
|
181 |
require_once(ABSPATH . '/wp-admin/upgrade-functions.php');
|
182 |
}
|
183 |
$date = date('Y-m-d');
|
200 |
global $wpdb;
|
201 |
|
202 |
// include upgrade-functions for maybe_create_table;
|
203 |
+
if (! function_exists('maybe_create_table')) {
|
204 |
require_once(ABSPATH . '/wp-admin/upgrade-functions.php');
|
205 |
}
|
206 |
$date = date('Y-m-d');
|
207 |
maybe_add_column($this->public, 'date', "ALTER TABLE `$this->public` ADD `date` DATE DEFAULT '$date' NOT NULL AFTER `active`;");
|
208 |
|
209 |
// let's take the time to check process registered users
|
210 |
+
// existing public subscribers are subscribed to all categories
|
211 |
$users = $wpdb->get_col("SELECT ID FROM $wpdb->users");
|
212 |
+
if (! empty($users)) {
|
213 |
foreach ($users as $user) {
|
214 |
$this->register($user);
|
215 |
}
|
216 |
}
|
217 |
// update the options table to serialized format
|
218 |
+
// We'll deal with s2_future_posts another time
|
219 |
+
// TODO: Fix s2_future posts
|
220 |
$old_options = $wpdb->get_col("SELECT option_name from $wpdb->options where option_name LIKE 's2%' AND option_name != 's2_future_posts'");
|
221 |
|
222 |
if (!empty($old_options)) {
|
228 |
}
|
229 |
}
|
230 |
$this->subscribe2_options['version'] = S2VERSION;
|
|
|
|
|
231 |
update_option('subscribe2_options', $this->subscribe2_options);
|
232 |
} // end upgrade()
|
233 |
|
291 |
|
292 |
// BCC all recipients
|
293 |
$bcc = '';
|
294 |
+
if ( (defined('DREAMHOST') && true == DREAMHOST) &&
|
295 |
+
(count($recipients) > 30) ) {
|
296 |
// we're on Dreamhost, and have more than 30 susbcribers
|
297 |
$count = 1;
|
298 |
$batch = array();
|
302 |
next($recipients);
|
303 |
$recipient = trim($recipient);
|
304 |
// sanity check -- make sure we have a valid email
|
305 |
+
if (! is_email($recipient)) { continue; }
|
306 |
// and NOT the sender's email, since they'll
|
307 |
// get a copy anyway
|
308 |
if ( (! empty($recipient)) && ($this->myemail != $recipient) ) {
|
332 |
foreach ($recipients as $recipient) {
|
333 |
$recipient = trim($recipient);
|
334 |
// sanity check -- make sure we have a valid email
|
335 |
+
if (! is_email($recipient)) { continue; }
|
336 |
// and NOT the sender's email, since they'll
|
337 |
// get a copy anyway
|
338 |
+
if ( (! empty($recipient)) && ($this->myemail != $recipient) ) {
|
339 |
('' == $bcc) ? $bcc = "Bcc: $recipient" : $bcc .= ",\r\n $recipient";
|
340 |
// Headers constructed as per definition at http://www.ietf.org/rfc/rfc2822.txt
|
341 |
}
|
343 |
$headers .= "$bcc\r\n";
|
344 |
}
|
345 |
// actually send mail
|
346 |
+
if ( (defined('DREAMHOST') && true == DREAMHOST) && (isset($batch)) ) {
|
347 |
foreach ($batch as $bcc) {
|
348 |
$newheaders = $headers . "$bcc\r\n";
|
349 |
@wp_mail($this->myemail, $subject, $mailtext, $newheaders);
|
356 |
/**
|
357 |
Sends an email notification of a new post
|
358 |
*/
|
359 |
+
function publish($id = 0, $cron = 0) {
|
360 |
+
if (! $id) { return $id; }
|
361 |
|
362 |
// are we doing daily digests? If so, don't send anything now
|
363 |
+
if ( defined('S2DIGEST') && true == S2DIGEST ) { return; }
|
364 |
|
365 |
// we need to determine whether this is a new post, or an edit
|
366 |
+
if (0 == $cron) {
|
367 |
+
// we're not being called from WP-Cron
|
368 |
+
if ($this->private) {
|
369 |
+
// this post was published from draft status
|
370 |
+
// OR is an edit of an existing post
|
371 |
+
// so send no notification
|
372 |
+
return $id;
|
373 |
+
}
|
374 |
}
|
375 |
|
376 |
$post_cats = wp_get_post_cats('1', $id);
|
394 |
}
|
395 |
|
396 |
global $wpdb;
|
397 |
+
$post = & get_post($id);
|
398 |
// is this post set in the future?
|
399 |
if ($post->post_date > current_time('mysql')) {
|
400 |
+
// is wp-cron installed?
|
401 |
+
if (function_exists('wp_cron_init')) {
|
402 |
+
// are we doing daily digests?
|
403 |
+
if ( defined('S2DIGEST') && false == S2DIGEST ) {
|
404 |
+
// not doing daily digests, so
|
405 |
+
// add this post to the list of
|
406 |
+
// future posts
|
407 |
+
$our_post = array('id' => $id, 'date' => $post->post_date);
|
408 |
+
$future_posts = get_option('s2_future_posts');
|
409 |
+
$future_posts[] = $our_post;
|
410 |
+
update_option('s2_future_posts', $future_posts);
|
411 |
+
}
|
412 |
+
}
|
413 |
// bail out
|
414 |
return $id;
|
415 |
}
|
416 |
|
417 |
// lets collect our public subscribers
|
418 |
// and all our registered subscribers for these categories
|
419 |
+
if (! $check) {
|
420 |
// if this post is assigned to an excluded
|
421 |
// category, then this test will prevent
|
422 |
// the public from receiving notification
|
425 |
$registered = $this->get_registered("cats=$post_cats_string");
|
426 |
|
427 |
// do we have subscribers?
|
428 |
+
if ( empty($public) && empty($registered) ) {
|
429 |
// if not, no sense doing anything else
|
430 |
return $id;
|
431 |
}
|
525 |
*/
|
526 |
function send_confirm($what = '', $is_remind = FALSE) {
|
527 |
if ($this->filtered == 1) { return; }
|
528 |
+
if ( (! $this->email) || (! $what) ) {
|
529 |
return false;
|
530 |
}
|
531 |
$id = $this->get_id($this->email);
|
532 |
+
if (! $id) {
|
533 |
return false;
|
534 |
}
|
535 |
|
549 |
|
550 |
$admin = get_userdata(1);
|
551 |
$this->myname = $admin->display_name;
|
552 |
+
|
553 |
if ($is_remind == TRUE) {
|
554 |
$body = $this->substitute(stripslashes($this->subscribe2_options['remind_email']));
|
555 |
$subject = stripslashes($this->remind_subject);
|
613 |
function get_email ($id = 0) {
|
614 |
global $wpdb;
|
615 |
|
616 |
+
if (! $id) {
|
617 |
return false;
|
618 |
}
|
619 |
return $wpdb->get_var("SELECT email FROM $this->public WHERE id=$id");
|
625 |
function get_id ($email = '') {
|
626 |
global $wpdb;
|
627 |
|
628 |
+
if (! $email) {
|
629 |
return false;
|
630 |
}
|
631 |
return $wpdb->get_var("SELECT id FROM $this->public WHERE email='$email'");
|
670 |
}
|
671 |
}
|
672 |
|
673 |
+
if (! is_email($email)) { return false; }
|
674 |
|
675 |
if (false !== $this->is_public($email)) {
|
676 |
$wpdb->get_results("UPDATE $this->public SET date=NOW() WHERE email='$email'");
|
693 |
}
|
694 |
}
|
695 |
|
696 |
+
if (! is_email($email)) { return false; }
|
697 |
$wpdb->get_results("DELETE FROM $this->public WHERE email='$email'");
|
698 |
} // end delete()
|
699 |
|
726 |
$this->myname = $admin->display_name;
|
727 |
|
728 |
$recipients = explode(",", $emails);
|
729 |
+
if (! is_array($recipients)) { $recipients = array(); }
|
730 |
foreach ($recipients as $recipient) {
|
731 |
$this->email = $recipient;
|
732 |
$this->send_confirm('add', TRUE);
|
865 |
$subscribers = array();
|
866 |
|
867 |
parse_str($args, $r);
|
868 |
+
if (! isset($r['cats']))
|
869 |
$r['cats'] = '';
|
870 |
+
if (! isset($r['format']))
|
871 |
$r['format'] = 'all';
|
872 |
+
if (! isset($r['amount']))
|
873 |
$r['amount'] = 'all';
|
874 |
|
875 |
$JOIN = ''; $AND = '';
|
919 |
if ('' == $email) { return false; }
|
920 |
|
921 |
global $wpdb;
|
922 |
+
if (! empty($this->signup_dates)) {
|
923 |
return $this->signup_dates[$email];
|
924 |
} else {
|
925 |
$results = $wpdb->get_results("SELECT email, date FROM $this->public", ARRAY_N);
|
939 |
|
940 |
if (0 == $user_id) { return $user_id; }
|
941 |
$user = get_userdata($user_id);
|
|
|
|
|
|
|
|
|
942 |
|
943 |
// has this user previously signed up for email notification?
|
944 |
if (false !== $this->is_public($user->user_email)) {
|
945 |
// delete this user from the public table, and subscribe them to all the categories
|
946 |
$this->delete($user->user_email);
|
947 |
+
update_usermeta($user_id, 's2_subscribed', $this->get_all_categories());
|
948 |
+
foreach(explode(',', $this->get_all_categories()) as $cat) {
|
949 |
+
update_usermeta($user_id, 's2_cat' . $cat, "$cat");
|
950 |
}
|
951 |
update_usermeta($user_id, 's2_format', 'text');
|
952 |
update_usermeta($user_id, 's2_excerpt', 'excerpt');
|
955 |
$check = get_usermeta($user_id, 's2_subscribed');
|
956 |
// ensure existing subscriptions are not overwritten on upgrade
|
957 |
if (empty($check)) {
|
958 |
+
if ('yes' == $this->subscribe2_options['s2_autosub']) {
|
959 |
// don't add entires by default if autosub is off, messes up daily digests
|
960 |
update_usermeta($user_id, 's2_subscribed', $this->get_all_categories());
|
961 |
foreach(explode(',', $this->get_all_categories()) as $cat) {
|
962 |
update_usermeta($user_id, 's2_cat' . $cat, "$cat");
|
963 |
}
|
964 |
+
if ('html' == $this->subscribe2_options['s2_autoformat']) {
|
965 |
update_usermeta($user_id, 's2_format', 'html');
|
966 |
update_usermeta($user_id, 's2_excerpt', 'post');
|
967 |
+
} elseif ('fulltext' == $this->subscribe2_options['s2_autoformat']) {
|
968 |
update_usermeta($user_id, 's2_format', 'text');
|
969 |
update_usermeta($user_id, 's2_excerpt', 'post');
|
970 |
} else {
|
981 |
Subscribe all registered users to category selected on Admin Manage Page
|
982 |
*/
|
983 |
function subscribe_registered_users ($emails = '', $cats = '') {
|
984 |
+
if (('' == $emails) || ('' == $cats)) { return false; }
|
985 |
global $wpdb;
|
986 |
|
987 |
$useremails = explode(",", $emails);
|
990 |
$sql = "SELECT ID FROM $wpdb->users WHERE user_email IN ('$useremails')";
|
991 |
$user_IDs = $wpdb->get_col($sql);
|
992 |
$cats = $_POST['category'];
|
993 |
+
if (! is_array($cats)) {
|
994 |
$cats = array($_POST['category']);
|
995 |
}
|
996 |
|
997 |
foreach ($user_IDs as $user_ID) {
|
998 |
$old_cats = explode(',', get_usermeta($user_ID, 's2_subscribed'));
|
999 |
+
if (! is_array($old_cats)) {
|
1000 |
$old_cats = array($old_cats);
|
1001 |
}
|
1002 |
$new = array_diff($cats, $old_cats);
|
1003 |
+
if (! empty($new)) {
|
1004 |
// add subscription to these cat IDs
|
1005 |
foreach ($new as $id) {
|
1006 |
update_usermeta($user_ID, 's2_cat' . $id, "$id");
|
1015 |
Unsubscribe all registered users to category selected on Admin Manage Page
|
1016 |
*/
|
1017 |
function unsubscribe_registered_users ($emails = '', $cats = '') {
|
1018 |
+
if (('' == $emails) || ('' == $cats)) { return false; }
|
1019 |
global $wpdb;
|
1020 |
|
1021 |
$useremails = explode(",", $emails);
|
1024 |
$sql = "SELECT ID FROM $wpdb->users WHERE user_email IN ('$useremails')";
|
1025 |
$user_IDs = $wpdb->get_col($sql);
|
1026 |
$cats = $_POST['category'];
|
1027 |
+
if (! is_array($cats)) {
|
1028 |
$cats = array($_POST['category']);
|
1029 |
}
|
1030 |
|
1031 |
foreach ($user_IDs as $user_ID) {
|
1032 |
$old_cats = explode(',', get_usermeta($user_ID, 's2_subscribed'));
|
1033 |
+
if (! is_array($old_cats)) {
|
1034 |
$old_cats = array($old_cats);
|
1035 |
}
|
1036 |
$remain = array_diff($old_cats, $cats);
|
1037 |
+
if (! empty($remain)) {
|
1038 |
// remove subscription to these cat IDs and update s2_subscribed
|
1039 |
foreach ($cats as $id) {
|
1040 |
delete_usermeta($user_ID, 's2_cat' . $id, "$id");
|
1063 |
|
1064 |
foreach ($user_IDs as $user_ID) {
|
1065 |
$old_cats = explode(',', get_usermeta($user_ID, 's2_subscribed'));
|
1066 |
+
if (! is_array($old_cats)) {
|
1067 |
$old_cats = array($old_cats);
|
1068 |
}
|
1069 |
// add subscription to these cat IDs
|
1078 |
Our management page
|
1079 |
*/
|
1080 |
function manage_menu() {
|
1081 |
+
global $wpdb;
|
1082 |
|
1083 |
//Get Registered Subscribers for bulk management
|
1084 |
$registered = $this->get_registered();
|
1085 |
+
if(!empty($registered)) {
|
1086 |
$emails = implode(",", $registered);
|
1087 |
}
|
1088 |
|
1089 |
$what = '';
|
1090 |
+
$reminderform = '';
|
1091 |
|
1092 |
// was anything POSTed ?
|
1093 |
if (isset($_POST['s2_admin'])) {
|
|
|
1094 |
if ('subscribe' == $_POST['s2_admin']) {
|
1095 |
foreach (preg_split ("/[\s,]+/", $_POST['addresses']) as $email) {
|
1096 |
if (is_email($email)) {
|
1141 |
$subscribers = $unconfirmed;
|
1142 |
if (!empty($unconfirmed)) {
|
1143 |
$reminderemails = implode(",", $unconfirmed);
|
1144 |
+
$reminderform = "<span class=\"submit\"><form method=\"post\" action=\"\"><input type=\"hidden\" name=\"reminderemails\" value=\"$reminderemails\" /><input type=\"hidden\" name=\"s2_admin\" value=\"remind\" /><input type=\"submit\" name=\"submit\" value=\"" . __('Send Reminder Email','subscribe2') . "\" /></form></span>";
|
1145 |
}
|
1146 |
} elseif (is_numeric($_POST['what'])) {
|
1147 |
$what = intval($_POST['what']);
|
1158 |
$confirmed = $this->get_public();
|
1159 |
$subscribers = $confirmed;
|
1160 |
$what = 'confirmed';
|
1161 |
+
if (empty ($subscribers)) {
|
1162 |
$unconfirmed = $this->get_public(0);
|
1163 |
$subscribers = $unconfirmed;
|
1164 |
$what = 'unconfirmed';
|
1180 |
echo "<div class=\"wrap\">";
|
1181 |
echo "<h2>" . __('Subscribe Addresses', 'subscribe2') . "</h2>\r\n";
|
1182 |
echo "<form method=\"post\" action=\"\">\r\n";
|
|
|
|
|
|
|
1183 |
echo "<span style=\"align:left\">" . __('Enter addresses, one per line or comma-seperated', 'subscribe2') . "</span><br />\r\n";
|
1184 |
echo "<textarea rows=\"2\" cols=\"80\" name=\"addresses\"></textarea>";
|
1185 |
echo "<span class=\"submit\"><input type=\"submit\" name=\"submit\" value=\"" . __('Subscribe', 'subscribe2') . "\"/>";
|
1196 |
echo "<p align=\"center\"><b>" . __('Registered on the left, confirmed in the middle, unconfirmed on the right', 'subscribe2') . "</b></p>";
|
1197 |
if (is_writable(ABSPATH . '/wp-content')) {
|
1198 |
$exportcsv = implode(",", $subscribers);
|
1199 |
+
echo "<span class=\"submit\"><form method=\"post\" action=\"\"><input type=\"hidden\" name=\"exportcsv\" value=\"$exportcsv\" /><input type=\"hidden\" name=\"s2_admin\" value=\"exportcsv\" /><input type=\"submit\" name=\"submit\" value=\"" . __('Save Emails to CSV File','subscribe2') . "\" /></form></span>";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1200 |
}
|
1201 |
}
|
1202 |
echo "<table cellpadding=\"2\" cellspacing=\"2\">";
|
1213 |
}
|
1214 |
echo "<a href=\"mailto:$subscriber\">$subscriber</a>\r\n";
|
1215 |
if (in_array($subscriber, $unconfirmed) || in_array($subscriber, $confirmed) ) {
|
1216 |
+
echo "(" . $this->signup_date($subscriber) . ")</td>";
|
1217 |
+
echo "<td width=\"5%\" align=\"center\"><form method=\"post\" action=\"\"><input type=\"hidden\" name=\"email\" value=\"$subscriber\" /><input type=\"hidden\" name=\"s2_admin\" value=\"toggle\" /><input type=\"hidden\" name=\"what\" value=\"$what\" /><input type=\"submit\" name=\"submit\" value=\"";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1218 |
(in_array($subscriber, $unconfirmed)) ? $foo = '<-' : $foo= '->';
|
1219 |
+
echo "$foo\" /></form></td>";
|
1220 |
+
echo "<td width=\"2%\" align=\"center\"><form method=\"post\" action=\"\"><span class=\"delete\"><input type=\"hidden\" name=\"email\" value=\"$subscriber\" /><input type=\"hidden\" name=\"s2_admin\" value=\"delete\" /><input type=\"hidden\" name=\"what\" value=\"$what\" /><input type=\"submit\" name=\"submit\" value=\"X\" /></span></form>";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1221 |
}
|
1222 |
echo "</td></tr>\r\n";
|
1223 |
('alternate' == $alternate) ? $alternate = '' : $alternate = 'alternate';
|
1226 |
echo "<tr><td align=\"center\"><b>" . __('NONE', 'subscribe2') . "</b></td></tr>\r\n";
|
1227 |
}
|
1228 |
echo "</table>";
|
1229 |
+
if (!empty($reminderform)) {echo $reminderform;}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1230 |
echo "</div>\r\n";
|
1231 |
|
1232 |
//show bulk managment form
|
1234 |
echo "<h2 >" . __('Categories', 'subscribe2') . "</h2>\r\n";
|
1235 |
echo __('Existing Registered Users can be automatically (un)subscribed to categories using this section.', 'subscribe2') . "<br />\r\n";
|
1236 |
echo "<strong><em style=\"color: red\">" . __('Consider User Privacy as changes cannot be undone', 'subscribe2') . "</em></strong><br />\r\n";
|
1237 |
+
echo "<span class=\"submit\"><form method=\"post\" action=\"\"><input type=\"hidden\" name=\"emails\" value=\"$emails\" /><input type=\"hidden\" name=\"s2_admin\" value=\"register\" />";
|
1238 |
+
$this->display_category_form(explode(',', $this->get_excluded_cats()));
|
|
|
|
|
|
|
|
|
1239 |
echo "<input type=\"submit\" id=\"deletepost\" name=\"submit\" value=\"" . __('Subscribe','subscribe2') . "\" />";
|
1240 |
echo "<input type=\"submit\" id=\"deletepost\" name=\"submit\" value=\"" . __('Unsubscribe','subscribe2') . "\" /></form></span>";
|
1241 |
|
1251 |
Our options page
|
1252 |
*/
|
1253 |
function options_menu() {
|
|
|
|
|
1254 |
// was anything POSTed?
|
1255 |
if (isset($_POST['s2_admin'])) {
|
|
|
1256 |
if ('RESET' == $_POST['s2_admin']) {
|
1257 |
$this->reset();
|
1258 |
echo "<div id=\"message\" class=\"updated fade\"><strong><p>$this->options_reset</p></strong></div>";
|
1263 |
} else {
|
1264 |
$exclude_cats = '';
|
1265 |
}
|
1266 |
+
$this->subscribe2_options['exclude'] = $exclude_cats;
|
1267 |
// allow override?
|
1268 |
(isset($_POST['reg_override'])) ? $override = '1' : $override = '0';
|
1269 |
$this->subscribe2_options['reg_override'] = $override;
|
1277 |
if ('admin' == $_POST['sender']) {
|
1278 |
$sender = 'admin';
|
1279 |
}
|
1280 |
+
$this->subscribe2_options['sender'] = $sender;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1281 |
|
1282 |
// email templates
|
1283 |
$mailtext = $_POST['mailtext'];
|
1284 |
+
$this->subscribe2_options['mailtext'] = $mailtext;
|
1285 |
$confirm_email = $_POST['confirm_email'];
|
1286 |
+
$this->subscribe2_options['confirm_email'] = $confirm_email;
|
1287 |
$remind_email = $_POST['remind_email'];
|
1288 |
+
$this->subscribe2_options['remind_email'] = $remind_email;
|
1289 |
|
1290 |
//automatic subscription
|
1291 |
$autosub_option = $_POST['autosub'];
|
1292 |
+
$this->subscribe2_options['autosub']= $autosub_option;
|
1293 |
$autosub_format_option = $_POST['autoformat'];
|
1294 |
+
$this->subscribe2_options['autoformat']= $autosub_format_option;
|
1295 |
|
1296 |
//barred domains
|
1297 |
$barred_option = $_POST['barred'];
|
1298 |
+
$this->subscribe2_options['barred'] = $barred_option;
|
1299 |
echo "<div id=\"message\" class=\"updated fade\"><strong><p>$this->options_saved</p></strong></div>";
|
1300 |
+
update_option('subscribe2_options', $this->subscribe2_options);
|
1301 |
}
|
1302 |
}
|
1303 |
// show our form
|
1304 |
echo "<div class=\"wrap\">";
|
1305 |
+
echo "<form method=\"post\" action=\"\">";
|
1306 |
+
echo "<input type=\"hidden\" name=\"s2_admin\" value=\"options\" />";
|
1307 |
+
echo "<h2>" . __('Delivery Options', 'subscribe2') . ":</h2>";
|
|
|
|
|
|
|
1308 |
echo __('Send Email From', 'subscribe2') . ': ';
|
1309 |
+
echo "<input type=\"radio\" name=\"sender\" value=\"author\" ";
|
1310 |
if ('author' == $this->subscribe2_options['sender']) {
|
1311 |
echo "checked=\"checked\" ";
|
1312 |
}
|
1313 |
echo " /> " . __('Author of the post', 'subscribe2') . " ";
|
1314 |
+
echo "<input type=\"radio\" name=\"sender\" value=\"admin\" ";
|
1315 |
if ('admin' == $this->subscribe2_options['sender']) {
|
1316 |
echo "checked=\"checked\" ";
|
1317 |
}
|
1318 |
+
echo " /> " . __('Blog Admin', 'subscribe2') . "<br />\r\n";
|
|
|
|
|
|
|
|
|
|
|
1319 |
echo "<h2>" . __('Email Templates', 'subscribe2') . "</h2>\r\n";
|
1320 |
+
echo "<table width=\"100%\" cellspacing=\"2\" cellpadding=\"1\" class=\"editform\">";
|
1321 |
echo "<tr><td>";
|
1322 |
echo __('New Post email (must not be empty)', 'subscribe2') . ":";
|
1323 |
echo "<br />\r\n";
|
1324 |
+
echo "<textarea rows=\"9\" cols=\"60\" name=\"mailtext\">" . stripslashes($this->subscribe2_options['mailtext']) . "</textarea><p>\r\n";
|
1325 |
echo "</td><td valign=\"top\" rowspan=\"3\">";
|
1326 |
echo "<h3>" . __('Message substitions', 'subscribe2') . "</h3>\r\n";
|
1327 |
echo "<dl>";
|
1337 |
echo "<dt><b>ACTION</b></dt><dd>" . __("Action performed by LINK in confirmation email<br />(<i>only used in the confirmation email template</i>)", 'subscribe2') . "</dd>\r\n";
|
1338 |
echo "</dl></td></tr><tr><td>";
|
1339 |
echo __('Subscribe / Unsubscribe confirmation email', 'subscribe2') . ":<br />\r\n";
|
1340 |
+
echo "<textarea rows=\"9\" cols=\"60\" name=\"confirm_email\">" . stripslashes($this->subscribe2_options['confirm_email']) . "</textarea><p>";
|
1341 |
+
echo "</td></tr><tr><td>";
|
1342 |
echo __('Reminder email to Unconfirmed Subscribers', 'subscribe2') . ":<br />\r\n";
|
1343 |
+
echo "<textarea rows=\"9\" cols=\"60\" name=\"remind_email\">" . stripslashes($this->subscribe2_options['remind_email']) . "</textarea><p>";
|
1344 |
+
echo "</td></tr></table>\r\n";
|
1345 |
|
1346 |
// excluded categories
|
1347 |
echo "<h2>" . __('Excluded Categories', 'subscribe2') . "</h2>\r\n";
|
1348 |
$this->display_category_form(explode(',', $this->get_excluded_cats()));
|
1349 |
+
echo "<p align=\"center\"><input type=\"checkbox\" name=\"reg_override\" value=\"1\"";
|
1350 |
if ('1' == $this->subscribe2_options['reg_override']) {
|
1351 |
+
echo "checked=\"checked\"";
|
1352 |
}
|
1353 |
+
echo "/> " . __('Allow registered users to subscribe to excluded categories?', 'subscribe2') . "</p>";
|
1354 |
echo "<h2>" . __('Writing Options', 'subscribe2') . "</h2>\r\n";
|
1355 |
+
echo "<p align=\"center\"><input type=\"checkbox\" name=\"show_button\" value=\"1\"";
|
1356 |
if ('1' == $this->subscribe2_options['show_button']) {
|
1357 |
+
echo "checked=\"checked\"";
|
1358 |
}
|
1359 |
+
echo "/> " . __('Show the Subscribe2 button on the Write toolbar?', 'subscribe2') . "</p>";
|
1360 |
|
1361 |
//Auto Subscription for new registrations
|
1362 |
echo "<h2>" . __('Auto Subscribe', 'subscribe2') . "</h2>\r\n";
|
1363 |
echo __('Automatically subscribe new users registering with your blog.', 'subscribe2') . "<br />\r\n";
|
1364 |
+
echo "<input type=\"radio\" name=\"autosub\" value=\"yes\" ";
|
1365 |
if ('yes' == $this->subscribe2_options['autosub']) {
|
1366 |
+
echo "checked=\"checked\" ";
|
1367 |
}
|
1368 |
echo " /> " . __('Yes', 'subscribe2') . " ";
|
1369 |
+
echo "<input type=\"radio\" name=\"autosub\" value=\"no\" ";
|
1370 |
if ('no' == $this->subscribe2_options['autosub']) {
|
1371 |
+
echo "checked=\"checked\" ";
|
1372 |
}
|
1373 |
echo " /> " . __('No', 'subscribe2') . "<br /><br />\r\n";
|
1374 |
echo __('Auto-subscribe users to receive email as', 'subscribe2') . ": <br />\r\n";
|
1386 |
if ('text' == $this->subscribe2_options['autoformat']) {
|
1387 |
echo "checked=\"checked\" ";
|
1388 |
}
|
1389 |
+
echo "/> " . __('Plain Text - Excerpt', 'subscribe2') . " ";
|
1390 |
|
1391 |
//barred domains
|
1392 |
echo "<h2>" . __('Barred Domains', 'subscribe2') . "</h2>\r\n";
|
1393 |
echo __('Enter domains to bar from public subscriptions: <br /> (Use a new line for each entry and omit the "@" symbol, for example email.com)', 'subscribe2');
|
1394 |
+
echo "<textarea style=\"width: 98%;\" rows=\"4\" cols=\"60\" name=\"barred\">" . $this->subscribe2_options['barred'] . "</textarea>";
|
1395 |
|
1396 |
// submit
|
1397 |
echo "<p align=\"center\"><span class=\"submit\"><input type=\"submit\" id=\"save\" name=\"submit\" value=\"" . __('Submit', 'subscribe2') . "\" /></span></p>";
|
1402 |
echo "<h2>" . __('Reset Default', 'subscribe2') . "</h2>\r\n";
|
1403 |
echo "<p>" . __('Use this to reset all options to their defaults. This <strong><em>will not</em></strong> modify your list of subscribers.', 'subscribe2') . "</p>\r\n";
|
1404 |
echo "<form method=\"post\" action=\"\">";
|
|
|
|
|
|
|
1405 |
echo "<p align=\"center\"><span class=\"submit\">";
|
1406 |
echo "<input type=\"hidden\" name=\"s2_admin\" value=\"RESET\" />";
|
1407 |
echo "<input type=\"submit\" id=\"deletepost\" name=\"submit\" value=\"" . __('RESET', 'subscribe2') .
|
1417 |
Our profile menu
|
1418 |
*/
|
1419 |
function user_menu() {
|
1420 |
+
global $user_ID;
|
1421 |
|
1422 |
get_currentuserinfo();
|
1423 |
|
1424 |
// was anything POSTed?
|
1425 |
if ( (isset($_POST['s2_admin'])) && ('user' == $_POST['s2_admin']) ) {
|
|
|
1426 |
echo "<div id=\"message\" class=\"updated fade\"><p><strong>" . __('Subscription preferences updated.', 'subscribe2') . "</strong></p></div>\n";
|
1427 |
$format = 'text';
|
1428 |
$post = 'post';
|
1446 |
}
|
1447 |
delete_usermeta($user_ID, 's2_subscribed');
|
1448 |
} else {
|
1449 |
+
if (! is_array($cats)) {
|
1450 |
$cats = array($_POST['category']);
|
1451 |
}
|
1452 |
$old_cats = explode(',', get_usermeta($user_ID, 's2_subscribed'));
|
1453 |
$remove = array_diff($old_cats, $cats);
|
1454 |
$new = array_diff($cats, $old_cats);
|
1455 |
+
if (! empty($remove)) {
|
1456 |
// remove subscription to these cat IDs
|
1457 |
foreach ($remove as $id) {
|
1458 |
delete_usermeta($user_ID, "s2_cat" .$id);
|
1459 |
}
|
1460 |
}
|
1461 |
+
if (! empty($new)) {
|
1462 |
// add subscription to these cat IDs
|
1463 |
foreach ($new as $id) {
|
1464 |
update_usermeta($user_ID, 's2_cat' . $id, "$id");
|
1472 |
echo "<div class=\"wrap\">";
|
1473 |
echo "<h2>" . __('Notification Settings', 'subscribe2') . "</h2>\r\n";
|
1474 |
echo "<form method=\"post\" action=\"\">";
|
|
|
|
|
|
|
1475 |
echo "<input type=\"hidden\" name=\"s2_admin\" value=\"user\" />";
|
1476 |
+
if ( defined('S2DIGEST') && FALSE == S2DIGEST ) {
|
1477 |
echo __('Receive email as', 'subscribe2') . ": ";
|
1478 |
echo "<input type=\"radio\" name=\"s2_format\" value=\"html\"";
|
1479 |
if ('html' == get_usermeta($user_ID, 's2_format')) {
|
1497 |
}
|
1498 |
echo "<p style=\"color: red\">" . __('Note: HTML format will always deliver the full post.', 'subscribe2') . "</p>\r\n";
|
1499 |
echo __('Automatically subscribe me to newly created categories', 'subscribe2') . ': ';
|
1500 |
+
echo "<input type=\"radio\" name=\"new_category\" value=\"yes\" ";
|
1501 |
+
if ('yes' == get_usermeta($user_ID, 's2_autosub')) {
|
1502 |
+
echo "checked=\"yes\" ";
|
1503 |
}
|
1504 |
echo "/> Yes <input type=\"radio\" name=\"new_category\" value=\"no\" ";
|
1505 |
if ('no' == get_usermeta($user_ID, 's2_autosub')) {
|
1514 |
// we're doing daily digests, so just show
|
1515 |
// subscribe / unnsubscribe
|
1516 |
echo __('Receive daily summary of new posts?', 'subscribe2') . ': ';
|
1517 |
+
echo "<input type=\"radio\" name=\"category\" value=\"1\" ";
|
1518 |
+
if (get_usermeta($user_ID, 's2_subscribed')) {
|
1519 |
+
echo "checked=\"yes\" ";
|
1520 |
}
|
1521 |
echo "/> Yes <input type=\"radio\" name=\"category\" value=\"\" ";
|
1522 |
if (! get_usermeta($user_ID, 's2_subscribed')) {
|
1538 |
Display the Write sub-menu
|
1539 |
*/
|
1540 |
function write_menu() {
|
|
|
|
|
1541 |
// was anything POSTed?
|
1542 |
if (isset($_POST['s2_admin']) && ('mail' == $_POST['s2_admin']) ) {
|
|
|
1543 |
if ('confirmed' == $_POST['what']) {
|
1544 |
$recipients = $this->get_public();
|
1545 |
} elseif ('unconfirmed' == $_POST['what']) {
|
1570 |
// show our form
|
1571 |
echo "<div class=\"wrap\"><h2>" . __('Send email to all subscribers', 'subscribe2') . "</h2>\r\n";
|
1572 |
echo "<form method=\"post\" action=\"\">\r\n";
|
|
|
|
|
|
|
1573 |
echo __('Subject', 'subscribe2') . ": <input type=\"text\" size=\"69\" name=\"subject\" value=\"" . __('A message from ', 'subscribe2') . get_settings('blogname') . "\" /> <br />";
|
1574 |
echo "<textarea rows=\"12\" cols=\"75\" name=\"message\"></textarea>";
|
1575 |
echo "<br />\r\n";
|
1593 |
function display_category_form($selected = array(), $override = 1) {
|
1594 |
global $wpdb;
|
1595 |
|
1596 |
+
$all_cats = $this->get_all_categories('array');
|
|
|
1597 |
if (0 == $override) {
|
1598 |
// registered users are not allowed to subscribe to
|
1599 |
// excluded categories
|
1607 |
$half = (count($all_cats) / 2);
|
1608 |
$i = 0;
|
1609 |
$j = 0;
|
1610 |
+
echo "<table width=\"100%\" cellspacing=\"2\" cellpadding=\"5\" class=\"editform\">";
|
1611 |
+
echo "<tr valign=\"top\"><td width=\"50%\" align=\"left\">";
|
1612 |
+
foreach ($all_cats as $cat_ID => $cat_name) {
|
1613 |
if ( ($i >= $half) && (0 == $j) ){
|
1614 |
+
echo "</td><td width=\"50%\" align=\"left\">";
|
1615 |
$j++;
|
1616 |
}
|
1617 |
if (0 == $j) {
|
1618 |
+
echo "<input type=\"checkbox\" name=\"category[]\" value=\"" . $cat_ID . "\"";
|
1619 |
+
if (in_array($cat_ID, $selected)) {
|
1620 |
echo " checked=\"checked\" ";
|
1621 |
}
|
1622 |
+
echo " /> " . $cat_name . "<br />\r\n";
|
1623 |
} else {
|
1624 |
|
1625 |
+
echo "<input type=\"checkbox\" name=\"category[]\" value=\"" . $cat_ID . "\"";
|
1626 |
+
if (in_array($cat_ID, $selected)) {
|
1627 |
echo " checked=\"checked\" ";
|
1628 |
}
|
1629 |
+
echo " /> " . $cat_name . "<br />\r\n";
|
1630 |
}
|
1631 |
$i++;
|
1632 |
}
|
1633 |
echo "</td></tr>\r\n";
|
1634 |
+
echo "<tr><td>\r\n";
|
1635 |
+
echo "<input type=\"checkbox\" name=\"checkall\" onclick=\"setAll(this)\" /> Select / Unselect All\r\n";
|
1636 |
echo "</td></tr>\r\n";
|
1637 |
echo "</table>\r\n";
|
1638 |
} // end display_category_form()
|
1651 |
'unconfirmed' => ' ' . __('Unconfirmed', 'subscribe2'),
|
1652 |
'registered' => __('Registered Subscribers', 'subscribe2'));
|
1653 |
|
|
|
|
|
1654 |
// count the number of subscribers
|
1655 |
$count['confirmed'] = $wpdb->get_var("SELECT COUNT(id) FROM $this->public WHERE active='1'");
|
1656 |
$count['unconfirmed'] = $wpdb->get_var("SELECT COUNT(id) FROM $this->public WHERE active='0'");
|
1663 |
}
|
1664 |
$count['registered'] = $wpdb->get_var("SELECT COUNT(meta_key) FROM $wpdb->usermeta WHERE meta_key='s2_subscribed'");
|
1665 |
$count['all'] = ($count['confirmed'] + $count['unconfirmed'] + $count['registered']);
|
1666 |
+
foreach ($this->get_all_categories('array') as $cat_ID => $cat_name) {
|
1667 |
+
$count[$cat_name] = $wpdb->get_var("SELECT COUNT(meta_value) FROM $wpdb->usermeta WHERE meta_key='s2_cat$cat_ID'");
|
1668 |
}
|
1669 |
|
1670 |
// do have actually have some subscribers?
|
1681 |
if (in_array($whom, $exclude)) { continue; }
|
1682 |
if (0 == $count[$whom]) { continue; }
|
1683 |
|
1684 |
+
echo "<option value=\"$whom\"";
|
1685 |
if ($whom == $selected) { echo " selected=\"selected\" "; }
|
1686 |
echo ">$display (" . ($count[$whom]) . ")</option>\r\n";
|
1687 |
}
|
1688 |
|
1689 |
if ($count['registered'] > 0) {
|
1690 |
+
foreach ($this->get_all_categories('array') as $cat_ID => $cat_name) {
|
1691 |
+
if (in_array($cat_ID, $exclude)) { continue; }
|
1692 |
+
if (0 == $count[$cat_name]) { continue; }
|
1693 |
+
echo "<option value=\"$cat_ID\"";
|
1694 |
+
if ($cat_ID == $selected) { echo " selected=\"selected\" "; }
|
1695 |
+
echo "> $cat_name (" . $count[$cat_name] . ") </option>\r\n";
|
1696 |
}
|
1697 |
}
|
1698 |
echo "</select>";
|
1701 |
}
|
1702 |
} // end display_subscriber_dropdown()
|
1703 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1704 |
/* ===== template and filter functions ===== */
|
1705 |
/**
|
1706 |
Display our form; also handles (un)subscribe requests
|
1707 |
*/
|
1708 |
function filter($content = '') {
|
1709 |
+
if (('' == $content) || (! preg_match('|<!--subscribe2-->|', $content))) { return $content; }
|
1710 |
$this->s2form = $this->form;
|
1711 |
|
1712 |
global $user_ID;
|
1713 |
get_currentuserinfo();
|
1714 |
if ($user_ID) {
|
1715 |
+
$this->s2form = $this->use_profile;
|
|
|
|
|
|
|
|
|
1716 |
}
|
1717 |
if (isset($_POST['s2_action'])) {
|
1718 |
global $wpdb, $user_email;
|
1719 |
+
if (! is_email($_POST['email'])) {
|
1720 |
$this->s2form = $this->form . $this->not_an_email;
|
1721 |
} elseif ($this->is_barred($_POST['email'])) {
|
1722 |
$this->s2form = $this->form . $this->barred_domain;
|
1774 |
|
1775 |
global $wpdb;
|
1776 |
|
1777 |
+
if ( defined('S2PAGE') && 0 !== S2PAGE ) {
|
1778 |
return "page_id=" . S2PAGE;
|
1779 |
} else {
|
1780 |
$id = $wpdb->get_var("SELECT ID FROM $wpdb->posts WHERE post_status='static' LIMIT 1");
|
1805 |
} // end template_filter()
|
1806 |
|
1807 |
/* ===== wp-cron functions ===== */
|
1808 |
+
/**
|
1809 |
+
Send notifications for any posts that are now visible
|
1810 |
+
*/
|
1811 |
+
function subscribe2_hourly() {
|
1812 |
+
$future_posts = get_option('s2_future_posts');
|
1813 |
+
|
1814 |
+
// if we have no future posts, bail out
|
1815 |
+
if (! $future_posts) { return; }
|
1816 |
+
|
1817 |
+
// this will hold the posts that aren't yet visible
|
1818 |
+
$not_yet = array();
|
1819 |
+
|
1820 |
+
foreach ($future_posts as $post) {
|
1821 |
+
if ( current_time('mysql') > $post['date'] ) {
|
1822 |
+
// this post is now visible, so let's
|
1823 |
+
// send a notification
|
1824 |
+
$this->publish($post['id'], 1);
|
1825 |
+
} else {
|
1826 |
+
array_push($not_yet, $post);
|
1827 |
+
}
|
1828 |
+
}
|
1829 |
+
// are the number of elements in $not_yet
|
1830 |
+
// the same as in $future posts?
|
1831 |
+
if ( count($not_yet) != count($future_posts) ) {
|
1832 |
+
// if not, then some posts have been removed
|
1833 |
+
// from $future_posts, and the remainder need
|
1834 |
+
// to be recorded back to the database
|
1835 |
+
update_option('s2_future_posts', $not_yet);
|
1836 |
+
}
|
1837 |
+
} // end subscribe2_hourly
|
1838 |
+
|
1839 |
/**
|
1840 |
Send a daily digest of today's new posts
|
1841 |
*/
|
1842 |
+
function subscribe2_daily() {
|
1843 |
global $wpdb;
|
1844 |
|
1845 |
+
// collect yesterday's posts
|
1846 |
+
$yesterday = date('Y-m-d', (get_option('wp_cron_daily_lastrun')-60));
|
1847 |
+
$posts = $wpdb->get_results("SELECT ID, post_title, post_excerpt, post_content FROM $wpdb->posts WHERE post_date > '$yesterday 00:00:00' AND post_date < '$yesterday 23:59:59' AND post_status='publish'");
|
|
|
1848 |
|
|
|
|
|
|
|
|
|
1849 |
// do we have any posts?
|
1850 |
+
if (! $posts) { return; }
|
1851 |
|
1852 |
// if we have posts, let's prepare the digest
|
1853 |
foreach ($posts as $post) {
|
1889 |
}
|
1890 |
|
1891 |
$author = get_userdata($post->post_author);
|
1892 |
+
$this->authorname = $author->display_name;
|
1893 |
|
1894 |
// do we send as admin, or post author?
|
1895 |
if ('author' == $this->subscribe2_options['sender']) {
|
1901 |
}
|
1902 |
$this->myemail = $user->user_email;
|
1903 |
$this->myname = $user->display_name;
|
1904 |
+
|
1905 |
+
$subject = '[' . stripslashes(get_settings('blogname')) . '] ' . __('Daily Digest', 'subscribe2') . ' ' . $yesterday;
|
|
|
|
|
|
|
1906 |
$public = $this->get_public();
|
1907 |
$registered = $this->get_registered();
|
1908 |
$recipients = array_merge((array)$public, (array)$registered);
|
1909 |
$mailtext = $this->substitute(stripslashes($this->subscribe2_options['mailtext']));
|
1910 |
$body = str_replace('POST', $message, $mailtext);
|
1911 |
$this->mail($recipients, $subject, $body);
|
1912 |
+
} // end subscribe2_daily
|
1913 |
+
|
1914 |
+
/**
|
1915 |
+
If the to-be-deleted post was future-dated, remove it from the list of future-dated posts
|
1916 |
+
*/
|
1917 |
+
function delete_future($id = 0) {
|
1918 |
+
if (0 == $id) { return $id; }
|
1919 |
+
|
1920 |
+
$future = get_settings('s2_future_posts');
|
1921 |
+
// if we have no future-dated posts scheduled, bail out
|
1922 |
+
if ( ! $future) {
|
1923 |
+
return $id;
|
1924 |
+
}
|
1925 |
+
foreach ($future as $post) {
|
1926 |
+
// is the deleted post in the list of future posts?
|
1927 |
+
if ($id == $post['id']) {
|
1928 |
+
// skip it
|
1929 |
+
continue;
|
1930 |
+
} else {
|
1931 |
+
// add this to the new list of future posts
|
1932 |
+
$new_future[] = $post;
|
1933 |
+
}
|
1934 |
+
}
|
1935 |
+
if ($new_future != $future) {
|
1936 |
+
update_option('s2_future_posts', $new_future);
|
1937 |
+
}
|
1938 |
+
} // end delete_future()
|
1939 |
|
1940 |
/* ===== Our constructor ===== */
|
1941 |
/**
|
1952 |
|
1953 |
// do we need to install anything?
|
1954 |
$this->public = $table_prefix . "subscribe2";
|
1955 |
+
if(mysql_query("SELECT COUNT(*) FROM ".$this->public)==FALSE) { $this->install(); }
|
1956 |
//do we need to upgrade anything?
|
1957 |
if ($this->subscribe2_options['version'] !== S2VERSION) {
|
1958 |
+
$this->upgrade();
|
1959 |
+
}
|
1960 |
|
1961 |
if (isset($_GET['s2'])) {
|
1962 |
// someone is confirming a request
|
1967 |
|
1968 |
add_action('admin_head', array(&$this, 'admin_head'));
|
1969 |
add_action('admin_menu', array(&$this, 'admin_menu'));
|
1970 |
+
add_action('publish_post', array(&$this, 'publish'));
|
1971 |
+
add_action('edit_post', array(&$this, 'edit'));
|
1972 |
+
add_action('private_to_published', array(&$this, 'private2publish'));
|
1973 |
add_action('user_register', array(&$this, 'register'));
|
1974 |
add_action('create_category', array(&$this, 'autosub_new_category'));
|
1975 |
add_filter('the_content', array(&$this, 'filter'));
|
1976 |
+
add_action('wp_cron_hourly', array(&$this, 'subscribe2_hourly'));
|
1977 |
+
if (defined('S2DIGEST') && TRUE == S2DIGEST) {
|
1978 |
+
add_action('wp_cron_daily', array(&$this, 'subscribe2_daily'));
|
|
|
|
|
|
|
|
|
|
|
1979 |
}
|
1980 |
+
add_action('delete_post', array(&$this, 'delete_future'));
|
1981 |
|
1982 |
// load our strings
|
1983 |
$this->load_strings();
|
2020 |
var $confirm_subject = '';
|
2021 |
var $options_saved = '';
|
2022 |
var $options_reset = '';
|
2023 |
+
|
2024 |
} // end class subscribe2
|
2025 |
?>
|
subscribe2/subscribe2.pot
CHANGED
@@ -8,7 +8,7 @@ msgid ""
|
|
8 |
msgstr ""
|
9 |
"Project-Id-Version: PACKAGE VERSION\n"
|
10 |
"Report-Msgid-Bugs-To: \n"
|
11 |
-
"POT-Creation-Date: 2007-
|
12 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
13 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
14 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
@@ -16,449 +16,429 @@ msgstr ""
|
|
16 |
"Content-Type: text/plain; charset=CHARSET\n"
|
17 |
"Content-Transfer-Encoding: 8bit\n"
|
18 |
|
19 |
-
#: subscribe2.php:
|
20 |
msgid "To manage your subscription options please "
|
21 |
msgstr ""
|
22 |
|
23 |
-
#: subscribe2.php:
|
24 |
msgid "You may manage your subscription options from your "
|
25 |
msgstr ""
|
26 |
|
27 |
-
#: subscribe2.php:
|
28 |
msgid "A confirmation message is on its way!"
|
29 |
msgstr ""
|
30 |
|
31 |
-
#: subscribe2.php:
|
32 |
msgid "That email address is already subscribed."
|
33 |
msgstr ""
|
34 |
|
35 |
-
#: subscribe2.php:
|
36 |
msgid "That email address is not subscribed."
|
37 |
msgstr ""
|
38 |
|
39 |
-
#: subscribe2.php:
|
40 |
msgid "Sorry, but that does not look like an email address to me."
|
41 |
msgstr ""
|
42 |
|
43 |
-
#: subscribe2.php:
|
44 |
msgid ""
|
45 |
"Sorry, email addresses at that domain are currently barred due to spam, "
|
46 |
"please use an alternative email address."
|
47 |
msgstr ""
|
48 |
|
49 |
-
#: subscribe2.php:
|
50 |
msgid "Message sent!"
|
51 |
msgstr ""
|
52 |
|
53 |
-
#: subscribe2.php:
|
54 |
msgid "Your email:"
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: subscribe2.php:
|
58 |
msgid "Subscribe"
|
59 |
msgstr ""
|
60 |
|
61 |
-
#: subscribe2.php:
|
62 |
msgid "Unsubscribe"
|
63 |
msgstr ""
|
64 |
|
65 |
-
#: subscribe2.php:
|
66 |
msgid "Send"
|
67 |
msgstr ""
|
68 |
|
69 |
-
#: subscribe2.php:
|
70 |
msgid "No such email address is registered."
|
71 |
msgstr ""
|
72 |
|
73 |
-
#: subscribe2.php:
|
74 |
msgid "You have successfully subscribed!"
|
75 |
msgstr ""
|
76 |
|
77 |
-
#: subscribe2.php:
|
78 |
msgid "You have successfully unsubscribed."
|
79 |
msgstr ""
|
80 |
|
81 |
-
#: subscribe2.php:
|
82 |
msgid "Please confirm your request"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: subscribe2.php:
|
86 |
msgid "Subscription Reminder"
|
87 |
msgstr ""
|
88 |
|
89 |
-
#: subscribe2.php:
|
90 |
msgid "subscribe"
|
91 |
msgstr ""
|
92 |
|
93 |
-
#: subscribe2.php:
|
94 |
msgid "unsubscribe"
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: subscribe2.php:
|
98 |
msgid "Options saved!"
|
99 |
msgstr ""
|
100 |
|
101 |
-
#: subscribe2.php:
|
102 |
msgid "Options reset!"
|
103 |
msgstr ""
|
104 |
|
105 |
-
#: subscribe2.php:
|
106 |
msgid "Subscribers"
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: subscribe2.php:
|
110 |
msgid "Subscribe2 Options"
|
111 |
msgstr ""
|
112 |
|
113 |
-
#: subscribe2.php:
|
114 |
msgid "Subscribe2"
|
115 |
msgstr ""
|
116 |
|
117 |
-
#: subscribe2.php:
|
118 |
msgid "Subscriptions"
|
119 |
msgstr ""
|
120 |
|
121 |
-
#: subscribe2.php:
|
122 |
msgid "Mail Subscribers"
|
123 |
msgstr ""
|
124 |
|
125 |
-
#: subscribe2.php:
|
126 |
-
msgid "Once Weekly"
|
127 |
-
msgstr ""
|
128 |
-
|
129 |
-
#: subscribe2.php:780
|
130 |
msgid "New subscriber"
|
131 |
msgstr ""
|
132 |
|
133 |
-
#: subscribe2.php:
|
134 |
msgid "subscribed to email notifications!"
|
135 |
msgstr ""
|
136 |
|
137 |
-
#: subscribe2.php:
|
138 |
msgid "Address(es) subscribed!"
|
139 |
msgstr ""
|
140 |
|
141 |
-
#: subscribe2.php:
|
142 |
msgid "deleted!"
|
143 |
msgstr ""
|
144 |
|
145 |
-
#: subscribe2.php:
|
146 |
msgid "status changed!"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: subscribe2.php:
|
150 |
msgid "Reminder Email(s) Sent!"
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: subscribe2.php:
|
154 |
msgid "CSV File Created in wp-content"
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: subscribe2.php:
|
158 |
msgid "Registered Users Subscribed!"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: subscribe2.php:
|
162 |
msgid "Registered Users Unsubscribed!"
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: subscribe2.php:
|
|
|
|
|
|
|
|
|
166 |
msgid "Subscribe Addresses"
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: subscribe2.php:
|
170 |
msgid "Enter addresses, one per line or comma-seperated"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: subscribe2.php:
|
174 |
msgid "Filter"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: subscribe2.php:
|
178 |
msgid ""
|
179 |
"Registered on the left, confirmed in the middle, unconfirmed on the right"
|
180 |
msgstr ""
|
181 |
|
182 |
-
#: subscribe2.php:
|
183 |
msgid "Save Emails to CSV File"
|
184 |
msgstr ""
|
185 |
|
186 |
-
#: subscribe2.php:
|
187 |
msgid "NONE"
|
188 |
msgstr ""
|
189 |
|
190 |
-
#: subscribe2.php:
|
191 |
-
msgid "Send Reminder Email"
|
192 |
-
msgstr ""
|
193 |
-
|
194 |
-
#: subscribe2.php:1268
|
195 |
msgid "Categories"
|
196 |
msgstr ""
|
197 |
|
198 |
-
#: subscribe2.php:
|
199 |
msgid ""
|
200 |
"Existing Registered Users can be automatically (un)subscribed to categories "
|
201 |
"using this section."
|
202 |
msgstr ""
|
203 |
|
204 |
-
#: subscribe2.php:
|
205 |
msgid "Consider User Privacy as changes cannot be undone"
|
206 |
msgstr ""
|
207 |
|
208 |
-
#: subscribe2.php:
|
209 |
msgid "Delivery Options"
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: subscribe2.php:
|
213 |
msgid "Send Email From"
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: subscribe2.php:
|
217 |
msgid "Author of the post"
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: subscribe2.php:
|
221 |
msgid "Blog Admin"
|
222 |
msgstr ""
|
223 |
|
224 |
-
#: subscribe2.php:
|
225 |
-
msgid "Send Email as Digest"
|
226 |
-
msgstr ""
|
227 |
-
|
228 |
-
#: subscribe2.php:1386
|
229 |
msgid "Email Templates"
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: subscribe2.php:
|
233 |
msgid "New Post email (must not be empty)"
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: subscribe2.php:
|
237 |
msgid "Message substitions"
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: subscribe2.php:
|
241 |
msgid "the post's title"
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: subscribe2.php:
|
245 |
msgid ""
|
246 |
"the excerpt or the entire post<br />(<i>based on the subscriber's "
|
247 |
"preferences</i>)"
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: subscribe2.php:
|
251 |
msgid "the post's permalink"
|
252 |
msgstr ""
|
253 |
|
254 |
-
#: subscribe2.php:
|
255 |
msgid "the admin or post author's name"
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: subscribe2.php:
|
259 |
msgid "the admin or post author's email"
|
260 |
msgstr ""
|
261 |
|
262 |
-
#: subscribe2.php:
|
263 |
msgid "the post author's name"
|
264 |
msgstr ""
|
265 |
|
266 |
-
#: subscribe2.php:
|
267 |
msgid ""
|
268 |
"the generated link to confirm a request<br />(<i>only used in the "
|
269 |
"confirmation email template</i>)"
|
270 |
msgstr ""
|
271 |
|
272 |
-
#: subscribe2.php:
|
273 |
msgid ""
|
274 |
"Action performed by LINK in confirmation email<br />(<i>only used in the "
|
275 |
"confirmation email template</i>)"
|
276 |
msgstr ""
|
277 |
|
278 |
-
#: subscribe2.php:
|
279 |
msgid "Subscribe / Unsubscribe confirmation email"
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: subscribe2.php:
|
283 |
msgid "Reminder email to Unconfirmed Subscribers"
|
284 |
msgstr ""
|
285 |
|
286 |
-
#: subscribe2.php:
|
287 |
msgid "Excluded Categories"
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: subscribe2.php:
|
291 |
msgid "Allow registered users to subscribe to excluded categories?"
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: subscribe2.php:
|
295 |
msgid "Writing Options"
|
296 |
msgstr ""
|
297 |
|
298 |
-
#: subscribe2.php:
|
299 |
msgid "Show the Subscribe2 button on the Write toolbar?"
|
300 |
msgstr ""
|
301 |
|
302 |
-
#: subscribe2.php:
|
303 |
msgid "Auto Subscribe"
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: subscribe2.php:
|
307 |
msgid "Automatically subscribe new users registering with your blog."
|
308 |
msgstr ""
|
309 |
|
310 |
-
#: subscribe2.php:
|
311 |
msgid "Yes"
|
312 |
msgstr ""
|
313 |
|
314 |
-
#: subscribe2.php:
|
315 |
msgid "No"
|
316 |
msgstr ""
|
317 |
|
318 |
-
#: subscribe2.php:
|
319 |
msgid "Auto-subscribe users to receive email as"
|
320 |
msgstr ""
|
321 |
|
322 |
-
#: subscribe2.php:
|
323 |
msgid "HTML"
|
324 |
msgstr ""
|
325 |
|
326 |
-
#: subscribe2.php:
|
327 |
msgid "Plain Text - Full"
|
328 |
msgstr ""
|
329 |
|
330 |
-
#: subscribe2.php:
|
331 |
msgid "Plain Text - Excerpt"
|
332 |
msgstr ""
|
333 |
|
334 |
-
#: subscribe2.php:
|
335 |
msgid "Barred Domains"
|
336 |
msgstr ""
|
337 |
|
338 |
-
#: subscribe2.php:
|
339 |
msgid ""
|
340 |
"Enter domains to bar from public subscriptions: <br /> (Use a new line for "
|
341 |
"each entry and omit the \"@\" symbol, for example email.com)"
|
342 |
msgstr ""
|
343 |
|
344 |
-
#: subscribe2.php:
|
345 |
msgid "Submit"
|
346 |
msgstr ""
|
347 |
|
348 |
-
#: subscribe2.php:
|
349 |
msgid "Reset Default"
|
350 |
msgstr ""
|
351 |
|
352 |
-
#: subscribe2.php:
|
353 |
msgid ""
|
354 |
"Use this to reset all options to their defaults. This <strong><em>will not</"
|
355 |
"em></strong> modify your list of subscribers."
|
356 |
msgstr ""
|
357 |
|
358 |
-
#: subscribe2.php:
|
359 |
msgid "RESET"
|
360 |
msgstr ""
|
361 |
|
362 |
-
#: subscribe2.php:
|
363 |
msgid "Subscription preferences updated."
|
364 |
msgstr ""
|
365 |
|
366 |
-
#: subscribe2.php:
|
367 |
msgid "Notification Settings"
|
368 |
msgstr ""
|
369 |
|
370 |
-
#: subscribe2.php:
|
371 |
msgid "Receive email as"
|
372 |
msgstr ""
|
373 |
|
374 |
-
#: subscribe2.php:
|
375 |
msgid "Plain Text"
|
376 |
msgstr ""
|
377 |
|
378 |
-
#: subscribe2.php:
|
379 |
msgid "Email contains"
|
380 |
msgstr ""
|
381 |
|
382 |
-
#: subscribe2.php:
|
383 |
msgid "Excerpt Only"
|
384 |
msgstr ""
|
385 |
|
386 |
-
#: subscribe2.php:
|
387 |
msgid "Full Post"
|
388 |
msgstr ""
|
389 |
|
390 |
-
#: subscribe2.php:
|
391 |
msgid "Note: HTML format will always deliver the full post."
|
392 |
msgstr ""
|
393 |
|
394 |
-
#: subscribe2.php:
|
395 |
msgid "Automatically subscribe me to newly created categories"
|
396 |
msgstr ""
|
397 |
|
398 |
-
#: subscribe2.php:
|
399 |
msgid "Subscribed Categories"
|
400 |
msgstr ""
|
401 |
|
402 |
-
#: subscribe2.php:
|
403 |
msgid "Receive daily summary of new posts?"
|
404 |
msgstr ""
|
405 |
|
406 |
-
#: subscribe2.php:
|
407 |
msgid "Update Preferences »"
|
408 |
msgstr ""
|
409 |
|
410 |
-
#: subscribe2.php:
|
411 |
msgid "Send email to all subscribers"
|
412 |
msgstr ""
|
413 |
|
414 |
-
#: subscribe2.php:
|
415 |
msgid "Subject"
|
416 |
msgstr ""
|
417 |
|
418 |
-
#: subscribe2.php:
|
419 |
msgid "A message from "
|
420 |
msgstr ""
|
421 |
|
422 |
-
#: subscribe2.php:
|
423 |
msgid "Recipients: "
|
424 |
msgstr ""
|
425 |
|
426 |
-
#: subscribe2.php:
|
427 |
-
msgid "Select / Unselect All"
|
428 |
-
msgstr ""
|
429 |
-
|
430 |
-
#: subscribe2.php:1729
|
431 |
msgid "All Subscribers"
|
432 |
msgstr ""
|
433 |
|
434 |
-
#: subscribe2.php:
|
435 |
msgid "Public Subscribers"
|
436 |
msgstr ""
|
437 |
|
438 |
-
#: subscribe2.php:
|
439 |
msgid "Confirmed"
|
440 |
msgstr ""
|
441 |
|
442 |
-
#: subscribe2.php:
|
443 |
msgid "Unconfirmed"
|
444 |
msgstr ""
|
445 |
|
446 |
-
#: subscribe2.php:
|
447 |
msgid "Registered Subscribers"
|
448 |
msgstr ""
|
449 |
|
450 |
-
#: subscribe2.php:
|
451 |
-
msgid "Per Post Email"
|
452 |
-
msgstr ""
|
453 |
-
|
454 |
-
#: subscribe2.php:1806
|
455 |
-
msgid "Next email notification will be sent"
|
456 |
-
msgstr ""
|
457 |
-
|
458 |
-
#: subscribe2.php:1906
|
459 |
msgid "Subscription Confirmation"
|
460 |
msgstr ""
|
461 |
|
462 |
-
#: subscribe2.php:
|
463 |
-
msgid "Digest
|
464 |
msgstr ""
|
8 |
msgstr ""
|
9 |
"Project-Id-Version: PACKAGE VERSION\n"
|
10 |
"Report-Msgid-Bugs-To: \n"
|
11 |
+
"POT-Creation-Date: 2007-01-20 20:54+0000\n"
|
12 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
13 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
14 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
16 |
"Content-Type: text/plain; charset=CHARSET\n"
|
17 |
"Content-Transfer-Encoding: 8bit\n"
|
18 |
|
19 |
+
#: subscribe2.php:107
|
20 |
msgid "To manage your subscription options please "
|
21 |
msgstr ""
|
22 |
|
23 |
+
#: subscribe2.php:109
|
24 |
msgid "You may manage your subscription options from your "
|
25 |
msgstr ""
|
26 |
|
27 |
+
#: subscribe2.php:111
|
28 |
msgid "A confirmation message is on its way!"
|
29 |
msgstr ""
|
30 |
|
31 |
+
#: subscribe2.php:113
|
32 |
msgid "That email address is already subscribed."
|
33 |
msgstr ""
|
34 |
|
35 |
+
#: subscribe2.php:115
|
36 |
msgid "That email address is not subscribed."
|
37 |
msgstr ""
|
38 |
|
39 |
+
#: subscribe2.php:117
|
40 |
msgid "Sorry, but that does not look like an email address to me."
|
41 |
msgstr ""
|
42 |
|
43 |
+
#: subscribe2.php:119
|
44 |
msgid ""
|
45 |
"Sorry, email addresses at that domain are currently barred due to spam, "
|
46 |
"please use an alternative email address."
|
47 |
msgstr ""
|
48 |
|
49 |
+
#: subscribe2.php:121
|
50 |
msgid "Message sent!"
|
51 |
msgstr ""
|
52 |
|
53 |
+
#: subscribe2.php:123
|
54 |
msgid "Your email:"
|
55 |
msgstr ""
|
56 |
|
57 |
+
#: subscribe2.php:123 subscribe2.php:1184 subscribe2.php:1238
|
58 |
msgid "Subscribe"
|
59 |
msgstr ""
|
60 |
|
61 |
+
#: subscribe2.php:123 subscribe2.php:1239
|
62 |
msgid "Unsubscribe"
|
63 |
msgstr ""
|
64 |
|
65 |
+
#: subscribe2.php:123 subscribe2.php:1578
|
66 |
msgid "Send"
|
67 |
msgstr ""
|
68 |
|
69 |
+
#: subscribe2.php:126
|
70 |
msgid "No such email address is registered."
|
71 |
msgstr ""
|
72 |
|
73 |
+
#: subscribe2.php:128
|
74 |
msgid "You have successfully subscribed!"
|
75 |
msgstr ""
|
76 |
|
77 |
+
#: subscribe2.php:130
|
78 |
msgid "You have successfully unsubscribed."
|
79 |
msgstr ""
|
80 |
|
81 |
+
#: subscribe2.php:132
|
82 |
msgid "Please confirm your request"
|
83 |
msgstr ""
|
84 |
|
85 |
+
#: subscribe2.php:134
|
86 |
msgid "Subscription Reminder"
|
87 |
msgstr ""
|
88 |
|
89 |
+
#: subscribe2.php:136
|
90 |
msgid "subscribe"
|
91 |
msgstr ""
|
92 |
|
93 |
+
#: subscribe2.php:138
|
94 |
msgid "unsubscribe"
|
95 |
msgstr ""
|
96 |
|
97 |
+
#: subscribe2.php:141
|
98 |
msgid "Options saved!"
|
99 |
msgstr ""
|
100 |
|
101 |
+
#: subscribe2.php:142
|
102 |
msgid "Options reset!"
|
103 |
msgstr ""
|
104 |
|
105 |
+
#: subscribe2.php:150 subscribe2.php:1189
|
106 |
msgid "Subscribers"
|
107 |
msgstr ""
|
108 |
|
109 |
+
#: subscribe2.php:151
|
110 |
msgid "Subscribe2 Options"
|
111 |
msgstr ""
|
112 |
|
113 |
+
#: subscribe2.php:151
|
114 |
msgid "Subscribe2"
|
115 |
msgstr ""
|
116 |
|
117 |
+
#: subscribe2.php:152
|
118 |
msgid "Subscriptions"
|
119 |
msgstr ""
|
120 |
|
121 |
+
#: subscribe2.php:153
|
122 |
msgid "Mail Subscribers"
|
123 |
msgstr ""
|
124 |
|
125 |
+
#: subscribe2.php:787
|
|
|
|
|
|
|
|
|
126 |
msgid "New subscriber"
|
127 |
msgstr ""
|
128 |
|
129 |
+
#: subscribe2.php:788
|
130 |
msgid "subscribed to email notifications!"
|
131 |
msgstr ""
|
132 |
|
133 |
+
#: subscribe2.php:1100
|
134 |
msgid "Address(es) subscribed!"
|
135 |
msgstr ""
|
136 |
|
137 |
+
#: subscribe2.php:1103
|
138 |
msgid "deleted!"
|
139 |
msgstr ""
|
140 |
|
141 |
+
#: subscribe2.php:1106
|
142 |
msgid "status changed!"
|
143 |
msgstr ""
|
144 |
|
145 |
+
#: subscribe2.php:1109
|
146 |
msgid "Reminder Email(s) Sent!"
|
147 |
msgstr ""
|
148 |
|
149 |
+
#: subscribe2.php:1112
|
150 |
msgid "CSV File Created in wp-content"
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: subscribe2.php:1115
|
154 |
msgid "Registered Users Subscribed!"
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: subscribe2.php:1118
|
158 |
msgid "Registered Users Unsubscribed!"
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: subscribe2.php:1143
|
162 |
+
msgid "Send Reminder Email"
|
163 |
+
msgstr ""
|
164 |
+
|
165 |
+
#: subscribe2.php:1180
|
166 |
msgid "Subscribe Addresses"
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: subscribe2.php:1182
|
170 |
msgid "Enter addresses, one per line or comma-seperated"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: subscribe2.php:1191
|
174 |
msgid "Filter"
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: subscribe2.php:1195
|
178 |
msgid ""
|
179 |
"Registered on the left, confirmed in the middle, unconfirmed on the right"
|
180 |
msgstr ""
|
181 |
|
182 |
+
#: subscribe2.php:1198
|
183 |
msgid "Save Emails to CSV File"
|
184 |
msgstr ""
|
185 |
|
186 |
+
#: subscribe2.php:1225
|
187 |
msgid "NONE"
|
188 |
msgstr ""
|
189 |
|
190 |
+
#: subscribe2.php:1233
|
|
|
|
|
|
|
|
|
191 |
msgid "Categories"
|
192 |
msgstr ""
|
193 |
|
194 |
+
#: subscribe2.php:1234
|
195 |
msgid ""
|
196 |
"Existing Registered Users can be automatically (un)subscribed to categories "
|
197 |
"using this section."
|
198 |
msgstr ""
|
199 |
|
200 |
+
#: subscribe2.php:1235
|
201 |
msgid "Consider User Privacy as changes cannot be undone"
|
202 |
msgstr ""
|
203 |
|
204 |
+
#: subscribe2.php:1306
|
205 |
msgid "Delivery Options"
|
206 |
msgstr ""
|
207 |
|
208 |
+
#: subscribe2.php:1307
|
209 |
msgid "Send Email From"
|
210 |
msgstr ""
|
211 |
|
212 |
+
#: subscribe2.php:1312
|
213 |
msgid "Author of the post"
|
214 |
msgstr ""
|
215 |
|
216 |
+
#: subscribe2.php:1317
|
217 |
msgid "Blog Admin"
|
218 |
msgstr ""
|
219 |
|
220 |
+
#: subscribe2.php:1318
|
|
|
|
|
|
|
|
|
221 |
msgid "Email Templates"
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: subscribe2.php:1321
|
225 |
msgid "New Post email (must not be empty)"
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: subscribe2.php:1325
|
229 |
msgid "Message substitions"
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: subscribe2.php:1329
|
233 |
msgid "the post's title"
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: subscribe2.php:1330
|
237 |
msgid ""
|
238 |
"the excerpt or the entire post<br />(<i>based on the subscriber's "
|
239 |
"preferences</i>)"
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: subscribe2.php:1331
|
243 |
msgid "the post's permalink"
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: subscribe2.php:1332
|
247 |
msgid "the admin or post author's name"
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: subscribe2.php:1333
|
251 |
msgid "the admin or post author's email"
|
252 |
msgstr ""
|
253 |
|
254 |
+
#: subscribe2.php:1334
|
255 |
msgid "the post author's name"
|
256 |
msgstr ""
|
257 |
|
258 |
+
#: subscribe2.php:1335
|
259 |
msgid ""
|
260 |
"the generated link to confirm a request<br />(<i>only used in the "
|
261 |
"confirmation email template</i>)"
|
262 |
msgstr ""
|
263 |
|
264 |
+
#: subscribe2.php:1336
|
265 |
msgid ""
|
266 |
"Action performed by LINK in confirmation email<br />(<i>only used in the "
|
267 |
"confirmation email template</i>)"
|
268 |
msgstr ""
|
269 |
|
270 |
+
#: subscribe2.php:1338
|
271 |
msgid "Subscribe / Unsubscribe confirmation email"
|
272 |
msgstr ""
|
273 |
|
274 |
+
#: subscribe2.php:1341
|
275 |
msgid "Reminder email to Unconfirmed Subscribers"
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: subscribe2.php:1346
|
279 |
msgid "Excluded Categories"
|
280 |
msgstr ""
|
281 |
|
282 |
+
#: subscribe2.php:1352
|
283 |
msgid "Allow registered users to subscribe to excluded categories?"
|
284 |
msgstr ""
|
285 |
|
286 |
+
#: subscribe2.php:1353
|
287 |
msgid "Writing Options"
|
288 |
msgstr ""
|
289 |
|
290 |
+
#: subscribe2.php:1358
|
291 |
msgid "Show the Subscribe2 button on the Write toolbar?"
|
292 |
msgstr ""
|
293 |
|
294 |
+
#: subscribe2.php:1361
|
295 |
msgid "Auto Subscribe"
|
296 |
msgstr ""
|
297 |
|
298 |
+
#: subscribe2.php:1362
|
299 |
msgid "Automatically subscribe new users registering with your blog."
|
300 |
msgstr ""
|
301 |
|
302 |
+
#: subscribe2.php:1367
|
303 |
msgid "Yes"
|
304 |
msgstr ""
|
305 |
|
306 |
+
#: subscribe2.php:1372
|
307 |
msgid "No"
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: subscribe2.php:1373
|
311 |
msgid "Auto-subscribe users to receive email as"
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: subscribe2.php:1378 subscribe2.php:1481
|
315 |
msgid "HTML"
|
316 |
msgstr ""
|
317 |
|
318 |
+
#: subscribe2.php:1383
|
319 |
msgid "Plain Text - Full"
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: subscribe2.php:1388
|
323 |
msgid "Plain Text - Excerpt"
|
324 |
msgstr ""
|
325 |
|
326 |
+
#: subscribe2.php:1391
|
327 |
msgid "Barred Domains"
|
328 |
msgstr ""
|
329 |
|
330 |
+
#: subscribe2.php:1392
|
331 |
msgid ""
|
332 |
"Enter domains to bar from public subscriptions: <br /> (Use a new line for "
|
333 |
"each entry and omit the \"@\" symbol, for example email.com)"
|
334 |
msgstr ""
|
335 |
|
336 |
+
#: subscribe2.php:1396
|
337 |
msgid "Submit"
|
338 |
msgstr ""
|
339 |
|
340 |
+
#: subscribe2.php:1401
|
341 |
msgid "Reset Default"
|
342 |
msgstr ""
|
343 |
|
344 |
+
#: subscribe2.php:1402
|
345 |
msgid ""
|
346 |
"Use this to reset all options to their defaults. This <strong><em>will not</"
|
347 |
"em></strong> modify your list of subscribers."
|
348 |
msgstr ""
|
349 |
|
350 |
+
#: subscribe2.php:1406
|
351 |
msgid "RESET"
|
352 |
msgstr ""
|
353 |
|
354 |
+
#: subscribe2.php:1425
|
355 |
msgid "Subscription preferences updated."
|
356 |
msgstr ""
|
357 |
|
358 |
+
#: subscribe2.php:1472
|
359 |
msgid "Notification Settings"
|
360 |
msgstr ""
|
361 |
|
362 |
+
#: subscribe2.php:1476
|
363 |
msgid "Receive email as"
|
364 |
msgstr ""
|
365 |
|
366 |
+
#: subscribe2.php:1486
|
367 |
msgid "Plain Text"
|
368 |
msgstr ""
|
369 |
|
370 |
+
#: subscribe2.php:1488
|
371 |
msgid "Email contains"
|
372 |
msgstr ""
|
373 |
|
374 |
+
#: subscribe2.php:1489
|
375 |
msgid "Excerpt Only"
|
376 |
msgstr ""
|
377 |
|
378 |
+
#: subscribe2.php:1489
|
379 |
msgid "Full Post"
|
380 |
msgstr ""
|
381 |
|
382 |
+
#: subscribe2.php:1497
|
383 |
msgid "Note: HTML format will always deliver the full post."
|
384 |
msgstr ""
|
385 |
|
386 |
+
#: subscribe2.php:1498
|
387 |
msgid "Automatically subscribe me to newly created categories"
|
388 |
msgstr ""
|
389 |
|
390 |
+
#: subscribe2.php:1510
|
391 |
msgid "Subscribed Categories"
|
392 |
msgstr ""
|
393 |
|
394 |
+
#: subscribe2.php:1515
|
395 |
msgid "Receive daily summary of new posts?"
|
396 |
msgstr ""
|
397 |
|
398 |
+
#: subscribe2.php:1528
|
399 |
msgid "Update Preferences »"
|
400 |
msgstr ""
|
401 |
|
402 |
+
#: subscribe2.php:1570
|
403 |
msgid "Send email to all subscribers"
|
404 |
msgstr ""
|
405 |
|
406 |
+
#: subscribe2.php:1572
|
407 |
msgid "Subject"
|
408 |
msgstr ""
|
409 |
|
410 |
+
#: subscribe2.php:1572
|
411 |
msgid "A message from "
|
412 |
msgstr ""
|
413 |
|
414 |
+
#: subscribe2.php:1575
|
415 |
msgid "Recipients: "
|
416 |
msgstr ""
|
417 |
|
418 |
+
#: subscribe2.php:1647
|
|
|
|
|
|
|
|
|
419 |
msgid "All Subscribers"
|
420 |
msgstr ""
|
421 |
|
422 |
+
#: subscribe2.php:1648
|
423 |
msgid "Public Subscribers"
|
424 |
msgstr ""
|
425 |
|
426 |
+
#: subscribe2.php:1649
|
427 |
msgid "Confirmed"
|
428 |
msgstr ""
|
429 |
|
430 |
+
#: subscribe2.php:1650
|
431 |
msgid "Unconfirmed"
|
432 |
msgstr ""
|
433 |
|
434 |
+
#: subscribe2.php:1651
|
435 |
msgid "Registered Subscribers"
|
436 |
msgstr ""
|
437 |
|
438 |
+
#: subscribe2.php:1794
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
439 |
msgid "Subscription Confirmation"
|
440 |
msgstr ""
|
441 |
|
442 |
+
#: subscribe2.php:1904
|
443 |
+
msgid "Daily Digest"
|
444 |
msgstr ""
|