PluginProbe
FeedWordPress / 2016.1211
FeedWordPress v2016.1211
trunk 0.8 0.9 0.91 0.95 0.96 0.97 0.98 0.981 0.99 0.991 0.992 0.993 2008.1030 2008.1101 2008.1105 2008.1214 2009.0612 2009.0613 2009.0618 2009.0707 2009.1111 2009.1112 2010.0127 2010.0528 All 65 releases
← All changes | admin-ui.php +954 -456 2009.11112016.1211 View file →
@@ -1,11 +1,14 @@
1 1 <?php
2 2 class FeedWordPressAdminPage {
3 3 var $context;
4 4 var $updated = false;
5 + var $mesg = NULL;
6 +
5 7 var $link = NULL;
6 8 var $dispatch = NULL;
7 9 var $filename = NULL;
10 + var $pagenames = array();
8 11
9 12 /**
10 13 * Construct the admin page object.
11 14 *
@@ -10,9 +13,9 @@
10 13 * Construct the admin page object.
11 14 *
12 15 * @param mixed $link An object of class {@link SyndicatedLink} if created for one feed's settings, NULL if created for global default settings
13 16 */
14 - function FeedWordPressAdminPage ($page = 'feedwordpressadmin', $link = NULL) {
17 + public function __construct( $page = 'feedwordpressadmin', $link = NULL ) {
15 18 $this->link = $link;
16 19
17 20 // Set meta-box context name
18 21 $this->context = $page;
@@ -20,11 +23,138 @@
20 23 $this->context .= 'forfeed';
21 24 endif;
22 25 } /* FeedWordPressAdminPage constructor */
23 26
27 + function pageslug () {
28 + $slug = preg_replace('/FeedWordPress(.*)Page/', '$1', get_class($this));
29 + return strtolower($slug);
30 + }
31 +
32 + function pagename ($context = NULL) {
33 + if (is_null($context)) :
34 + $context = 'default';
35 + endif;
36 +
37 + if (isset($this->pagenames[$context])) :
38 + $name = $this->pagenames[$context];
39 + elseif (isset($tis->pagenames['default'])) :
40 + $name = $this->pagenames['default'];
41 + else :
42 + $name = $this->pageslug();
43 + endif;
44 + return __($name);
45 + } /* FeedWordPressAdminPage::pagename () */
46 +
47 + function accept_POST ($post) {
48 + if ($this->for_feed_settings() and $this->update_requested_in($post)) :
49 + $this->update_feed();
50 + elseif ($this->save_requested_in($post)) : // User mashed Save Changes
51 + $this->save_settings($post);
52 + endif;
53 + do_action($this->dispatch.'_post', $post, $this);
54 + }
55 +
56 + function update_feed () {
57 + global $feedwordpress;
58 +
59 + add_action('feedwordpress_check_feed', 'update_feeds_mention');
60 + add_action('feedwordpress_check_feed_complete', 'update_feeds_finish', 10, 3);
61 +
62 + $link = $this->link;
63 +
64 + print '<div class="updated">';
65 + print "<ul>";
66 + $uri = $this->link->uri();
67 + $displayUrl = $uri;
68 +
69 + // check for effects of an effective-url filter
70 + $effectiveUrl = $link->uri(array('fetch' => true));
71 + if ($uri != $effectiveUrl) : $displayUrl .= ' | ' . $effectiveUrl; endif;
72 +
73 + $delta = $feedwordpress->update($uri);
74 + print "</ul>";
75 +
76 + if (!is_null($delta)) :
77 + echo "<p><strong>Update complete.</strong>".fwp_update_set_results_message($delta)."</p>";
78 + echo "\n"; flush();
79 + else :
80 + $effectiveUrl = esc_html($effectiveUrl);
81 + echo "<p><strong>Error:</strong> There was a problem updating <a href=\"$effectiveUrl\">$displayUrl</a></p>\n";
82 + endif;
83 + print "</div>\n";
84 + remove_action('feedwordpress_check_feed', 'update_feeds_mention');
85 + remove_action('feedwordpress_check_feed_complete', 'update_feeds_finish', 10, 3);
86 + }
87 +
88 + function save_settings ($post) {
89 + do_action($this->dispatch.'_save', $post, $this);
90 +
91 + if ($this->for_feed_settings()) :
92 + // Save settings
93 + $this->link->save_settings(/*reload=*/ true);
94 + $this->updated = true;
95 +
96 + // Reset, reload
97 + $link_id = $this->link->id;
98 + unset($this->link);
99 + $this->link = new SyndicatedLink($link_id);
100 + else :
101 + $this->updated = true;
102 + endif;
103 + } /* FeedWordPressAdminPage::save_settings () */
104 +
24 105 function for_feed_settings () { return (is_object($this->link) and method_exists($this->link, 'found') and $this->link->found()); }
25 106 function for_default_settings () { return !$this->for_feed_settings(); }
26 107
108 + function setting ($names, $fallback_value = NULL, $params = array()) {
109 + if (!is_array($params)) :
110 + $params = array('default' => $params);
111 + endif;
112 + $params = shortcode_atts(array(
113 + 'default' => 'default',
114 + 'fallback' => true,
115 + ), $params);
116 +
117 + if (is_string($names)) :
118 + $feed_name = $names;
119 + $global_name = 'feedwordpress_'.preg_replace('![\s/]+!', '_', $names);
120 + else :
121 + $feed_name = $names['feed'];
122 + $global_name = 'feedwordpress_'.$names['global'];
123 + endif;
124 +
125 + if ($this->for_feed_settings()) : // Check feed-specific setting first; fall back to global
126 + if (!$params['fallback']) : $global_name = NULL; endif;
127 + $ret = $this->link->setting($feed_name, $global_name, $fallback_value, $params['default']);
128 + else : // Check global setting
129 + $ret = get_option($global_name, $fallback_value);
130 + endif;
131 + return $ret;
132 + }
133 +
134 + function update_setting ($names, $value, $default = 'default') {
135 + if (is_string($names)) :
136 + $feed_name = $names;
137 + $global_name = 'feedwordpress_'.preg_replace('![\s/]+!', '_', $names);
138 + else :
139 + $feed_name = $names['feed'];
140 + $global_name = 'feedwordpress_'.$names['global'];
141 + endif;
142 +
143 + if ($this->for_feed_settings()) : // Update feed-specific setting
144 + $this->link->update_setting($feed_name, $value, $default);
145 + else : // Update global setting
146 + update_option($global_name, $value);
147 + endif;
148 + } /* FeedWordPressAdminPage::update_setting () */
149 +
150 + function save_requested_in ($post) {
151 + return (isset($post['save']) or isset($post['submit']));
152 + }
153 + function update_requested_in ($post) {
154 + return (isset($post['update']) and (strlen($post['update']) > 0));
155 + }
156 +
27 157 /*static*/ function submitted_link_id () {
28 158 global $fwp_post;
29 159
30 160 // Presume global unless we get a specific link ID
@@ -37,14 +167,14 @@
37 167 'feedfinder',
38 168 );
39 169 foreach ($submit_buttons as $field) :
40 170 if (isset($fwp_post[$field])) :
41 - $link_id = $_REQUEST['save_link_id'];
171 + $link_id = MyPHP::request('save_link_id');
42 172 endif;
43 173 endforeach;
44 -
174 +
45 175 if (is_null($link_id) and isset($_REQUEST['link_id'])) :
46 - $link_id = $_REQUEST['link_id'];
176 + $link_id = MyPHP::request('link_id');
47 177 endif;
48 178
49 179 return $link_id;
50 180 } /* FeedWordPressAdminPage::submitted_link_id() */
@@ -51,9 +181,9 @@
51 181
52 182 /*static*/ function submitted_link () {
53 183 $link_id = FeedWordPressAdminPage::submitted_link_id();
54 184 if (is_numeric($link_id) and $link_id) :
55 - $link =& new SyndicatedLink($link_id);
185 + $link = new SyndicatedLink($link_id);
56 186 else :
57 187 $link = NULL;
58 188 endif;
59 189 return $link;
@@ -61,9 +191,9 @@
61 191
62 192 function stamp_link_id ($field = null) {
63 193 if (is_null($field)) : $field = 'save_link_id'; endif;
64 194 ?>
65 - <input type="hidden" name="<?php print wp_specialchars($field, 'both'); ?>" value="<?php print ($this->for_feed_settings() ? $this->link->id : '*'); ?>" />
195 + <input type="hidden" name="<?php print esc_attr($field); ?>" value="<?php print ($this->for_feed_settings() ? $this->link->id : '*'); ?>" />
66 196 <?php
67 197 } /* FeedWordPressAdminPage::stamp_link_id () */
68 198
69 199 function these_posts_phrase () {
@@ -86,9 +216,9 @@
86 216 */
87 217 function meta_box_context () {
88 218 return $this->context;
89 219 } /* FeedWordPressAdminPage::meta_box_context () */
90 -
220 +
91 221 /**
92 222 * Outputs JavaScript to fix AJAX toggles settings.
93 223 *
94 224 * @uses FeedWordPressAdminPage::meta_box_context()
@@ -98,121 +228,174 @@
98 228 } /* FeedWordPressAdminPage::fix_toggles() */
99 229
100 230 function ajax_interface_js () {
101 231 ?>
102 -<script type="text/javascript">
103 232 function contextual_appearance (item, appear, disappear, value, visibleStyle, checkbox) {
104 233 if (typeof(visibleStyle)=='undefined') visibleStyle = 'block';
105 234
106 235 var rollup=document.getElementById(item);
107 - var newuser=document.getElementById(appear);
108 - var sitewide=document.getElementById(disappear);
109 236 if (rollup) {
110 237 if ((checkbox && rollup.checked) || (!checkbox && value==rollup.value)) {
111 - if (newuser) newuser.style.display=visibleStyle;
112 - if (sitewide) sitewide.style.display='none';
238 + jQuery('#'+disappear).hide();
239 + jQuery('#'+appear).show(600);
113 240 } else {
114 - if (newuser) newuser.style.display='none';
115 - if (sitewide) sitewide.style.display=visibleStyle;
241 + jQuery('#'+appear).hide();
242 + jQuery('#'+disappear).show(600);
116 243 }
117 244 }
118 245 }
119 -</script>
120 -
121 246 <?php
122 247 } /* FeedWordPressAdminPage::ajax_interface_js () */
123 248
249 + function admin_page_href ($page, $params = array(), $link = NULL) {
250 + global $fwp_path;
251 +
252 + // Merge in the page's filename
253 + $params = array_merge($params, array('page' => $fwp_path.'/'.$page));
254 +
255 + // If there is a link ID provided, then merge that in too.
256 + if (!is_null($link)) :
257 + $link_id = NULL;
258 + if (is_object($link)) :
259 + if (method_exists($link, 'found')) :
260 + // Is this a SyndicatedLink object?
261 + if ($link->found()) :
262 + $link_id = $link->link->link_id;
263 + endif;
264 + else :
265 + // Is this a wp_links table record?
266 + $link_id = $link->link_id;
267 + endif;
268 + else :
269 + // Is this just a numeric ID?
270 + $link_id = $link;
271 + endif;
272 +
273 + if (!is_null($link_id)) :
274 + $params = array_merge($params, array('link_id' => $link_id));
275 + endif;
276 + endif;
277 +
278 + return MyPHP::url(admin_url('admin.php'), $params);
279 + } /* FeedWordPressAdminPage::admin_page_href () */
280 +
281 + function display_feed_settings_page_links ($params = array()) {
282 + global $fwp_path;
283 +
284 + $params = wp_parse_args($params, array(
285 + 'before' => '',
286 + 'between' => ' | ',
287 + 'after' => '',
288 + 'long' => false,
289 + 'subscription' => $this->link,
290 + ));
291 + $sub = $params['subscription'];
292 +
293 + $links = array(
294 + "Feed" => array('page' => 'feeds-page.php', 'long' => 'Feeds & Updates'),
295 + "Posts" => array('page' => 'posts-page.php', 'long' => 'Posts & Links'),
296 + "Authors" => array('page' => 'authors-page.php', 'long' => 'Authors'),
297 + 'Categories' => array('page' => 'categories-page.php', 'long' => 'Categories & Tags'),
298 + );
299 +
300 + $link_id = NULL;
301 + if (is_object($sub)) :
302 + if (method_exists($sub, 'found')) :
303 + if ($sub->found()) :
304 + $link_id = $sub->link->link_id;
305 + endif;
306 + else :
307 + $link_id = $sub->link_id;
308 + endif;
309 + endif;
310 +
311 + print $params['before']; $first = true;
312 + foreach ($links as $label => $link) :
313 + if (!$first) : print $params['between']; endif;
314 +
315 + if (isset($link['url'])) : MyPHP::url($link['url'], array("link_id" => $link_id));
316 + else : $url = $this->admin_page_href($link['page'], array(), $sub);
317 + endif;
318 + $url = esc_html($url);
319 +
320 + if ($link['page']==basename($this->filename)) :
321 + print "<strong>";
322 + else :
323 + print "<a href=\"${url}\">";
324 + endif;
325 +
326 + if ($params['long']) : print esc_html(__($link['long']));
327 + else : print esc_html(__($label));
328 + endif;
329 +
330 + if ($link['page']==basename($this->filename)) :
331 + print "</strong>";
332 + else :
333 + print "</a>";
334 + endif;
335 +
336 + $first = false;
337 + endforeach;
338 + print $params['after'];
339 + } /* FeedWordPressAdminPage::display_feed_settings_page_links */
340 +
124 341 function display_feed_select_dropdown() {
125 342 $links = FeedWordPress::syndicated_links();
126 - if (fwp_test_wp_version(FWP_SCHEMA_27)) :
127 - ?>
128 - <style type="text/css">
129 - #post-search {
130 - float: right;
131 - margin:11px 12px 0;
132 - min-width: 130px;
133 - position:relative;
134 - }
135 - .fwpfs {
136 - color: #dddddd;
137 - background:#797979 url(<?php bloginfo('home') ?>/wp-admin/images/fav.png) repeat-x scroll left center;
138 - border-color:#777777 #777777 #666666 !important; -moz-border-radius-bottomleft:12px;
139 - -moz-border-radius-bottomright:12px;
140 - -moz-border-radius-topleft:12px;
141 - -moz-border-radius-topright:12px;
142 - border-style:solid;
143 - border-width:1px;
144 - line-height:15px;
145 - padding:3px 30px 4px 12px;
146 - }
147 - .fwpfs.slide-down {
148 - border-bottom-color: #626262;
149 - -moz-border-radius-bottomleft:0;
150 - -moz-border-radius-bottomright:0;
151 - -moz-border-radius-topleft:12px;
152 - -moz-border-radius-topright:12px;
153 - background-image:url(<?php bloginfo('home') ?>/wp-admin/images/fav-top.png);
154 - background-position:0 top;
155 - background-repeat:repeat-x;
156 - border-bottom-style:solid;
157 - border-bottom-width:1px;
158 - }
159 - </style>
160 -
161 - <script type="text/javascript">
162 - jQuery(document).ready(function($){
163 - $('.fwpfs').toggle(
164 - function(){$('.fwpfs').removeClass('slideUp').addClass('slideDown'); setTimeout(function(){if ( $('.fwpfs').hasClass('slideDown') ) { $('.fwpfs').addClass('slide-down'); }}, 10) },
165 - function(){$('.fwpfs').removeClass('slideDown').addClass('slideUp'); setTimeout(function(){if ( $('.fwpfs').hasClass('slideUp') ) { $('.fwpfs').removeClass('slide-down'); }}, 10) }
166 - );
167 - $('.fwpfs').bind(
168 - 'change',
169 - function () { this.form.submit(); }
170 - );
171 - $('#post-search .button').css( 'display', 'none' );
172 - });
173 - </script>
174 - <?php
175 - endif;
176 -
343 +
177 344 ?>
178 - <p id="post-search">
179 - <select name="link_id" class="fwpfs" style="max-width: 20.0em;">
345 + <div id="fwpfs-container"><ul class="subsubsub">
346 + <li><select name="link_id" class="fwpfs" style="max-width: 20.0em;">
180 347 <option value="*"<?php if ($this->for_default_settings()) : ?> selected="selected"<?php endif; ?>>- defaults for all feeds -</option>
181 348 <?php if ($links) : foreach ($links as $ddlink) : ?>
182 - <option value="<?php print (int) $ddlink->link_id; ?>"<?php if (!is_null($this->link) and ($this->link->id==$ddlink->link_id)) : ?> selected="selected"<?php endif; ?>><?php print wp_specialchars($ddlink->link_name, 1); ?></option>
349 + <option value="<?php print (int) $ddlink->link_id; ?>"<?php if (!is_null($this->link) and ($this->link->id==$ddlink->link_id)) : ?> selected="selected"<?php endif; ?>><?php print esc_html($ddlink->link_name); ?></option>
183 350 <?php endforeach; endif; ?>
184 351 </select>
185 - <input class="button" type="submit" name="go" value="<?php _e('Go') ?> &raquo;" />
186 - </p>
352 + <input id="fwpfs-button" class="button" type="submit" name="go" value="<?php _e('Go') ?> &raquo;" /></li>
353 +
187 354 <?php
355 + $this->display_feed_settings_page_links(array(
356 + 'before' => '<li>',
357 + 'between' => "</li>\n<li>",
358 + 'after' => '</li>',
359 + 'subscription' => $this->link,
360 + ));
361 +
362 + if ($this->for_feed_settings()) :
363 + ?>
364 + <li><input class="button" type="submit" name="update" value="Update Now" /></li>
365 + <?php
366 + endif;
367 + ?>
368 + </ul>
369 + </div>
370 + <?php
188 371 } /* FeedWordPressAdminPage::display_feed_select_dropdown() */
189 372
190 373 function display_sheet_header ($pagename = 'Syndication', $all = false) {
191 - if (FeedWordPressCompatibility::test_version(FWP_SCHEMA_27)) :
192 - ?>
193 - <div class="icon32"><img src="<?php print wp_specialchars(WP_PLUGIN_URL.'/'.$GLOBALS['fwp_path'].'/feedwordpress.png', 1); ?>" alt="" /></div>
194 - <?php
195 - endif;
374 + global $fwp_path;
196 375 ?>
197 -
198 - <h2><?php print wp_specialchars(__($pagename.($all ? '' : ' Settings')), 1); ?><?php if ($this->for_feed_settings()) : ?>: <?php echo wp_specialchars($this->link->link->link_name, 1); ?><?php endif; ?></h2>
376 + <div class="icon32"><img src="<?php print esc_html( plugins_url( '/'.$fwp_path.'/feedwordpress.png') ); ?>" alt="" /></div>
377 + <h2><?php print esc_html(__($pagename.($all ? '' : ' Settings'))); ?><?php if ($this->for_feed_settings()) : ?>: <?php echo esc_html($this->link->name(/*from feed=*/ false)); ?><?php endif; ?></h2>
199 378 <?php
200 379 }
201 380
202 381 function display_update_notice_if_updated ($pagename = 'Syndication', $mesg = NULL) {
382 + if (!is_null($mesg)) :
383 + $this->mesg = $mesg;
384 + endif;
385 +
203 386 if ($this->updated) :
204 387 if ($this->updated === true) :
205 - $mesg = $pagename . ' settings updated.';
388 + $this->mesg = $pagename . ' settings updated.';
206 389 else :
207 - $mesg = $this->updated;
390 + $this->mesg = $this->updated;
208 391 endif;
209 392 endif;
210 -
211 - if (!is_null($mesg)) :
393 +
394 + if (!is_null($this->mesg)) :
212 395 ?>
213 396 <div class="updated">
214 - <p><?php print wp_specialchars($mesg, 1); ?></p>
397 + <p><?php print esc_html($this->mesg); ?></p>
215 398 </div>
216 399 <?php
217 400 endif;
218 401 } /* FeedWordPressAdminPage::display_update_notice_if_updated() */
@@ -220,9 +403,9 @@
220 403 function display_settings_scope_message () {
221 404 if ($this->for_feed_settings()) :
222 405 ?>
223 406 <p>These settings only affect posts syndicated from
224 - <strong><?php echo wp_specialchars($this->link->link->link_name, 1); ?></strong>.</p>
407 + <strong><?php echo esc_html($this->link->link->link_name); ?></strong>.</p>
225 408 <?php
226 409 else :
227 410 ?>
228 411 <p>These settings affect posts syndicated from any feed unless they are overridden
@@ -229,25 +412,104 @@
229 412 by settings for that specific feed.</p>
230 413 <?php
231 414 endif;
232 415 } /* FeedWordPressAdminPage::display_settings_scope_message () */
233 -
416 +
234 417 /*static*/ function has_link () { return true; }
235 418
419 + function form_action ($filename = NULL) {
420 + global $fwp_path;
421 +
422 + if (is_null($filename)) :
423 + $filename = basename($this->filename);
424 + endif;
425 + return $this->admin_page_href($filename);
426 + } /* FeedWordPressAdminPage::form_action () */
427 +
428 + function update_message () {
429 + return $this->mesg;
430 + }
431 +
432 + function display () {
433 + global $fwp_post;
434 +
435 + if (FeedWordPress::needs_upgrade()) :
436 + fwp_upgrade_page();
437 + return;
438 + endif;
439 +
440 + FeedWordPressCompatibility::validate_http_request(/*action=*/ $this->dispatch, /*capability=*/ 'manage_links');
441 +
442 + ////////////////////////////////////////////////
443 + // Process POST request, if any ////////////////
444 + ////////////////////////////////////////////////
445 + if (strtoupper($_SERVER['REQUEST_METHOD'])=='POST') :
446 + $this->accept_POST($fwp_post);
447 + else :
448 + $this->updated = false;
449 + endif;
450 +
451 + ////////////////////////////////////////////////
452 + // Prepare settings page ///////////////////////
453 + ////////////////////////////////////////////////
454 +
455 + $this->display_update_notice_if_updated(
456 + $this->pagename('settings-update'),
457 + $this->update_message()
458 + );
459 +
460 + $this->open_sheet($this->pagename('open-sheet'));
461 + ?>
462 + <div id="post-body">
463 + <?php
464 + foreach ($this->boxes_by_methods as $method => $row) :
465 + if (is_array($row)) :
466 + $id = $row['id'];
467 + $title = $row['title'];
468 + else :
469 + $id = 'feedwordpress_'.$method;
470 + $title = $row;
471 + endif;
472 +
473 + add_meta_box(
474 + /*id=*/ $id,
475 + /*title=*/ $title,
476 + /*callback=*/ array($this, $method),
477 + /*page=*/ $this->meta_box_context(),
478 + /*context=*/ $this->meta_box_context()
479 + );
480 + endforeach;
481 + do_action($this->dispatch.'_meta_boxes', $this);
482 + ?>
483 + <div class="metabox-holder">
484 + <?php
485 + fwp_do_meta_boxes($this->meta_box_context(), $this->meta_box_context(), $this);
486 + ?>
487 + </div> <!-- class="metabox-holder" -->
488 + </div> <!-- id="post-body" -->
489 + <?php $this->close_sheet(); ?>
490 + <?php
491 + }
492 +
236 493 function open_sheet ($header) {
237 494 // Set up prepatory AJAX stuff
495 + ?>
496 + <script type="text/javascript">
497 + <?php
238 498 $this->ajax_interface_js();
239 - if (function_exists('add_meta_box')) :
240 - add_action(
241 - FeedWordPressCompatibility::bottom_script_hook($this->filename),
242 - /*callback=*/ array($this, 'fix_toggles'),
243 - /*priority=*/ 10000
244 - );
245 - FeedWordPressSettingsUI::ajax_nonce_fields();
246 - endif;
499 + ?>
500 + </script>
247 501
502 + <?php
503 + add_action(
504 + FeedWordPressCompatibility::bottom_script_hook($this->filename),
505 + /*callback=*/ array($this, 'fix_toggles'),
506 + /*priority=*/ 10000
507 + );
508 + FeedWordPressSettingsUI::ajax_nonce_fields();
509 +
248 510 ?>
249 - <div class="wrap" style="position:relative">
511 + <div class="wrap feedwordpress-admin" id="feedwordpress-admin-<?php print $this->pageslug(); ?>">
250 512 <?php
251 513 if (!is_null($header)) :
252 514 $this->display_sheet_header($header);
253 515 endif;
@@ -253,9 +515,9 @@
253 515 endif;
254 516
255 517 if (!is_null($this->dispatch)) :
256 518 ?>
257 - <form action="admin.php?page=<?php print $GLOBALS['fwp_path']; ?>/<?php echo basename($this->filename); ?>" method="post">
519 + <form action="<?php print $this->form_action(); ?>" method="post">
258 520 <div><?php
259 521 FeedWordPressCompatibility::stamp_nonce($this->dispatch);
260 522 $this->stamp_link_id();
261 523 ?></div>
@@ -262,84 +524,233 @@
262 524 <?php
263 525 endif;
264 526
265 527 if ($this->has_link()) :
266 - $this->display_feed_select_dropdown();
267 528 $this->display_settings_scope_message();
268 529 endif;
269 530
270 - if (function_exists('do_meta_boxes')) :
271 - ?>
272 - <div id="poststuff">
273 - <?php
274 - else :
275 - ?>
276 - </div> <!-- class="wrap" -->
277 - <?php
531 + ?><div class="tablenav"><?php
532 + if (!is_null($this->dispatch)) :
533 + ?><div class="alignright"><?php
534 + $this->save_button();
535 + ?></div><?php
278 536 endif;
279 537
280 - if (!is_null($this->dispatch)) :
281 - fwp_settings_form_single_submit();
538 + if ($this->has_link()) :
539 + $this->display_feed_select_dropdown();
282 540 endif;
541 + ?>
542 + </div>
543 +
544 + <div id="poststuff">
545 + <?php
283 546 } /* FeedWordPressAdminPage::open_sheet () */
284 -
547 +
285 548 function close_sheet () {
286 - // WordPress 2.5+
287 - if (function_exists('do_meta_boxes')) :
549 + ?>
550 +
551 + </div> <!-- id="poststuff" -->
552 + <?php
553 + if (!is_null($this->dispatch)) :
554 + $this->save_button();
555 + print "</form>\n";
556 + endif;
557 + ?>
558 + </div> <!-- class="wrap" -->
559 +
560 + <?php
561 + } /* FeedWordPressAdminPage::close_sheet () */
562 +
563 + function setting_radio_control ($localName, $globalName, $options, $params = array()) {
564 + global $fwp_path;
565 +
566 + if (isset($params['filename'])) : $filename = $params['filename'];
567 + else : $filename = basename($this->filename);
568 + endif;
569 +
570 + if (isset($params['site-wide-url'])) : $href = $params['site-wide-url'];
571 + else : $href = $this->admin_page_href($filename);
572 + endif;
573 +
574 + if (isset($params['setting-default'])) : $settingDefault = $params['setting-default'];
575 + else : $settingDefault = NULL;
576 + endif;
577 +
578 + if (isset($params['global-setting-default'])) : $globalSettingDefault = $params['global-setting-default'];
579 + else : $globalSettingDefault = $settingDefault;
580 + endif;
581 +
582 + $globalSetting = get_option('feedwordpress_'.$globalName, $globalSettingDefault);
583 + if ($this->for_feed_settings()) :
584 + $setting = $this->link->setting($localName, NULL, $settingDefault);
585 + else :
586 + $setting = $globalSetting;
587 + endif;
588 +
589 + if (isset($params['offer-site-wide'])) : $offerSiteWide = $params['offer-site-wide'];
590 + else : $offerSiteWide = $this->for_feed_settings();
591 + endif;
592 +
593 + // This allows us to provide an alternative set of human-readable
594 + // labels for each potential value. For use in Currently: line.
595 + if (isset($params['labels'])) : $labels = $params['labels'];
596 + elseif (is_callable($options)) : $labels = NULL;
597 + else : $labels = $options;
598 + endif;
599 +
600 + if (isset($params['input-name'])) : $inputName = $params['input-name'];
601 + else : $inputName = $globalName;
602 + endif;
603 +
604 + if (isset($params['default-input-id'])) : $defaultInputId = $params['default-input-id'];
605 + else : $defaultInputId = NULL;
606 + endif;
607 +
608 + if (isset($params['default-input-id-no'])) : $defaultInputIdNo = $params['default-input-id-no'];
609 + elseif (!is_null($defaultInputId)) : $defaultInputIdNo = $defaultInputId.'-no';
610 + else : $defaultInputIdNo = NULL;
611 + endif;
612 +
613 + // This allows us to either include the site-default setting as
614 + // one of the options within the radio box, or else as a simple
615 + // yes/no toggle that controls whether or not to check another
616 + // set of inputs.
617 + if (isset($params['default-input-name'])) : $defaultInputName = $params['default-input-name'];
618 + else : $defaultInputName = $inputName;
619 + endif;
620 +
621 + if ($defaultInputName != $inputName) :
622 + $defaultInputValue = 'yes';
623 + else :
624 + $defaultInputValue = (
625 + isset($params['default-input-value'])
626 + ? $params['default-input-value']
627 + : 'site-default'
628 + );
629 + endif;
630 +
631 + $settingDefaulted = (is_null($setting) or ($settingDefault === $setting));
632 +
633 + if (!is_callable($options)) :
634 + $checked = array();
635 + if ($settingDefaulted) :
636 + $checked[$defaultInputValue] = ' checked="checked"';
637 + endif;
638 +
639 + foreach ($options as $value => $label) :
640 + if ($setting == $value) :
641 + $checked[$value] = ' checked="checked"';
642 + else :
643 + $checked[$value] = '';
644 + endif;
645 + endforeach;
646 + endif;
647 +
648 + $defaulted = array();
649 + if ($defaultInputName != $inputName) :
650 + $defaulted['yes'] = ($settingDefaulted ? ' checked="checked"' : '');
651 + $defaulted['no'] = ($settingDefaulted ? '' : ' checked="checked"');
652 + else :
653 + $defaulted['yes'] = (isset($checked[$defaultInputValue]) ? $checked[$defaultInputValue] : '');
654 + endif;
655 +
656 + if (isset($params['defaulted'])) :
657 + $defaulted['yes'] = ($params['defaulted'] ? ' checked="checked"' : '');
658 + $defaulted['no'] = ($params['defaulted'] ? '' : ' checked="checked"');
659 + endif;
660 +
661 + if ($offerSiteWide) :
288 662 ?>
289 - </div> <!-- id="poststuff" -->
290 - <?php if (!is_null($this->dispatch)) : ?>
291 - <?php fwp_settings_form_single_submit_closer(); ?>
292 - </form>
293 - <?php endif; ?>
294 - </div> <!-- class="wrap" -->
663 + <table class="twofer">
664 + <tbody>
665 + <tr><td class="equals first inactive">
666 + <ul class="options">
667 + <li><label><input type="radio"
668 + name="<?php print $defaultInputName; ?>"
669 + value="<?php print $defaultInputValue; ?>"
670 + <?php if (!is_null($defaultInputId)) : ?>id="<?php print $defaultInputId; ?>" <?php endif; ?>
671 + <?php print $defaulted['yes']; ?> />
672 + Use the site-wide setting</label>
673 + <span class="current-setting">Currently:
674 + <strong><?php if (is_callable($labels)) :
675 + print call_user_func($labels, $globalSetting, $defaulted, $params);
676 + elseif (is_null($labels)) :
677 + print $globalSetting;
678 + else :
679 + print $labels[$globalSetting];
680 + endif; ?></strong> (<a href="<?php print $href; ?>">change</a>)</span></li>
681 + </ul></td>
682 +
683 + <td class="equals second inactive">
684 + <?php if ($defaultInputName != $inputName) : ?>
685 + <ul class="options">
686 + <li><label><input type="radio"
687 + name="<?php print $defaultInputName; ?>"
688 + value="no"
689 + <?php if (!is_null($defaultInputIdNo)) : ?>id="<?php print $defaultInputIdNo; ?>" <?php endif; ?>
690 + <?php print $defaulted['no']; ?> />
691 + <?php _e('Do something different with this feed.'); ?></label>
692 + <?php endif;
693 + endif;
694 +
695 + // Let's spit out the controls here.
696 + if (is_callable($options)) :
697 + // Method call to print out options list
698 + call_user_func($options, $setting, $defaulted, $params);
699 + else :
700 + ?>
701 + <ul class="options">
702 + <?php foreach ($options as $value => $label) : ?>
703 + <li><label><input type="radio" name="<?php print $inputName; ?>"
704 + value="<?php print $value; ?>"
705 + <?php print $checked[$value]; ?> />
706 + <?php print $label; ?></label></li>
707 + <?php endforeach; ?>
708 + </ul> <!-- class="options" -->
295 709 <?php
296 710 endif;
297 - }
298 -} /* class FeedWordPressAdminPage */
299 711
300 -function fwp_settings_form_single_submit ($caption = NULL) {
301 - if (fwp_test_wp_version(FWP_SCHEMA_25, FWP_SCHEMA_27)) :
302 - if (is_null($caption)) : $caption = __('Save'); endif;
303 -?>
304 -<div class="submitbox" id="submitlink">
305 -<div id="previewview"></div>
306 -<div class="inside"></div>
712 + if ($offerSiteWide) :
713 + if ($defaultInputName != $inputName) :
714 + // Close the <li> and <ul class="options"> we opened above
715 + ?>
716 + </li>
717 + </ul> <!-- class="options" -->
718 + <?php
719 + endif;
307 720
308 -<p class="submit">
309 -<input type="submit" name="save" value="<?php print $caption; ?>" />
310 -</p>
311 -</div>
312 -<?php
313 - endif;
314 -}
721 + // Close off the twofer table that we opened up above.
722 + ?>
723 + </td></tr>
724 + </tbody>
725 + </table>
726 + <?php
727 + endif;
728 + } /* FeedWordPressAdminPage::setting_radio_control () */
315 729
316 -function fwp_settings_form_periodic_submit ($caption = NULL) {
317 - if (!fwp_test_wp_version(FWP_SCHEMA_25)) :
318 - if (is_null($caption)) : $caption = __('Save Changes &raquo;'); endif;
319 -?>
320 -<p class="submit">
321 -<input type="submit" name="save" value="<?php print $caption; ?>" />
322 -</p>
323 -<?php
324 - endif;
325 -}
326 -
327 -function fwp_settings_form_single_submit_closer ($caption = NULL) {
328 - if (fwp_test_wp_version(FWP_SCHEMA_27)) :
730 + function save_button ($caption = NULL) {
329 731 if (is_null($caption)) : $caption = __('Save Changes'); endif;
330 -?>
732 + ?>
331 733 <p class="submit">
332 734 <input class="button-primary" type="submit" name="save" value="<?php print $caption; ?>" />
333 735 </p>
334 -<?php
736 + <?php
737 + }
738 +} /* class FeedWordPressAdminPage */
739 +
740 +function fwp_update_set_results_message ($delta, $joiner = ';') {
741 + $mesg = array();
742 + if (isset($delta['new'])) : $mesg[] = ' '.$delta['new'].' new posts were syndicated'; endif;
743 + if (isset($delta['updated']) and ($delta['updated'] != 0)) : $mesg[] = ' '.$delta['updated'].' existing posts were updated'; endif;
744 + if (isset($delta['stored']) and ($delta['stored'] != 0)) : $mesg[] = ' '.$delta['stored'].' alternate versions of existing posts were stored for reference'; endif;
745 +
746 + if (!is_null($joiner)) :
747 + $mesg = implode($joiner, $mesg);
335 748 endif;
336 -}
749 + return $mesg;
750 +} /* function fwp_update_set_results_message () */
337 751
338 752 function fwp_authors_single_submit ($link = NULL) {
339 - global $wp_db_version;
340 -
341 - if (fwp_test_wp_version(FWP_SCHEMA_25)) :
342 753 ?>
343 754 <div class="submitbox" id="submitlink">
344 755 <div id="previewview">
345 756 </div>
@@ -350,134 +761,165 @@
350 761 <input type="submit" name="save" value="<?php _e('Save') ?>" />
351 762 </p>
352 763 </div>
353 764 <?php
354 - endif;
355 765 }
356 766
357 767 function fwp_option_box_opener ($legend, $id, $class = "stuffbox") {
358 - // WordPress 2.5+
359 - if (FeedWordPressCompatibility::test_version(FWP_SCHEMA_25)) :
360 768 ?>
361 769 <div id="<?php print $id; ?>" class="<?php print $class; ?>">
362 770 <h3><?php print htmlspecialchars($legend); ?></h3>
363 771 <div class="inside">
364 772 <?php
365 - else :
366 -?>
367 - <div class="wrap">
368 - <h2><?php print htmlspecialchars($legend); ?></h2>
369 -<?php
370 - endif;
371 773 }
372 774
373 775 function fwp_option_box_closer () {
374 - global $wp_db_version;
375 - if (isset($wp_db_version) and $wp_db_version >= FWP_SCHEMA_25) :
376 776 ?>
377 777 </div> <!-- class="inside" -->
378 778 </div> <!-- class="stuffbox" -->
379 779 <?php
380 - else :
381 -?>
382 - </div> <!-- class="wrap" -->
383 -<?php
384 - endif;
385 780 }
386 781
387 -function fwp_tags_box ($tags, $object) {
782 +function fwp_tags_box ($tags, $object, $params = array()) {
783 + $params = wp_parse_args($params, array( // Default values
784 + 'taxonomy' => 'post_tag',
785 + 'textarea_name' => NULL,
786 + 'textarea_id' => NULL,
787 + 'input_id' => NULL,
788 + 'input_name' => NULL,
789 + 'id' => NULL,
790 + 'box_title' => __('Post Tags'),
791 + ));
792 +
388 793 if (!is_array($tags)) : $tags = array(); endif;
389 -
794 +
795 + $tax_name = $params['taxonomy'];
796 + $taxonomy = get_taxonomy($params['taxonomy']);
797 + $disabled = (!current_user_can($taxonomy->cap->assign_terms) ? 'disabled="disabled"' : '');
798 +
390 799 $desc = "<p style=\"font-size:smaller;font-style:bold;margin:0\">Tag $object as...</p>";
391 800
392 - if (fwp_test_wp_version(FWP_SCHEMA_28)) : // WordPress 2.8+
393 -?>
394 - <?php print $desc; ?>
395 - <div class="tagsdiv" id="post_tag">
396 - <div class="jaxtag">
397 - <div class="nojs-tags hide-if-js">
398 - <p><?php _e('Add or remove tags'); ?></p>
399 - <textarea name="tax_input[post_tag]" class="the-tags" id="tax-input[post_tag]"><?php echo implode(",", $tags); ?></textarea>
400 - </div>
401 -
402 - <span class="ajaxtag hide-if-no-js">
403 - <label class="screen-reader-text" for="new-tag-post_tag"><?php _e('Tags'); ?></label>
404 - <input type="text" id="new-tag-post_tag" name="newtag[post_tag]" class="newtag form-input-tip" size="16" autocomplete="off" value="<?php esc_attr_e('Add new tag'); ?>" />
405 - <input type="button" class="button tagadd" value="<?php esc_attr_e('Add'); ?>" />
406 - </span>
407 - </div>
408 - <p class="howto"><?php echo __('Separate tags with commas.'); ?></p>
409 - <div class="tagchecklist"></div>
410 - </div>
411 - <p class="tagcloud-link hide-if-no-js"><a href="#titlediv" class="tagcloud-link" id="link-post_tag"><?php printf( __('Choose from the most used tags in %s'), 'Post Tags'); ?></a></p>
412 - </div>
413 - </div>
414 -<?php
415 - else :
416 -?>
417 - <?php print $desc; ?>
418 - <p id="jaxtag"><input type="text" name="tags_input" class="tags-input" id="tags-input" size="40" tabindex="3" value="<?php echo implode(",", $tags); ?>" /></p>
419 - <div id="tagchecklist"></div>
420 - </div>
421 - </div>
422 -<?php
801 + if (is_null($params['textarea_name'])) :
802 + $params['textarea_name'] = "tax_input[$tax_name]";
423 803 endif;
804 + if (is_null($params['textarea_id'])) :
805 + $params['textarea_id'] = "tax-input-${tax_name}";
806 + endif;
807 + if (is_null($params['input_id'])) :
808 + $params['input_id'] = "new-tag-${tax_name}";
809 + endif;
810 + if (is_null($params['input_name'])) :
811 + $params['input_name'] = "newtag[$tax_name]";
812 + endif;
813 +
814 + if (is_null($params['id'])) :
815 + $params['id'] = $tax_name;
816 + endif;
817 +
818 + print $desc;
819 + $helps = __('Separate tags with commas.');
820 + $box['title'] = __('Tags');
821 + ?>
822 +<div class="tagsdiv" id="<?php echo $params['id']; ?>">
823 + <div class="jaxtag">
824 + <div class="nojs-tags hide-if-js">
825 + <p><?php echo $taxonomy->labels->add_or_remove_items; ?></p>
826 + <textarea name="<?php echo $params['textarea_name']; ?>" class="the-tags" id="<?php echo $params['textarea_id']; ?>"><?php echo esc_attr(implode(",", $tags)); ?></textarea></div>
827 +
828 + <?php if ( current_user_can($taxonomy->cap->assign_terms) ) :?>
829 + <div class="ajaxtag hide-if-no-js">
830 + <label class="screen-reader-text" for="<?php echo $params['input_id']; ?>"><?php echo $params['box_title']; ?></label>
831 + <div class="taghint"><?php echo $taxonomy->labels->add_new_item; ?></div>
832 + <p><input type="text" id="<?php print $params['input_id']; ?>" name="<?php print $params['input_name']; ?>" class="newtag form-input-tip" size="16" autocomplete="off" value="" />
833 + <input type="button" class="button tagadd" value="<?php esc_attr_e('Add'); ?>" tabindex="3" /></p>
834 + </div>
835 + <p class="howto"><?php echo esc_attr( $taxonomy->labels->separate_items_with_commas ); ?></p>
836 + <?php endif; ?>
837 + </div>
838 +
839 + <div class="tagchecklist"></div>
840 +</div>
841 +<?php if ( current_user_can($taxonomy->cap->assign_terms) ) : ?>
842 +<p class="hide-if-no-js"><a href="#titlediv" class="tagcloud-link" id="link-<?php echo $tax_name; ?>"><?php echo $taxonomy->labels->choose_from_most_used; ?></a></p>
843 +<?php endif;
844 +
424 845 }
425 846
426 -function fwp_category_box ($checked, $object, $tags = array()) {
847 +function fwp_category_box ($checked, $object, $tags = array(), $params = array()) {
427 848 global $wp_db_version;
428 849
429 - if (fwp_test_wp_version(FWP_SCHEMA_25)) : // WordPress 2.5.x
850 + if (is_string($params)) :
851 + $prefix = $params;
852 + $taxonomy = 'category';
853 + elseif (is_array($params)) :
854 + $prefix = (isset($params['prefix']) ? $params['prefix'] : '');
855 + $taxonomy = (isset($params['taxonomy']) ? $params['taxonomy'] : 'category');
856 + endif;
857 + $tax = get_taxonomy($taxonomy);
858 +
859 + if (strlen($prefix) > 0) :
860 + $idPrefix = $prefix.'-';
861 + $idSuffix = "-".$prefix;
862 + $namePrefix = $prefix . '_';
863 + else :
864 + $idPrefix = 'feedwordpress-';
865 + $idSuffix = "-feedwordpress";
866 + $namePrefix = 'feedwordpress_';
867 + endif;
868 +
430 869 ?>
431 -<div id="category-adder" class="wp-hidden-children">
432 - <h4><a id="category-add-toggle" href="#category-add" class="hide-if-no-js" tabindex="3"><?php _e( '+ Add New Category' ); ?></a></h4>
433 - <p id="category-add" class="wp-hidden-child">
434 - <input type="text" name="newcat" id="newcat" class="form-required form-input-tip" value="<?php _e( 'New category name' ); ?>" tabindex="3" />
435 - <?php wp_dropdown_categories( array( 'hide_empty' => 0, 'name' => 'newcat_parent', 'orderby' => 'name', 'hierarchical' => 1, 'show_option_none' => __('Parent category'), 'tab_index' => 3 ) ); ?>
436 - <input type="button" id="category-add-sumbit" class="add:categorychecklist:category-add button" value="<?php _e( 'Add' ); ?>" tabindex="3" />
437 - <?php wp_nonce_field( 'add-category', '_ajax_nonce', false ); ?>
438 - <span id="category-ajax-response"></span>
870 +<div id="<?php print $idPrefix; ?>taxonomy-<?php print $taxonomy; ?>" class="feedwordpress-category-div">
871 + <ul id="<?php print $idPrefix; ?><?php print $taxonomy; ?>-tabs" class="category-tabs">
872 + <li class="ui-tabs-selected tabs"><a href="#<?php print $idPrefix; ?><?php print $taxonomy; ?>-all" tabindex="3"><?php _e( 'All posts' ); ?></a>
873 + <p style="font-size:smaller;font-style:bold;margin:0">Give <?php print $object; ?> these <?php print $tax->labels->name; ?></p>
874 + </li>
875 + </ul>
876 +
877 +<div id="<?php print $idPrefix; ?><?php print $taxonomy; ?>-all" class="tabs-panel">
878 + <input type="hidden" value="0" name="tax_input[<?php print $taxonomy; ?>][]" />
879 + <ul id="<?php print $idPrefix; ?><?php print $taxonomy; ?>checklist" class="list:<?php print $taxonomy; ?> categorychecklist form-no-clear">
880 + <?php fwp_category_checklist(NULL, false, $checked, $params) ?>
881 + </ul>
882 +</div>
883 +
884 +<div id="<?php print $idPrefix; ?><?php print $taxonomy; ?>-adder" class="<?php print $taxonomy; ?>-adder wp-hidden-children">
885 + <h4><a id="<?php print $idPrefix; ?><?php print $taxonomy; ?>-add-toggle" class="category-add-toggle" href="#<?php print $idPrefix; ?><?php print $taxonomy; ?>-add" class="hide-if-no-js" tabindex="3"><?php _e( '+ Add New Category' ); ?></a></h4>
886 + <p id="<?php print $idPrefix; ?><?php print $taxonomy; ?>-add" class="category-add wp-hidden-child">
887 + <?php
888 + $newcat = 'new'.$taxonomy;
889 +
890 + ?>
891 + <label class="screen-reader-text" for="<?php print $idPrefix; ?>new<?php print $taxonomy; ?>"><?php _e('Add New Category'); ?></label>
892 + <input
893 + id="<?php print $idPrefix; ?>new<?php print $taxonomy; ?>"
894 + class="new<?php print $taxonomy; ?> form-required form-input-tip"
895 + aria-required="true"
896 + tabindex="3"
897 + type="text" name="<?php print $newcat; ?>"
898 + value="<?php _e( 'New category name' ); ?>"
899 + />
900 + <label class="screen-reader-text" for="<?php print $idPrefix; ?>new<?php print $taxonomy; ?>-parent"><?php _e('Parent Category:'); ?></label>
901 + <?php wp_dropdown_categories( array(
902 + 'taxonomy' => $taxonomy,
903 + 'hide_empty' => 0,
904 + 'id' => $idPrefix.'new'.$taxonomy.'-parent',
905 + 'class' => 'new'.$taxonomy.'-parent',
906 + 'name' => $newcat.'_parent',
907 + 'orderby' => 'name',
908 + 'hierarchical' => 1,
909 + 'show_option_none' => __('Parent category'),
910 + 'tab_index' => 3,
911 + ) ); ?>
912 + <input type="button" id="<?php print $idPrefix; ?><?php print $taxonomy; ?>-add-sumbit" class="add:<?php print $idPrefix; ?><?php print $taxonomy; ?>checklist:<?php print $idPrefix.$taxonomy; ?>-add add-categorychecklist-category-add button category-add-submit" value="<?php _e( 'Add' ); ?>" tabindex="3" />
913 + <?php /* wp_nonce_field currently doesn't let us set an id different from name, but we need a non-unique name and a unique id */ ?>
914 + <input type="hidden" id="_ajax_nonce<?php print esc_html($idSuffix); ?>" name="_ajax_nonce" value="<?php print wp_create_nonce('add-'.$taxonomy); ?>" />
915 + <input type="hidden" id="_ajax_nonce-add-<?php print $taxonomy; ?><?php print esc_html($idSuffix); ?>" name="_ajax_nonce-add-<?php print $taxonomy; ?>" value="<?php print wp_create_nonce('add-'.$taxonomy); ?>" />
916 + <span id="<?php print $idPrefix; ?><?php print $taxonomy; ?>-ajax-response" class="<?php print $taxonomy; ?>-ajax-response"></span>
439 917 </p>
440 918 </div>
441 919
442 -<ul id="category-tabs">
443 - <?php /* ui-tabs-selected in WP 2.7 CSS = tabs in WP 2.8 CSS. Thank you, o brilliant wordsmiths of the WordPress 2.8 stylesheet... */ ?>
444 - <li class="ui-tabs-selected tabs"><a href="#categories-all" tabindex="3"><?php _e( 'All posts' ); ?></a>
445 - <p style="font-size:smaller;font-style:bold;margin:0">Give <?php print $object; ?> these categories</p>
446 -</li>
447 -</ul>
448 -
449 -<?php /* ui-tabs-panel in WP 2.7 CSS = tabs-panel in WP 2.8 CSS. Thank you, o brilliant wordsmiths of the WordPress 2.8 stylesheet... */ ?>
450 -<div id="categories-all" class="ui-tabs-panel tabs-panel">
451 - <ul id="categorychecklist" class="list:category categorychecklist form-no-clear">
452 - <?php fwp_category_checklist(NULL, false, $checked) ?>
453 - </ul>
454 920 </div>
455 921 <?php
456 - elseif (fwp_test_wp_version(FWP_SCHEMA_20)) : // WordPress 2.x
457 -?>
458 - <div id="moremeta" style="position: relative; right: auto">
459 - <div id="grabit" class="dbx-group">
460 - <fieldset id="categorydiv" class="dbx-box">
461 - <h3 class="dbx-handle"><?php _e('Categories') ?></h3>
462 - <div class="dbx-content">
463 - <p style="font-size:smaller;font-style:bold;margin:0">Place <?php print $object; ?> under...</p>
464 - <p id="jaxcat"></p>
465 - <div id="categorychecklist"><?php fwp_category_checklist(NULL, false, $checked); ?></div>
466 - </div>
467 - </fieldset>
468 - </div>
469 - </div>
470 -<?php
471 - else : // WordPress 1.5
472 -?>
473 - <fieldset style="width: 60%;">
474 - <legend><?php _e('Categories') ?></legend>
475 - <p style="font-size:smaller;font-style:bold;margin:0">Place <?php print $object; ?> under...</p>
476 - <div style="height: 10em; overflow: scroll;"><?php fwp_category_checklist(NULL, false, $checked); ?></div>
477 - </fieldset>
478 -<?php
479 - endif;
480 922 }
481 923
482 924 function update_feeds_mention ($feed) {
483 925 echo "<li>Updating <cite>".$feed['link/name']."</cite> from &lt;<a href=\""
@@ -484,9 +926,18 @@
484 926 .$feed['link/uri']."\">".$feed['link/uri']."</a>&gt; ...";
485 927 flush();
486 928 }
487 929 function update_feeds_finish ($feed, $added, $dt) {
488 - echo " completed in $dt second".(($dt==1)?'':'s')."</li>\n";
930 + if (is_wp_error($added)) :
931 + $mesgs = $added->get_error_messages();
932 + foreach ($mesgs as $mesg) :
933 + echo "<br/><strong>Feed error:</strong> <code>$mesg</code>";
934 + endforeach;
935 + echo "</li>\n";
936 + else :
937 + echo " completed in $dt second".(($dt==1)?'':'s')."</li>\n";
938 + endif;
939 + flush();
489 940 }
490 941
491 942 function fwp_author_list () {
492 943 global $wpdb;
@@ -491,20 +942,13 @@
491 942 function fwp_author_list () {
492 943 global $wpdb;
493 944 $ret = array();
494 945
495 - // display_name introduced in WP 2.0
496 - if (fwp_test_wp_version(FWP_SCHEMA_20)) :
497 - $name_column = 'display_name';
498 - else :
499 - $name_column = 'user_nickname';
500 - endif;
501 -
502 - $users = $wpdb->get_results("SELECT * FROM $wpdb->users ORDER BY {$name_column}");
946 + $users = get_users();
503 947 if (is_array($users)) :
504 948 foreach ($users as $user) :
505 949 $id = (int) $user->ID;
506 - $ret[$id] = $user->{$name_column};
950 + $ret[$id] = $user->display_name;
507 951 if (strlen(trim($ret[$id])) == 0) :
508 952 $ret[$id] = $user->user_login;
509 953 endif;
510 954 endforeach;
@@ -512,64 +956,64 @@
512 956 return $ret;
513 957 }
514 958
515 959 class FeedWordPressSettingsUI {
516 - function instead_of_posts_box ($link_id = null) {
517 - if (!is_null($link_id)) :
518 - $from_this_feed = 'from this feed';
519 - $by_default = '';
520 - $id_param = "&amp;link_id=".$link_id;
521 - else :
522 - $from_this_feed = 'from syndicated feeds';
523 - $by_default = " by default";
524 - $id_param = "";
960 + static function is_admin () {
961 + global $fwp_path;
962 +
963 + $admin_page = false; // Innocent until proven guilty
964 + if (isset($_REQUEST['page'])) :
965 + $admin_page = (
966 + is_admin()
967 + and preg_match("|^{$fwp_path}/|", $_REQUEST['page'])
968 + );
525 969 endif;
526 -?>
527 -<p>Use the <a href="admin.php?page=<?php print $GLOBALS['fwp_path'] ?>/posts-page.php<?php print $id_param; ?>"><?php _e('Posts & Links'); ?></a>
528 -settings page to set up how new posts <?php print $from_this_feed; ?> will be published<?php $by_default; ?>, whether they will accept
529 -comments and pings, any custom fields that should be set on each post, etc.</p>
530 -<?php
531 - } /* FeedWordPressSettingsUI::instead_of_posts_box () */
532 -
533 - function instead_of_authors_box ($link_id = null) {
534 - if (!is_null($link_id)) :
535 - $from_this_feed = 'from this feed';
536 - $by_default = '';
537 - $id_param = "&amp;link_id=".$link_id;
538 - else :
539 - $from_this_feed = 'from syndicated feeds';
540 - $by_default = " by default";
541 - $id_param = "";
542 - endif;
970 + return $admin_page;
971 + }
543 972
544 -?>
545 -<p>Use the <a
546 -href="admin.php?page=<?php print $GLOBALS['fwp_path']
547 -?>/authors-page.php<?php print $id_param; ?>"><?php _e('Authors');
548 -?></a> settings page to set up how new posts
549 -<?php print $from_this_feed; ?> will be assigned to
550 -authors.</p>
551 -<?php
552 - } /* FeedWordPressSettingsUI::instead_of_authors_box () */
553 -
554 - function instead_of_categories_box ($link_id = null) {
555 - if (!is_null($link_id)) :
556 - $from_this_feed = 'from this feed';
557 - $by_default = '';
558 - $id_param = "&amp;link_id=".$link_id;
559 - else :
560 - $from_this_feed = 'from syndicated feeds';
561 - $by_default = " by default";
562 - $id_param = "";
563 - endif;
564 -
565 -?>
566 -<p>Use the <a href="admin.php?page=<?php print $GLOBALS['fwp_path'] ?>/categories-page.php<?php print $id_param; ?>"><?php _e('Categories'.FEEDWORDPRESS_AND_TAGS); ?></a>
567 -settings page to set up how new posts <?php print $from_this_feed; ?> are assigned categories <?php if (FeedWordPressCompatibility::post_tags()) : ?>or tags<?php endif; ?><?php print $by_default; ?>.</p>
568 -<?php
569 - } /* FeedWordPressSettingsUI::instead_of_categories_box () */
973 + static function admin_scripts () {
974 + global $fwp_path;
570 975
571 - /*static*/ function ajax_nonce_fields () {
976 + wp_enqueue_script('post'); // for magic tag and category boxes
977 + wp_enqueue_script('admin-forms'); // for checkbox selection
978 +
979 + wp_register_script('feedwordpress-elements', plugins_url('/' . $fwp_path . '/feedwordpress-elements.js') );
980 + wp_enqueue_script('feedwordpress-elements');
981 + }
982 +
983 + static function admin_styles () {
984 + ?>
985 + <style type="text/css">
986 + #feedwordpress-admin-feeds .link-rss-params-remove .x, .feedwordpress-admin .remove-it .x {
987 + background: url(<?php print admin_url('images/xit.gif') ?>) no-repeat scroll 0 0 transparent;
988 + }
989 +
990 + #feedwordpress-admin-feeds .link-rss-params-remove:hover .x, .feedwordpress-admin .remove-it:hover .x {
991 + background: url(<?php print admin_url('images/xit.gif') ?>) no-repeat scroll -10px 0 transparent;
992 + }
993 +
994 + .fwpfs {
995 + background-image: url(<?php print admin_url('images/fav.png'); ?>);
996 + background-repeat: repeat-x;
997 + background-position: left center;
998 + background-attachment: scroll;
999 + }
1000 + .fwpfs.slide-down {
1001 + background-image:url(<?php print admin_url('images/fav-top.png'); ?>);
1002 + background-position:0 top;
1003 + background-repeat:repeat-x;
1004 + }
1005 +
1006 + .update-results {
1007 + max-width: 100%;
1008 + overflow: auto;
1009 + }
1010 +
1011 + </style>
1012 + <?php
1013 + } /* FeedWordPressSettingsUI::admin_styles () */
1014 +
1015 + static function ajax_nonce_fields () {
572 1016 if (function_exists('wp_nonce_field')) :
573 1017 echo "<form style='display: none' method='get' action=''>\n<p>\n";
574 1018 wp_nonce_field( 'closedpostboxes', 'closedpostboxesnonce', false );
575 1019 wp_nonce_field( 'meta-box-order', 'meta-box-order-nonce', false );
@@ -576,38 +1020,33 @@
576 1020 echo "</p>\n</form>\n";
577 1021 endif;
578 1022 } /* FeedWordPressSettingsUI::ajax_nonce_fields () */
579 1023
580 - /*static*/ function fix_toggles_js ($context) {
1024 + static function fix_toggles_js ($context) {
581 1025 ?>
582 1026 <script type="text/javascript">
583 1027 jQuery(document).ready( function($) {
584 - <?php if (FeedWordPressCompatibility::test_version(FWP_SCHEMA_25, FWP_SCHEMA_27)) : ?>
585 - // In case someone got here first...
586 - jQuery('.postbox h3').unbind('click');
1028 + // In case someone got here first...
1029 + $('.postbox h3, .postbox .handlediv').unbind('click');
1030 + $('.postbox h3 a').unbind('click');
1031 + $('.hide-postbox-tog').unbind('click');
1032 + $('.columns-prefs input[type="radio"]').unbind('click');
1033 + $('.meta-box-sortables').sortable('destroy');
587 1034
588 - add_postbox_toggles('<?php print $context; ?>');
589 - <?php elseif (FeedWordPressCompatibility::test_version(FWP_SCHEMA_27)) : ?>
590 - // In case someone got here first...
591 - $('.postbox h3, .postbox .handlediv').unbind('click');
592 - $('.postbox h3 a').unbind('click');
593 - $('.hide-postbox-tog').unbind('click');
594 - $('.columns-prefs input[type="radio"]').unbind('click');
595 - $('.meta-box-sortables').sortable('destroy');
596 -
597 - postboxes.add_postbox_toggles('<?php print $context; ?>');
598 - <?php endif; ?>
1035 + postboxes.add_postbox_toggles('<?php print $context; ?>');
599 1036 } );
600 1037 </script>
601 1038 <?php
602 1039 } /* FeedWordPressSettingsUI::fix_toggles_js () */
603 -
604 - function magic_input_tip_js ($id) {
605 - if (FeedWordPressCompatibility::test_version(FWP_SCHEMA_25)) :
1040 +
1041 + static function magic_input_tip_js ($id) {
1042 + if (!preg_match('/^[.#]/', $id)) :
1043 + $id = '#'.$id;
1044 + endif;
606 1045 ?>
607 1046 <script type="text/javascript">
608 1047 jQuery(document).ready( function () {
609 - var inputBox = jQuery("#<?php print $id; ?>");
1048 + var inputBox = jQuery("<?php print $id; ?>");
610 1049 var boxEl = inputBox.get(0);
611 1050 if (boxEl.value==boxEl.defaultValue) { inputBox.addClass('form-input-tip'); }
612 1051 inputBox.focus(function() {
613 1052 if ( this.value == this.defaultValue )
@@ -615,13 +1054,12 @@
615 1054 });
616 1055 inputBox.blur(function() {
617 1056 if ( this.value == '' )
618 1057 jQuery(this).val( this.defaultValue ).addClass( 'form-input-tip' );
619 - });
1058 + });
620 1059 } );
621 1060 </script>
622 1061 <?php
623 - endif;
624 1062 } /* FeedWordPressSettingsUI::magic_input_tip_js () */
625 1063 } /* class FeedWordPressSettingsUI */
626 1064
627 1065 function fwp_insert_new_user ($newuser_name) {
@@ -630,23 +1068,18 @@
630 1068 $ret = null;
631 1069 if (strlen($newuser_name) > 0) :
632 1070 $userdata = array();
633 1071 $userdata['ID'] = NULL;
634 -
635 - $userdata['user_login'] = sanitize_user($newuser_name);
636 - $userdata['user_login'] = apply_filters('pre_user_login', $userdata['user_login']);
637 -
638 - $userdata['user_nicename'] = sanitize_title($newuser_name);
639 - $userdata['user_nicename'] = apply_filters('pre_user_nicename', $userdata['user_nicename']);
640 -
641 - $userdata['display_name'] = $wpdb->escape($newuser_name);
1072 + $userdata['user_login'] = apply_filters('pre_user_login', sanitize_user($newuser_name));
1073 + $userdata['user_nicename'] = apply_filters('pre_user_nicename', sanitize_title($newuser_name));
1074 + $userdata['display_name'] = $newuser_name;
1075 + $userdata['user_pass'] = substr(md5(uniqid(microtime())), 0, 6); // just something random to lock it up
642 1076
1077 + $blahUrl = get_bloginfo('url'); $url = parse_url($blahUrl);
1078 + $userdata['user_email'] = substr(md5(uniqid(microtime())), 0, 6).'@'.$url['host'];
1079 +
643 1080 $newuser_id = wp_insert_user($userdata);
644 - if (is_numeric($newuser_id)) :
645 - $ret = $newuser_id;
646 - else :
647 - // TODO: Add some error detection and reporting
648 - endif;
1081 + $ret = $newuser_id; // Either a numeric ID or a WP_Error object
649 1082 else :
650 1083 // TODO: Add some error reporting
651 1084 endif;
652 1085 return $ret;
@@ -651,132 +1084,197 @@
651 1084 endif;
652 1085 return $ret;
653 1086 } /* fwp_insert_new_user () */
654 1087
1088 +/**
1089 + * fwp_add_meta_box
1090 + *
1091 + * This function is no longer necessary, since no versions of WordPress that FWP
1092 + * still supports lack add_meta_box(). But I've left it in place for the time
1093 + * being for add-on modules that may have used it in setting up their UI.
1094 + */
655 1095 function fwp_add_meta_box ($id, $title, $callback, $page, $context = 'advanced', $priority = 'default', $callback_args = null) {
656 - if (function_exists('add_meta_box')) :
657 - return add_meta_box($id, $title, $callback, $page, $context, $priority, $callback_args);
658 - else :
659 - /* Re-used as per terms of the GPL from add_meta_box() in WordPress 2.8.1 wp-admin/includes/template.php. */
660 - global $wp_meta_boxes;
661 -
662 - if ( !isset($wp_meta_boxes) )
663 - $wp_meta_boxes = array();
664 - if ( !isset($wp_meta_boxes[$page]) )
665 - $wp_meta_boxes[$page] = array();
666 - if ( !isset($wp_meta_boxes[$page][$context]) )
667 - $wp_meta_boxes[$page][$context] = array();
668 -
669 - foreach ( array_keys($wp_meta_boxes[$page]) as $a_context ) {
670 - foreach ( array('high', 'core', 'default', 'low') as $a_priority ) {
671 - if ( !isset($wp_meta_boxes[$page][$a_context][$a_priority][$id]) )
672 - continue;
673 -
674 - // If a core box was previously added or removed by a plugin, don't add.
675 - if ( 'core' == $priority ) {
676 - // If core box previously deleted, don't add
677 - if ( false === $wp_meta_boxes[$page][$a_context][$a_priority][$id] )
678 - return;
679 - // If box was added with default priority, give it core priority to maintain sort order
680 - if ( 'default' == $a_priority ) {
681 - $wp_meta_boxes[$page][$a_context]['core'][$id] = $wp_meta_boxes[$page][$a_context]['default'][$id];
682 - unset($wp_meta_boxes[$page][$a_context]['default'][$id]);
683 - }
684 - return;
685 - }
686 - // If no priority given and id already present, use existing priority
687 - if ( empty($priority) ) {
688 - $priority = $a_priority;
689 - // else if we're adding to the sorted priortiy, we don't know the title or callback. Glab them from the previously added context/priority.
690 - } elseif ( 'sorted' == $priority ) {
691 - $title = $wp_meta_boxes[$page][$a_context][$a_priority][$id]['title'];
692 - $callback = $wp_meta_boxes[$page][$a_context][$a_priority][$id]['callback'];
693 - $callback_args = $wp_meta_boxes[$page][$a_context][$a_priority][$id]['args'];
694 - }
695 - // An id can be in only one priority and one context
696 - if ( $priority != $a_priority || $context != $a_context )
697 - unset($wp_meta_boxes[$page][$a_context][$a_priority][$id]);
698 - }
699 - }
700 -
701 - if ( empty($priority) )
702 - $priority = 'low';
703 -
704 - if ( !isset($wp_meta_boxes[$page][$context][$priority]) )
705 - $wp_meta_boxes[$page][$context][$priority] = array();
706 -
707 - $wp_meta_boxes[$page][$context][$priority][$id] = array('id' => $id, 'title' => $title, 'callback' => $callback, 'args' => $callback_args);
708 - endif;
1096 + return add_meta_box($id, $title, $callback, $page, $context, $priority, $callback_args);
709 1097 } /* function fwp_add_meta_box () */
710 1098
711 1099 function fwp_do_meta_boxes($page, $context, $object) {
712 - if (function_exists('do_meta_boxes')) :
713 - $ret = do_meta_boxes($page, $context, $object);
714 -
715 - // Avoid JavaScript error from WordPress 2.5 bug
1100 + $ret = do_meta_boxes($page, $context, $object);
1101 +
1102 + // Avoid JavaScript error from WordPress 2.5 bug
716 1103 ?>
717 1104 <div style="display: none">
718 1105 <div id="tags-input"></div> <!-- avoid JS error from WP 2.5 bug -->
719 1106 </div>
720 1107 <?php
721 - return $ret;
722 - else :
723 - /* Derived as per terms of the GPL from do_meta_boxes() in WordPress 2.8.1 wp-admin/includes/template.php. */
724 - global $wp_meta_boxes;
725 - static $already_sorted = false;
726 -
727 - //do_action('do_meta_boxes', $page, $context, $object);
728 -
729 - echo "<div id='$context-sortables' class='meta-box-sortables'>\n";
730 -
731 - $i = 0;
732 - do {
733 - if ( !isset($wp_meta_boxes) || !isset($wp_meta_boxes[$page]) || !isset($wp_meta_boxes[$page][$context]) )
734 - break;
735 -
736 - foreach ( array('high', 'sorted', 'core', 'default', 'low') as $priority ) {
737 - if ( isset($wp_meta_boxes[$page][$context][$priority]) ) {
738 - foreach ( (array) $wp_meta_boxes[$page][$context][$priority] as $box ) {
739 - if ( false == $box || ! $box['title'] )
740 - continue;
741 - $i++;
742 - fwp_option_box_opener($box['title'], $box['id'], 'postbox' /*. postbox_classes($box['id'], $page)*/);
743 - call_user_func($box['callback'], $object, $box);
744 - fwp_option_box_closer();
745 -
746 - if (is_object($object) and method_exists($object, 'interstitial')) :
747 - $object->interstitial();
748 - else :
749 - // Submit button for WP 1.5, early 2.x style
750 - fwp_settings_form_periodic_submit();
751 - endif;
752 - }
753 - }
754 - }
755 - } while(0);
756 -
757 - echo "</div>";
758 -
759 - return $i;
760 - endif;
1108 + return $ret;
761 1109 } /* function fwp_do_meta_boxes() */
762 1110
763 1111 function fwp_remove_meta_box($id, $page, $context) {
764 - if (function_exists('remove_meta_box')) :
765 - return remove_meta_box($id, $page, $context);
766 - else :
767 - /* Re-used as per terms of the GPL from remove_meta_box() in WordPress 2.8.1 wp-admin/includes/template.php */
768 - global $wp_meta_boxes;
769 -
770 - if ( !isset($wp_meta_boxes) )
771 - $wp_meta_boxes = array();
772 - if ( !isset($wp_meta_boxes[$page]) )
773 - $wp_meta_boxes[$page] = array();
774 - if ( !isset($wp_meta_boxes[$page][$context]) )
775 - $wp_meta_boxes[$page][$context] = array();
776 -
777 - foreach ( array('high', 'core', 'default', 'low') as $priority )
778 - $wp_meta_boxes[$page][$context][$priority][$id] = false;
779 - endif;
1112 + return remove_meta_box($id, $page, $context);
780 1113 } /* function fwp_remove_meta_box() */
781 1114
1115 +function fwp_syndication_manage_page_links_table_rows ($links, $page, $visible = 'Y') {
1116 +
1117 + $subscribed = ('Y' == strtoupper($visible));
1118 + if ($subscribed or (count($links) > 0)) :
1119 + ?>
1120 + <table class="widefat<?php if (!$subscribed) : ?> unsubscribed<?php endif; ?>">
1121 + <thead>
1122 + <tr>
1123 + <th class="check-column" scope="col"><input type="checkbox" /></th>
1124 + <th scope="col"><?php _e('Name'); ?></th>
1125 + <th scope="col"><?php _e('Feed'); ?></th>
1126 + <th scope="col"><?php _e('Updated'); ?></th>
1127 + </tr>
1128 + </thead>
1129 +
1130 + <tbody>
1131 +<?php
1132 + $alt_row = true;
1133 + if (count($links) > 0):
1134 + foreach ($links as $link):
1135 + $trClass = array();
1136 +
1137 + // Prep: Get last updated timestamp
1138 + $sLink = new SyndicatedLink($link->link_id);
1139 + if (!is_null($sLink->setting('update/last'))) :
1140 + $lastUpdated = 'Last checked '. fwp_time_elapsed($sLink->setting('update/last'));
1141 + else :
1142 + $lastUpdated = __('None yet');
1143 + endif;
1144 +
1145 + // Prep: get last error timestamp, if any
1146 + $fileSizeLines = array();
1147 + if (is_null($sLink->setting('update/error'))) :
1148 + $errorsSince = '';
1149 + if (!is_null($sLink->setting('link/item count'))) :
1150 + $N = $sLink->setting('link/item count');
1151 + $fileSizeLines[] = sprintf((($N==1) ? __('%d item') : __('%d items')), $N);
1152 + endif;
1153 +
1154 + if (!is_null($sLink->setting('link/filesize'))) :
1155 + $fileSizeLines[] = size_format($sLink->setting('link/filesize')). ' total';
1156 + endif;
1157 + else :
1158 + $trClass[] = 'feed-error';
1159 +
1160 + $theError = unserialize($sLink->setting('update/error'));
1161 +
1162 + $errorsSince = "<div class=\"returning-errors\">"
1163 + ."<p><strong>Returning errors</strong> since "
1164 + .fwp_time_elapsed($theError['since'])
1165 + ."</p>"
1166 + ."<p>Most recent ("
1167 + .fwp_time_elapsed($theError['ts'])
1168 + ."):<br/><code>"
1169 + .implode("</code><br/><code>", $theError['object']->get_error_messages())
1170 + ."</code></p>"
1171 + ."</div>\n";
1172 + endif;
1173 +
1174 + $nextUpdate = "<div style='max-width: 30.0em; font-size: 0.9em;'><div style='font-style:italic;'>";
1175 +
1176 + $ttl = $sLink->setting('update/ttl');
1177 + if (is_numeric($ttl)) :
1178 + $next = $sLink->setting('update/last') + $sLink->setting('update/fudge') + ((int) $ttl * 60);
1179 + if ('automatically'==$sLink->setting('update/timed')) :
1180 + if ($next < time()) :
1181 + $nextUpdate .= 'Ready and waiting to be updated since ';
1182 + else :
1183 + $nextUpdate .= 'Scheduled for next update ';
1184 + endif;
1185 + $nextUpdate .= fwp_time_elapsed($next);
1186 + if (FEEDWORDPRESS_DEBUG) : $nextUpdate .= " [".(($next-time())/60)." minutes]"; endif;
1187 + else :
1188 + $lastUpdated .= " &middot; Next ";
1189 + if ($next < time()) :
1190 + $lastUpdated .= 'ASAP';
1191 + elseif ($next - time() < 60) :
1192 + $lastUpdated .= fwp_time_elapsed($next);
1193 + elseif ($next - time() < 60*60*24) :
1194 + $lastUpdated .= gmdate('g:ia', $next + (get_option('gmt_offset') * 3600));
1195 + else :
1196 + $lastUpdated .= gmdate('F j', $next + (get_option('gmt_offset') * 3600));
1197 + endif;
1198 +
1199 + $nextUpdate .= "Scheduled to be checked for updates every ".$ttl." minute".(($ttl!=1)?"s":"")."</div><div style='size:0.9em; margin-top: 0.5em'> This update schedule was requested by the feed provider";
1200 + if ($sLink->setting('update/xml')) :
1201 + $nextUpdate .= " using a standard <code style=\"font-size: inherit; padding: 0; background: transparent\">&lt;".$sLink->setting('update/xml')."&gt;</code> element";
1202 + endif;
1203 + $nextUpdate .= ".";
1204 + endif;
1205 + else:
1206 + $nextUpdate .= "Scheduled for update as soon as possible";
1207 + endif;
1208 + $nextUpdate .= "</div></div>";
1209 +
1210 + $fileSize = '';
1211 + if (count($fileSizeLines) > 0) :
1212 + $fileSize = '<div>'.implode(" / ", $fileSizeLines)."</div>";
1213 + endif;
1214 +
1215 + unset($sLink);
1216 +
1217 + $alt_row = !$alt_row;
1218 +
1219 + if ($alt_row) :
1220 + $trClass[] = 'alternate';
1221 + endif;
1222 + ?>
1223 + <tr<?php echo ((count($trClass) > 0) ? ' class="'.implode(" ", $trClass).'"':''); ?>>
1224 + <th class="check-column" scope="row"><input type="checkbox" name="link_ids[]" value="<?php echo $link->link_id; ?>" /></th>
1225 + <?php
1226 + $caption = (
1227 + (strlen($link->link_rss) > 0)
1228 + ? __('Switch Feed')
1229 + : $caption=__('Find Feed')
1230 + );
1231 + ?>
1232 + <td>
1233 + <strong><a href="<?php print $page->admin_page_href('feeds-page.php', array(), $link); ?>"><?php print esc_html($link->link_name); ?></a></strong>
1234 + <div class="row-actions"><?php if ($subscribed) :
1235 + $page->display_feed_settings_page_links(array(
1236 + 'before' => '<div><strong>Settings &gt;</strong> ',
1237 + 'after' => '</div>',
1238 + 'subscription' => $link,
1239 + ));
1240 + endif; ?>
1241 +
1242 + <div><strong>Actions &gt;</strong>
1243 + <?php if ($subscribed) : ?>
1244 + <a href="<?php print $page->admin_page_href('syndication.php', array('action' => 'feedfinder'), $link); ?>"><?php echo $caption; ?></a>
1245 + <?php else : ?>
1246 + <a href="<?php print $page->admin_page_href('syndication.php', array('action' => FWP_RESUB_CHECKED), $link); ?>"><?php _e('Re-subscribe'); ?></a>
1247 + <?php endif; ?>
1248 + | <a href="<?php print $page->admin_page_href('syndication.php', array('action' => 'Unsubscribe'), $link); ?>"><?php _e(($subscribed ? 'Unsubscribe' : 'Delete permanently')); ?></a>
1249 + | <a href="<?php print esc_html($link->link_url); ?>"><?php _e('View')?></a></div>
1250 + </div>
1251 + </td>
1252 + <?php if (strlen($link->link_rss) > 0): ?>
1253 + <td><a href="<?php echo esc_html($link->link_rss); ?>"><?php echo esc_html(feedwordpress_display_url($link->link_rss, 32)); ?></a></td>
1254 + <?php else: ?>
1255 + <td class="feed-missing"><p><strong>no feed assigned</strong></p></td>
1256 + <?php endif; ?>
1257 +
1258 + <td><div style="float: right; padding-left: 10px">
1259 + <input type="submit" class="button" name="update_uri[<?php print esc_html($link->link_rss); ?>]" value="<?php _e('Update Now'); ?>" />
1260 + </div>
1261 + <?php print $lastUpdated; ?>
1262 + <?php print $fileSize; ?>
1263 + <?php print $errorsSince; ?>
1264 + <?php print $nextUpdate; ?>
1265 + </td>
1266 + </tr>
1267 + <?php
1268 + endforeach;
1269 + else :
1270 +?>
1271 +<tr><td colspan="4"><p>There are no websites currently listed for syndication.</p></td></tr>
1272 +<?php
1273 + endif;
1274 +?>
1275 +</tbody>
1276 +</table>
1277 + <?php
1278 + endif;
1279 +} /* function fwp_syndication_manage_page_links_table_rows () */
782 1280