PluginProbe
FeedWordPress / 2010.0905
FeedWordPress v2010.0905
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 +737 -441 2010.01272010.0905 View file →
@@ -4,8 +4,9 @@
4 4 var $updated = false;
5 5 var $link = NULL;
6 6 var $dispatch = NULL;
7 7 var $filename = NULL;
8 + var $pagenames = array();
8 9
9 10 /**
10 11 * Construct the admin page object.
11 12 *
@@ -20,11 +21,74 @@
20 21 $this->context .= 'forfeed';
21 22 endif;
22 23 } /* FeedWordPressAdminPage constructor */
23 24
25 + function pageslug () {
26 + $slug = preg_replace('/FeedWordPress(.*)Page/', '$1', get_class($this));
27 + return strtolower($slug);
28 + }
29 +
30 + function pagename ($context = NULL) {
31 + if (is_null($context)) :
32 + $context = 'default';
33 + endif;
34 +
35 + if (isset($this->pagenames[$context])) :
36 + $name = $this->pagenames[$context];
37 + elseif (isset($tis->pagenames['default'])) :
38 + $name = $this->pagenames['default'];
39 + else :
40 + $name = $this->pageslug();
41 + endif;
42 + return __($name);
43 + } /* FeedWordPressAdminPage::pagename () */
44 +
45 + function accept_POST ($post) {
46 + if ($this->save_requested_in($post)) : // User mashed Save Changes
47 + $this->save_settings($post);
48 + endif;
49 + do_action($this->dispatch.'_post', $post, $this);
50 + }
51 +
52 + function save_settings ($post) {
53 + if ($this->for_feed_settings()) :
54 + // Save settings
55 + $this->link->save_settings(/*reload=*/ true);
56 + $this->updated = true;
57 +
58 + // Reset, reload
59 + $link_id = $this->link->id;
60 + unset($this->link);
61 + $this->link = new SyndicatedLink($link_id);
62 + else :
63 + $this->updated = true;
64 + endif;
65 + do_action($this->dispatch.'_save', $post, $this);
66 + } /* FeedWordPressAdminPage::save_settings () */
67 +
24 68 function for_feed_settings () { return (is_object($this->link) and method_exists($this->link, 'found') and $this->link->found()); }
25 69 function for_default_settings () { return !$this->for_feed_settings(); }
26 70
71 + function update_setting ($names, $value, $default = 'default') {
72 + if (is_string($names)) :
73 + $feed_name = $names;
74 + $global_name = 'feedwordpress_'.preg_replace('![\s/]+!', '_', $names);
75 + else :
76 + $feed_name = $names['feed'];
77 + $global_name = 'feedwordpress_'.$names['global'];
78 + endif;
79 +
80 + if ($this->for_feed_settings()) : // Update feed-specific setting
81 + $this->link->update_setting($feed_name, $value, $default);
82 + else : // Update global setting
83 + update_option($global_name, $value);
84 + endif;
85 + } /* FeedWordPressAdminPage::update_setting () */
86 +
87 + function save_requested_in ($post) {
88 + return (isset($post['save']) or isset($post['submit']));
89 + }
90 +
27 91 /*static*/ function submitted_link_id () {
28 92 global $fwp_post;
29 93
30 94 // Presume global unless we get a specific link ID
@@ -51,9 +115,9 @@
51 115
52 116 /*static*/ function submitted_link () {
53 117 $link_id = FeedWordPressAdminPage::submitted_link_id();
54 118 if (is_numeric($link_id) and $link_id) :
55 - $link =& new SyndicatedLink($link_id);
119 + $link = new SyndicatedLink($link_id);
56 120 else :
57 121 $link = NULL;
58 122 endif;
59 123 return $link;
@@ -61,9 +125,9 @@
61 125
62 126 function stamp_link_id ($field = null) {
63 127 if (is_null($field)) : $field = 'save_link_id'; endif;
64 128 ?>
65 - <input type="hidden" name="<?php print wp_specialchars($field, 'both'); ?>" value="<?php print ($this->for_feed_settings() ? $this->link->id : '*'); ?>" />
129 + <input type="hidden" name="<?php print esc_html($field); ?>" value="<?php print ($this->for_feed_settings() ? $this->link->id : '*'); ?>" />
66 130 <?php
67 131 } /* FeedWordPressAdminPage::stamp_link_id () */
68 132
69 133 function these_posts_phrase () {
@@ -98,105 +162,126 @@
98 162 } /* FeedWordPressAdminPage::fix_toggles() */
99 163
100 164 function ajax_interface_js () {
101 165 ?>
102 -<script type="text/javascript">
103 166 function contextual_appearance (item, appear, disappear, value, visibleStyle, checkbox) {
104 167 if (typeof(visibleStyle)=='undefined') visibleStyle = 'block';
105 168
106 169 var rollup=document.getElementById(item);
107 - var newuser=document.getElementById(appear);
108 - var sitewide=document.getElementById(disappear);
109 170 if (rollup) {
110 171 if ((checkbox && rollup.checked) || (!checkbox && value==rollup.value)) {
111 - if (newuser) newuser.style.display=visibleStyle;
112 - if (sitewide) sitewide.style.display='none';
172 + jQuery('#'+disappear).hide();
173 + jQuery('#'+appear).show(600);
113 174 } else {
114 - if (newuser) newuser.style.display='none';
115 - if (sitewide) sitewide.style.display=visibleStyle;
175 + jQuery('#'+appear).hide();
176 + jQuery('#'+disappear).show(600);
116 177 }
117 178 }
118 179 }
119 -</script>
120 -
121 180 <?php
122 181 } /* FeedWordPressAdminPage::ajax_interface_js () */
123 182
183 + function display_feed_settings_page_links ($params = array()) {
184 + global $fwp_path;
185 +
186 + $params = wp_parse_args($params, array(
187 + 'before' => '',
188 + 'between' => ' | ',
189 + 'after' => '',
190 + 'long' => false,
191 + 'subscription' => $this->link,
192 + ));
193 + $sub = $params['subscription'];
194 +
195 + $links = array(
196 + "Feed" => array('page' => 'feeds-page.php', 'long' => 'Feeds & Updates'),
197 + "Posts" => array('page' => 'posts-page.php', 'long' => 'Posts & Links'),
198 + "Authors" => array('page' => 'authors-page.php', 'long' => 'Authors'),
199 + 'Categories' => array('page' => 'categories-page.php', 'long' => 'Categories'.FEEDWORDPRESS_AND_TAGS),
200 + );
201 +
202 + $hrefPrefix = 'admin.php?';
203 +
204 + $link_id = NULL;
205 + if (is_object($sub)) :
206 + if (method_exists($sub, 'found')) :
207 + if ($sub->found()) :
208 + $link_id = $sub->link->link_id;
209 + endif;
210 + else :
211 + $link_id = $sub->link_id;
212 + endif;
213 + endif;
214 +
215 + if (!is_null($link_id)) :
216 + $urlParam = "link_id={$link_id}";
217 + $hrefPrefix .= $urlParam."&";
218 + $urlSuffix = "&".$urlParam;
219 + else :
220 + $urlParam = '';
221 + endif;
222 + $hrefPrefix .= "page=${fwp_path}/";
223 +
224 + print $params['before']; $first = true;
225 + foreach ($links as $label => $link) :
226 + if (!$first) : print $params['between']; endif;
227 +
228 + if (isset($link['url'])) : $url = $link['url'].$urlSuffix;
229 + else : $url = $hrefPrefix.$link['page'];
230 + endif;
231 + $url = esc_html($url);
232 +
233 + if ($link['page']==basename($this->filename)) :
234 + print "<strong>";
235 + else :
236 + print "<a href=\"${url}\">";
237 + endif;
238 +
239 + if ($params['long']) : print esc_html(__($link['long']));
240 + else : print esc_html(__($label));
241 + endif;
242 +
243 + if ($link['page']==basename($this->filename)) :
244 + print "</strong>";
245 + else :
246 + print "</a>";
247 + endif;
248 +
249 + $first = false;
250 + endforeach;
251 + print $params['after'];
252 + } /* FeedWordPressAdminPage::display_feed_settings_page_links */
253 +
124 254 function display_feed_select_dropdown() {
125 255 $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 256
177 257 ?>
178 - <p id="post-search">
179 - <select name="link_id" class="fwpfs" style="max-width: 20.0em;">
258 + <div id="fwpfs-container"><ul class="subsubsub">
259 + <li><select name="link_id" class="fwpfs" style="max-width: 20.0em;">
180 260 <option value="*"<?php if ($this->for_default_settings()) : ?> selected="selected"<?php endif; ?>>- defaults for all feeds -</option>
181 261 <?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>
262 + <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 263 <?php endforeach; endif; ?>
184 264 </select>
185 - <input class="button" type="submit" name="go" value="<?php _e('Go') ?> &raquo;" />
186 - </p>
265 + <input class="button" type="submit" name="go" value="<?php _e('Go') ?> &raquo;" /></li>
266 +
187 267 <?php
268 + $this->display_feed_settings_page_links(array(
269 + 'before' => '<li>',
270 + 'between' => "</li>\n<li>",
271 + 'after' => '</li>',
272 + 'subscription' => $this->link,
273 + ));
274 + ?>
275 + </ul>
276 + </div>
277 + <?php
188 278 } /* FeedWordPressAdminPage::display_feed_select_dropdown() */
189 279
190 280 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;
196 281 ?>
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>
282 + <div class="icon32"><img src="<?php print esc_html(WP_PLUGIN_URL.'/'.$GLOBALS['fwp_path'].'/feedwordpress.png'); ?>" alt="" /></div>
283 + <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 284 <?php
200 285 }
201 286
202 287 function display_update_notice_if_updated ($pagename = 'Syndication', $mesg = NULL) {
@@ -210,9 +295,9 @@
210 295
211 296 if (!is_null($mesg)) :
212 297 ?>
213 298 <div class="updated">
214 - <p><?php print wp_specialchars($mesg, 1); ?></p>
299 + <p><?php print esc_html($mesg); ?></p>
215 300 </div>
216 301 <?php
217 302 endif;
218 303 } /* FeedWordPressAdminPage::display_update_notice_if_updated() */
@@ -220,9 +305,9 @@
220 305 function display_settings_scope_message () {
221 306 if ($this->for_feed_settings()) :
222 307 ?>
223 308 <p>These settings only affect posts syndicated from
224 - <strong><?php echo wp_specialchars($this->link->link->link_name, 1); ?></strong>.</p>
309 + <strong><?php echo esc_html($this->link->link->link_name); ?></strong>.</p>
225 310 <?php
226 311 else :
227 312 ?>
228 313 <p>These settings affect posts syndicated from any feed unless they are overridden
@@ -232,22 +317,99 @@
232 317 } /* FeedWordPressAdminPage::display_settings_scope_message () */
233 318
234 319 /*static*/ function has_link () { return true; }
235 320
321 + function form_action ($filename = NULL) {
322 + global $fwp_path;
323 +
324 + if (is_null($filename)) :
325 + $filename = basename($this->filename);
326 + endif;
327 + return "admin.php?page=${fwp_path}/".$filename;
328 + } /* FeedWordPressAdminPage::form_action () */
329 +
330 + function update_message () {
331 + return NULL;
332 + }
333 +
334 + function display () {
335 + if (FeedWordPress::needs_upgrade()) :
336 + fwp_upgrade_page();
337 + return;
338 + endif;
339 +
340 + FeedWordPressCompatibility::validate_http_request(/*action=*/ $this->dispatch, /*capability=*/ 'manage_links');
341 +
342 + ////////////////////////////////////////////////
343 + // Process POST request, if any ////////////////
344 + ////////////////////////////////////////////////
345 + if (strtoupper($_SERVER['REQUEST_METHOD'])=='POST') :
346 + $this->accept_POST($GLOBALS['fwp_post']);
347 + else :
348 + $this->updated = false;
349 + endif;
350 +
351 + ////////////////////////////////////////////////
352 + // Prepare settings page ///////////////////////
353 + ////////////////////////////////////////////////
354 +
355 + $this->display_update_notice_if_updated(
356 + $this->pagename('settings-update'),
357 + $this->update_message()
358 + );
359 +
360 + $this->open_sheet($this->pagename('open-sheet'));
361 + ?>
362 + <div id="post-body">
363 + <?php
364 + foreach ($this->boxes_by_methods as $method => $row) :
365 + if (is_array($row)) :
366 + $id = $row['id'];
367 + $title = $row['title'];
368 + else :
369 + $id = 'feedwordpress_'.$method;
370 + $title = $row;
371 + endif;
372 +
373 + add_meta_box(
374 + /*id=*/ $id,
375 + /*title=*/ $title,
376 + /*callback=*/ array(&$this, $method),
377 + /*page=*/ $this->meta_box_context(),
378 + /*context=*/ $this->meta_box_context()
379 + );
380 + endforeach;
381 + do_action($this->dispatch.'_meta_boxes', $this);
382 + ?>
383 + <div class="metabox-holder">
384 + <?php
385 + fwp_do_meta_boxes($this->meta_box_context(), $this->meta_box_context(), $this);
386 + ?>
387 + </div> <!-- class="metabox-holder" -->
388 + </div> <!-- id="post-body" -->
389 + <?php $this->close_sheet(); ?>
390 + <?php
391 + }
392 +
236 393 function open_sheet ($header) {
237 394 // Set up prepatory AJAX stuff
395 + ?>
396 + <script type="text/javascript">
397 + <?php
238 398 $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;
399 + ?>
400 + </script>
401 +
402 + <?php
403 + add_action(
404 + FeedWordPressCompatibility::bottom_script_hook($this->filename),
405 + /*callback=*/ array($this, 'fix_toggles'),
406 + /*priority=*/ 10000
407 + );
408 + FeedWordPressSettingsUI::ajax_nonce_fields();
247 409
248 410 ?>
249 - <div class="wrap" style="position:relative">
411 + <div class="wrap feedwordpress-admin" id="feedwordpress-admin-<?php print $this->pageslug(); ?>">
250 412 <?php
251 413 if (!is_null($header)) :
252 414 $this->display_sheet_header($header);
253 415 endif;
@@ -253,9 +415,9 @@
253 415 endif;
254 416
255 417 if (!is_null($this->dispatch)) :
256 418 ?>
257 - <form action="admin.php?page=<?php print $GLOBALS['fwp_path']; ?>/<?php echo basename($this->filename); ?>" method="post">
419 + <form action="<?php print $this->form_action(); ?>" method="post">
258 420 <div><?php
259 421 FeedWordPressCompatibility::stamp_nonce($this->dispatch);
260 422 $this->stamp_link_id();
261 423 ?></div>
@@ -262,84 +424,218 @@
262 424 <?php
263 425 endif;
264 426
265 427 if ($this->has_link()) :
266 - $this->display_feed_select_dropdown();
267 428 $this->display_settings_scope_message();
268 429 endif;
269 430
270 - if (function_exists('do_meta_boxes')) :
271 - ?>
272 - <div id="poststuff">
273 - <?php
274 - else :
275 - ?>
276 - </div> <!-- class="wrap" -->
277 - <?php
431 + ?><div class="tablenav"><?php
432 + if (!is_null($this->dispatch)) :
433 + ?><div class="alignright"><?php
434 + $this->save_button();
435 + ?></div><?php
278 436 endif;
279 437
280 - if (!is_null($this->dispatch)) :
281 - fwp_settings_form_single_submit();
438 + if ($this->has_link()) :
439 + $this->display_feed_select_dropdown();
282 440 endif;
441 + ?>
442 + </div>
443 +
444 + <div id="poststuff">
445 + <?php
283 446 } /* FeedWordPressAdminPage::open_sheet () */
284 447
285 448 function close_sheet () {
286 - // WordPress 2.5+
287 - if (function_exists('do_meta_boxes')) :
288 - ?>
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" -->
295 - <?php
449 + ?>
450 +
451 + </div> <!-- id="poststuff" -->
452 + <?php
453 + if (!is_null($this->dispatch)) :
454 + $this->save_button();
455 + print "</form>\n";
296 456 endif;
297 - }
298 -} /* class FeedWordPressAdminPage */
457 + ?>
458 + </div> <!-- class="wrap" -->
459 +
460 + <?php
461 + } /* FeedWordPressAdminPage::close_sheet () */
462 +
463 + function setting_radio_control ($localName, $globalName, $options, $params = array()) {
464 + global $fwp_path;
465 +
466 + if (isset($params['filename'])) : $filename = $params['filename'];
467 + else : $filename = basename($this->filename);
468 + endif;
469 +
470 + if (isset($params['site-wide-url'])) : $href = $params['site-wide-url'];
471 + else : $href = "admin.php?page=${fwp_path}/${filename}";
472 + endif;
473 +
474 + if (isset($params['setting-default'])) : $settingDefault = $params['setting-default'];
475 + else : $settingDefault = NULL;
476 + endif;
477 +
478 + if (isset($params['global-setting-default'])) : $globalSettingDefault = $params['global-setting-default'];
479 + else : $globalSettingDefault = $settingDefault;
480 + endif;
299 481
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>
482 + $globalSetting = get_option('feedwordpress_'.$globalName, $globalSettingDefault);
483 + if ($this->for_feed_settings()) :
484 + $setting = $this->link->setting($localName, NULL, $settingDefault);
485 + else :
486 + $setting = $globalSetting;
487 + endif;
488 +
489 + if (isset($params['offer-site-wide'])) : $offerSiteWide = $params['offer-site-wide'];
490 + else : $offerSiteWide = $this->for_feed_settings();
491 + endif;
492 +
493 + // This allows us to provide an alternative set of human-readable
494 + // labels for each potential value. For use in Currently: line.
495 + if (isset($params['labels'])) : $labels = $params['labels'];
496 + else : $labels = $options;
497 + endif;
498 +
499 + if (isset($params['input-name'])) : $inputName = $params['input-name'];
500 + else : $inputName = $globalName;
501 + endif;
502 +
503 + if (isset($params['default-input-id'])) : $defaultInputId = $params['default-input-id'];
504 + else : $defaultInputId = NULL;
505 + endif;
307 506
308 -<p class="submit">
309 -<input type="submit" name="save" value="<?php print $caption; ?>" />
310 -</p>
311 -</div>
312 -<?php
313 - endif;
314 -}
507 + if (isset($params['default-input-id-no'])) : $defaultInputIdNo = $params['default-input-id-no'];
508 + elseif (!is_null($defaultInputId)) : $defaultInputIdNo = $defaultInputId.'-no';
509 + else : $defaultInputIdNo = NULL;
510 + endif;
511 +
512 + // This allows us to either include the site-default setting as
513 + // one of the options within the radio box, or else as a simple
514 + // yes/no toggle that controls whether or not to check another
515 + // set of inputs.
516 + if (isset($params['default-input-name'])) : $defaultInputName = $params['default-input-name'];
517 + else : $defaultInputName = $inputName;
518 + endif;
315 519
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 -}
520 + if ($defaultInputName != $inputName) :
521 + $defaultInputValue = 'yes';
522 + else :
523 + $defaultInputValue = (
524 + isset($params['default-input-value'])
525 + ? $params['default-input-value']
526 + : 'site-default'
527 + );
528 + endif;
529 +
530 + $settingDefaulted = (is_null($setting) or ($settingDefault === $setting));
326 531
327 -function fwp_settings_form_single_submit_closer ($caption = NULL) {
328 - if (fwp_test_wp_version(FWP_SCHEMA_27)) :
532 + if (!is_callable($options)) :
533 + $checked = array();
534 + if ($settingDefaulted) :
535 + $checked[$defaultInputValue] = ' checked="checked"';
536 + endif;
537 +
538 + foreach ($options as $value => $label) :
539 + if ($setting == $value) :
540 + $checked[$value] = ' checked="checked"';
541 + else :
542 + $checked[$value] = '';
543 + endif;
544 + endforeach;
545 + endif;
546 +
547 + $defaulted = array();
548 + if ($defaultInputName != $inputName) :
549 + $defaulted['yes'] = ($settingDefaulted ? ' checked="checked"' : '');
550 + $defaulted['no'] = ($settingDefaulted ? '' : ' checked="checked"');
551 + else :
552 + $defaulted['yes'] = (isset($checked[$defaultInputValue]) ? $checked[$defaultInputValue] : '');
553 + endif;
554 +
555 + if (isset($params['defaulted'])) :
556 + $defaulted['yes'] = ($params['defaulted'] ? ' checked="checked"' : '');
557 + $defaulted['no'] = ($params['defaulted'] ? '' : ' checked="checked"');
558 + endif;
559 +
560 + if ($offerSiteWide) :
561 + ?>
562 + <table class="twofer">
563 + <tbody>
564 + <tr><td class="equals first inactive">
565 + <ul class="options">
566 + <li><label><input type="radio"
567 + name="<?php print $defaultInputName; ?>"
568 + value="<?php print $defaultInputValue; ?>"
569 + <?php if (!is_null($defaultInputId)) : ?>id="<?php print $defaultInputId; ?>" <?php endif; ?>
570 + <?php print $defaulted['yes']; ?> />
571 + Use the site-wide setting</label>
572 + <span class="current-setting">Currently:
573 + <strong><?php if (is_callable($labels)) :
574 + print call_user_func($labels, $globalSetting, $defaulted, $params);
575 + else :
576 + print $labels[$globalSetting];
577 + endif; ?></strong> (<a href="<?php print $href; ?>">change</a>)</span></li>
578 + </ul></td>
579 +
580 + <td class="equals second inactive">
581 + <?php if ($defaultInputName != $inputName) : ?>
582 + <ul class="options">
583 + <li><label><input type="radio"
584 + name="<?php print $defaultInputName; ?>"
585 + value="no"
586 + <?php if (!is_null($defaultInputIdNo)) : ?>id="<?php print $defaultInputIdNo; ?>" <?php endif; ?>
587 + <?php print $defaulted['no']; ?> />
588 + <?php _e('Do something different with this feed.'); ?></label>
589 + <?php endif;
590 + endif;
591 +
592 + // Let's spit out the controls here.
593 + if (is_callable($options)) :
594 + // Method call to print out options list
595 + call_user_func($options, $setting, $defaulted, $params);
596 + else :
597 + ?>
598 + <ul class="options">
599 + <?php foreach ($options as $value => $label) : ?>
600 + <li><label><input type="radio" name="<?php print $inputName; ?>"
601 + value="<?php print $value; ?>"
602 + <?php print $checked[$value]; ?> />
603 + <?php print $label; ?></label></li>
604 + <?php endforeach; ?>
605 + </ul> <!-- class="options" -->
606 + <?php
607 + endif;
608 +
609 + if ($offerSiteWide) :
610 + if ($defaultInputName != $inputName) :
611 + // Close the <li> and <ul class="options"> we opened above
612 + ?>
613 + </li>
614 + </ul> <!-- class="options" -->
615 + <?php
616 + endif;
617 +
618 + // Close off the twofer table that we opened up above.
619 + ?>
620 + </td></tr>
621 + </tbody>
622 + </table>
623 + <?php
624 + endif;
625 + } /* FeedWordPressAdminPage::setting_radio_control () */
626 +
627 + function save_button ($caption = NULL) {
329 628 if (is_null($caption)) : $caption = __('Save Changes'); endif;
330 -?>
629 + ?>
331 630 <p class="submit">
332 631 <input class="button-primary" type="submit" name="save" value="<?php print $caption; ?>" />
333 632 </p>
334 -<?php
335 - endif;
336 -}
633 + <?php
634 + }
635 +} /* class FeedWordPressAdminPage */
337 636
338 637 function fwp_authors_single_submit ($link = NULL) {
339 - global $wp_db_version;
340 -
341 - if (fwp_test_wp_version(FWP_SCHEMA_25)) :
342 638 ?>
343 639 <div class="submitbox" id="submitlink">
344 640 <div id="previewview">
345 641 </div>
@@ -350,25 +646,16 @@
350 646 <input type="submit" name="save" value="<?php _e('Save') ?>" />
351 647 </p>
352 648 </div>
353 649 <?php
354 - endif;
355 650 }
356 651
357 652 function fwp_option_box_opener ($legend, $id, $class = "stuffbox") {
358 - // WordPress 2.5+
359 - if (FeedWordPressCompatibility::test_version(FWP_SCHEMA_25)) :
360 653 ?>
361 654 <div id="<?php print $id; ?>" class="<?php print $class; ?>">
362 655 <h3><?php print htmlspecialchars($legend); ?></h3>
363 656 <div class="inside">
364 657 <?php
365 - else :
366 -?>
367 - <div class="wrap">
368 - <h2><?php print htmlspecialchars($legend); ?></h2>
369 -<?php
370 - endif;
371 658 }
372 659
373 660 function fwp_option_box_closer () {
374 661 global $wp_db_version;
@@ -383,18 +670,16 @@
383 670 <?php
384 671 endif;
385 672 }
386 673
387 -function fwp_tags_box ($tags, $object) {
674 +function fwp_tags_box ($tags, $object, $params = array()) {
388 675 if (!is_array($tags)) : $tags = array(); endif;
389 -
676 + $tax_name = (isset($params['taxonomy']) ? $params['taxonomy'] : 'post_tag');
390 677 $desc = "<p style=\"font-size:smaller;font-style:bold;margin:0\">Tag $object as...</p>";
391 678
392 - if (fwp_test_wp_version(FWP_SCHEMA_29)) : // WordPress 2.9+
393 - print $desc;
394 - $tax_name = 'post_tag';
395 - $helps = __('Separate tags with commas.');
396 - $box['title'] = __('Tags');
679 + print $desc;
680 + $helps = __('Separate tags with commas.');
681 + $box['title'] = __('Tags');
397 682 ?>
398 683 <div class="tagsdiv" id="<?php echo $tax_name; ?>">
399 684 <div class="jaxtag">
400 685 <div class="nojs-tags hide-if-js">
@@ -403,104 +688,100 @@
403 688
404 689 <div class="ajaxtag hide-if-no-js">
405 690 <label class="screen-reader-text" for="new-tag-<?php echo $tax_name; ?>"><?php echo $box['title']; ?></label>
406 691 <div class="taghint"><?php _e('Add new tag'); ?></div>
692 + <p>
407 693 <input type="text" id="new-tag-<?php echo $tax_name; ?>" name="newtag[<?php echo $tax_name; ?>]" class="newtag form-input-tip" size="16" autocomplete="off" value="" />
408 694 <input type="button" class="button tagadd" value="<?php esc_attr_e('Add'); ?>" tabindex="3" />
695 + </p>
409 696 </div></div>
410 697 <p class="howto"><?php echo $helps; ?></p>
411 698 <div class="tagchecklist"></div>
412 699 </div>
413 700 <p class="hide-if-no-js"><a href="#titlediv" class="tagcloud-link" id="link-<?php echo $tax_name; ?>"><?php printf( __('Choose from the most used tags in %s'), $box['title'] ); ?></a></p>
414 -<?php
415 - elseif (fwp_test_wp_version(FWP_SCHEMA_28)) : // WordPress 2.8+
416 -?>
417 - <?php print $desc; ?>
418 - <div class="tagsdiv" id="post_tag">
419 - <div class="jaxtag">
420 - <div class="nojs-tags hide-if-js">
421 - <p><?php _e('Add or remove tags'); ?></p>
422 - <textarea name="tax_input[post_tag]" class="the-tags" id="tax-input[post_tag]"><?php echo implode(",", $tags); ?></textarea>
423 - </div>
424 -
425 - <span class="ajaxtag hide-if-no-js">
426 - <label class="screen-reader-text" for="new-tag-post_tag"><?php _e('Tags'); ?></label>
427 - <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'); ?>" />
428 - <input type="button" class="button tagadd" value="<?php esc_attr_e('Add'); ?>" />
429 - </span>
430 - </div>
431 - <p class="howto"><?php echo __('Separate tags with commas.'); ?></p>
432 - <div class="tagchecklist"></div>
433 - </div>
434 - <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>
435 - </div>
436 - </div>
437 -<?php
438 - else :
439 -?>
440 - <?php print $desc; ?>
441 - <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>
442 - <div id="tagchecklist"></div>
443 - </div>
444 - </div>
445 -<?php
446 - endif;
701 + <?php
447 702 }
448 703
449 -function fwp_category_box ($checked, $object, $tags = array()) {
704 +function fwp_category_box ($checked, $object, $tags = array(), $params = array()) {
450 705 global $wp_db_version;
451 706
452 - if (fwp_test_wp_version(FWP_SCHEMA_25)) : // WordPress 2.5.x
707 + if (is_string($params)) :
708 + $prefix = $params;
709 + $taxonomy = 'category';
710 + elseif (is_array($params)) :
711 + $prefix = (isset($params['prefix']) ? $params['prefix'] : '');
712 + $taxonomy = (isset($params['taxonomy']) ? $params['taxonomy'] : 'category');
713 + endif;
714 + $tax = get_taxonomy($taxonomy);
715 +
716 + if (strlen($prefix) > 0) :
717 + $idPrefix = $prefix.'-';
718 + $idSuffix = "-".$prefix;
719 + $namePrefix = $prefix . '_';
720 + else :
721 + $idPrefix = 'feedwordpress-';
722 + $idSuffix = "-feedwordpress";
723 + $namePrefix = 'feedwordpress_';
724 + endif;
725 +
453 726 ?>
454 -<div id="category-adder" class="wp-hidden-children">
455 - <h4><a id="category-add-toggle" href="#category-add" class="hide-if-no-js" tabindex="3"><?php _e( '+ Add New Category' ); ?></a></h4>
456 - <p id="category-add" class="wp-hidden-child">
457 - <input type="text" name="newcat" id="newcat" class="form-required form-input-tip" value="<?php _e( 'New category name' ); ?>" tabindex="3" />
458 - <?php wp_dropdown_categories( array( 'hide_empty' => 0, 'name' => 'newcat_parent', 'orderby' => 'name', 'hierarchical' => 1, 'show_option_none' => __('Parent category'), 'tab_index' => 3 ) ); ?>
459 - <input type="button" id="category-add-sumbit" class="add:categorychecklist:category-add button" value="<?php _e( 'Add' ); ?>" tabindex="3" />
460 - <?php wp_nonce_field( 'add-category', '_ajax_nonce', false ); ?>
461 - <span id="category-ajax-response"></span>
727 +<div id="<?php print $idPrefix; ?>taxonomy-<?php print $taxonomy; ?>" class="feedwordpress-category-div">
728 + <ul id="<?php print $idPrefix; ?><?php print $taxonomy; ?>-tabs" class="category-tabs">
729 + <li class="ui-tabs-selected tabs"><a href="#<?php print $idPrefix; ?><?php print $taxonomy; ?>-all" tabindex="3"><?php _e( 'All posts' ); ?></a>
730 + <p style="font-size:smaller;font-style:bold;margin:0">Give <?php print $object; ?> these <?php print $tax->labels->name; ?></p>
731 + </li>
732 + </ul>
733 +
734 +<div id="<?php print $idPrefix; ?><?php print $taxonomy; ?>-all" class="tabs-panel">
735 + <input type="hidden" value="0" name="tax_input[<?php print $taxonomy; ?>][]" />
736 + <ul id="<?php print $idPrefix; ?><?php print $taxonomy; ?>checklist" class="list:<?php print $taxonomy; ?> categorychecklist form-no-clear">
737 + <?php fwp_category_checklist(NULL, false, $checked, $params) ?>
738 + </ul>
739 +</div>
740 +
741 +<div id="<?php print $idPrefix; ?><?php print $taxonomy; ?>-adder" class="<?php print $taxonomy; ?>-adder wp-hidden-children">
742 + <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>
743 + <p id="<?php print $idPrefix; ?><?php print $taxonomy; ?>-add" class="category-add wp-hidden-child">
744 + <?php
745 + $newcat = 'new'.$taxonomy;
746 +
747 + // Well, thank God they added "egory" before WP 3.0 came out.
748 + if ('newcategory'==$newcat
749 + and !FeedWordPressCompatibility::test_version(FWP_SCHEMA_30)) :
750 + $newcat = 'newcat';
751 + endif;
752 + ?>
753 + <label class="screen-reader-text" for="<?php print $idPrefix; ?>new<?php print $taxonomy; ?>"><?php _e('Add New Category'); ?></label>
754 + <input
755 + id="<?php print $idPrefix; ?>new<?php print $taxonomy; ?>"
756 + class="new<?php print $taxonomy; ?> form-required form-input-tip"
757 + aria-required="true"
758 + tabindex="3"
759 + type="text" name="<?php print $newcat; ?>"
760 + value="<?php _e( 'New category name' ); ?>"
761 + />
762 + <label class="screen-reader-text" for="<?php print $idPrefix; ?>new<?php print $taxonomy; ?>-parent"><?php _e('Parent Category:'); ?></label>
763 + <?php wp_dropdown_categories( array(
764 + 'taxonomy' => $taxonomy,
765 + 'hide_empty' => 0,
766 + 'id' => $idPrefix.'new'.$taxonomy.'-parent',
767 + 'class' => 'new'.$taxonomy.'-parent',
768 + 'name' => $newcat.'_parent',
769 + 'orderby' => 'name',
770 + 'hierarchical' => 1,
771 + 'show_option_none' => __('Parent category'),
772 + 'tab_index' => 3,
773 + ) ); ?>
774 + <input type="button" id="<?php print $idPrefix; ?><?php print $taxonomy; ?>-add-sumbit" class="add:<?php print $idPrefix; ?><?php print $taxonomy; ?>checklist:<?php print $taxonomy; ?>-add add-categorychecklist-category-add button category-add-submit" value="<?php _e( 'Add' ); ?>" tabindex="3" />
775 + <?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 */ ?>
776 + <input type="hidden" id="_ajax_nonce<?php print esc_html($idSuffix); ?>" name="_ajax_nonce" value="<?php print wp_create_nonce('add-'.$taxonomy); ?>" />
777 + <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); ?>" />
778 + <span id="<?php print $idPrefix; ?><?php print $taxonomy; ?>-ajax-response" class="<?php print $taxonomy; ?>-ajax-response"></span>
462 779 </p>
463 780 </div>
464 781
465 -<ul id="category-tabs">
466 - <?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... */ ?>
467 - <li class="ui-tabs-selected tabs"><a href="#categories-all" tabindex="3"><?php _e( 'All posts' ); ?></a>
468 - <p style="font-size:smaller;font-style:bold;margin:0">Give <?php print $object; ?> these categories</p>
469 -</li>
470 -</ul>
471 -
472 -<?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... */ ?>
473 -<div id="categories-all" class="ui-tabs-panel tabs-panel">
474 - <ul id="categorychecklist" class="list:category categorychecklist form-no-clear">
475 - <?php fwp_category_checklist(NULL, false, $checked) ?>
476 - </ul>
477 782 </div>
478 783 <?php
479 - elseif (fwp_test_wp_version(FWP_SCHEMA_20)) : // WordPress 2.x
480 -?>
481 - <div id="moremeta" style="position: relative; right: auto">
482 - <div id="grabit" class="dbx-group">
483 - <fieldset id="categorydiv" class="dbx-box">
484 - <h3 class="dbx-handle"><?php _e('Categories') ?></h3>
485 - <div class="dbx-content">
486 - <p style="font-size:smaller;font-style:bold;margin:0">Place <?php print $object; ?> under...</p>
487 - <p id="jaxcat"></p>
488 - <div id="categorychecklist"><?php fwp_category_checklist(NULL, false, $checked); ?></div>
489 - </div>
490 - </fieldset>
491 - </div>
492 - </div>
493 -<?php
494 - else : // WordPress 1.5
495 -?>
496 - <fieldset style="width: 60%;">
497 - <legend><?php _e('Categories') ?></legend>
498 - <p style="font-size:smaller;font-style:bold;margin:0">Place <?php print $object; ?> under...</p>
499 - <div style="height: 10em; overflow: scroll;"><?php fwp_category_checklist(NULL, false, $checked); ?></div>
500 - </fieldset>
501 -<?php
502 - endif;
503 784 }
504 785
505 786 function update_feeds_mention ($feed) {
506 787 echo "<li>Updating <cite>".$feed['link/name']."</cite> from &lt;<a href=\""
@@ -507,9 +788,18 @@
507 788 .$feed['link/uri']."\">".$feed['link/uri']."</a>&gt; ...";
508 789 flush();
509 790 }
510 791 function update_feeds_finish ($feed, $added, $dt) {
511 - echo " completed in $dt second".(($dt==1)?'':'s')."</li>\n";
792 + if (is_wp_error($added)) :
793 + $mesgs = $added->get_error_messages();
794 + foreach ($mesgs as $mesg) :
795 + echo "<br/><strong>Feed error:</strong> <code>$mesg</code>";
796 + endforeach;
797 + echo "</li>\n";
798 + else :
799 + echo " completed in $dt second".(($dt==1)?'':'s')."</li>\n";
800 + endif;
801 + flush();
512 802 }
513 803
514 804 function fwp_author_list () {
515 805 global $wpdb;
@@ -514,20 +804,13 @@
514 804 function fwp_author_list () {
515 805 global $wpdb;
516 806 $ret = array();
517 807
518 - // display_name introduced in WP 2.0
519 - if (fwp_test_wp_version(FWP_SCHEMA_20)) :
520 - $name_column = 'display_name';
521 - else :
522 - $name_column = 'user_nickname';
523 - endif;
524 -
525 - $users = $wpdb->get_results("SELECT * FROM $wpdb->users ORDER BY {$name_column}");
808 + $users = $wpdb->get_results("SELECT * FROM $wpdb->users ORDER BY display_name");
526 809 if (is_array($users)) :
527 810 foreach ($users as $user) :
528 811 $id = (int) $user->ID;
529 - $ret[$id] = $user->{$name_column};
812 + $ret[$id] = $user->display_name;
530 813 if (strlen(trim($ret[$id])) == 0) :
531 814 $ret[$id] = $user->user_login;
532 815 endif;
533 816 endforeach;
@@ -535,63 +818,52 @@
535 818 return $ret;
536 819 }
537 820
538 821 class FeedWordPressSettingsUI {
539 - function instead_of_posts_box ($link_id = null) {
540 - if (!is_null($link_id)) :
541 - $from_this_feed = 'from this feed';
542 - $by_default = '';
543 - $id_param = "&amp;link_id=".$link_id;
544 - else :
545 - $from_this_feed = 'from syndicated feeds';
546 - $by_default = " by default";
547 - $id_param = "";
822 + function is_admin () {
823 + global $fwp_path;
824 +
825 + $admin_page = false; // Innocent until proven guilty
826 + if (isset($_REQUEST['page'])) :
827 + $admin_page = (
828 + is_admin()
829 + and preg_match("|^{$fwp_path}/|", $_REQUEST['page'])
830 + );
548 831 endif;
549 -?>
550 -<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>
551 -settings page to set up how new posts <?php print $from_this_feed; ?> will be published<?php $by_default; ?>, whether they will accept
552 -comments and pings, any custom fields that should be set on each post, etc.</p>
553 -<?php
554 - } /* FeedWordPressSettingsUI::instead_of_posts_box () */
832 + return $admin_page;
833 + }
555 834
556 - function instead_of_authors_box ($link_id = null) {
557 - if (!is_null($link_id)) :
558 - $from_this_feed = 'from this feed';
559 - $by_default = '';
560 - $id_param = "&amp;link_id=".$link_id;
561 - else :
562 - $from_this_feed = 'from syndicated feeds';
563 - $by_default = " by default";
564 - $id_param = "";
835 + function admin_scripts () {
836 + global $fwp_path;
837 +
838 + wp_enqueue_script('post'); // for magic tag and category boxes
839 + if (!FeedWordPressCompatibility::test_version(FWP_SCHEMA_29)) : // < 2.9
840 + wp_enqueue_script('thickbox'); // for fold-up boxes
565 841 endif;
842 + wp_enqueue_script('admin-forms'); // for checkbox selection
843 +
844 + wp_register_script('feedwordpress-elements', WP_PLUGIN_URL.'/'.$fwp_path.'/feedwordpress-elements.js');
845 + wp_enqueue_script('feedwordpress-elements');
846 + }
566 847
567 -?>
568 -<p>Use the <a
569 -href="admin.php?page=<?php print $GLOBALS['fwp_path']
570 -?>/authors-page.php<?php print $id_param; ?>"><?php _e('Authors');
571 -?></a> settings page to set up how new posts
572 -<?php print $from_this_feed; ?> will be assigned to
573 -authors.</p>
574 -<?php
575 - } /* FeedWordPressSettingsUI::instead_of_authors_box () */
848 + function admin_styles () {
849 + ?>
850 + <style type="text/css">
851 + .fwpfs {
852 + background-image: url(<?php print admin_url('images/fav.png'); ?>);
853 + background-repeat: repeat-x;
854 + background-position: left center;
855 + background-attachment: scroll;
856 + }
857 + .fwpfs.slide-down {
858 + background-image:url(<?php print admin_url('images/fav-top.png'); ?>);
859 + background-position:0 top;
860 + background-repeat:repeat-x;
861 + }
862 + </style>
863 + <?php
864 + } /* FeedWordPressSettingsUI::admin_styles () */
576 865
577 - function instead_of_categories_box ($link_id = null) {
578 - if (!is_null($link_id)) :
579 - $from_this_feed = 'from this feed';
580 - $by_default = '';
581 - $id_param = "&amp;link_id=".$link_id;
582 - else :
583 - $from_this_feed = 'from syndicated feeds';
584 - $by_default = " by default";
585 - $id_param = "";
586 - endif;
587 -
588 -?>
589 -<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>
590 -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>
591 -<?php
592 - } /* FeedWordPressSettingsUI::instead_of_categories_box () */
593 -
594 866 /*static*/ function ajax_nonce_fields () {
595 867 if (function_exists('wp_nonce_field')) :
596 868 echo "<form style='display: none' method='get' action=''>\n<p>\n";
597 869 wp_nonce_field( 'closedpostboxes', 'closedpostboxesnonce', false );
@@ -602,29 +874,17 @@
602 874
603 875 /*static*/ function fix_toggles_js ($context) {
604 876 ?>
605 877 <script type="text/javascript">
606 - jQuery(document).ready( function($) {
607 - <?php if (FeedWordPressCompatibility::test_version(FWP_SCHEMA_29)) : ?>
608 - if ( $('#post_tag').length ) {
609 - tagBox.init();
610 - }
611 - <?php endif; ?>
612 - <?php if (FeedWordPressCompatibility::test_version(FWP_SCHEMA_25, FWP_SCHEMA_27)) : ?>
613 - // In case someone got here first...
614 - jQuery('.postbox h3').unbind('click');
615 -
616 - add_postbox_toggles('<?php print $context; ?>');
617 - <?php elseif (FeedWordPressCompatibility::test_version(FWP_SCHEMA_27)) : ?>
618 - // In case someone got here first...
619 - $('.postbox h3, .postbox .handlediv').unbind('click');
620 - $('.postbox h3 a').unbind('click');
621 - $('.hide-postbox-tog').unbind('click');
622 - $('.columns-prefs input[type="radio"]').unbind('click');
623 - $('.meta-box-sortables').sortable('destroy');
878 + jQuery(document).ready( function($) {
879 + // In case someone got here first...
880 + $('.postbox h3, .postbox .handlediv').unbind('click');
881 + $('.postbox h3 a').unbind('click');
882 + $('.hide-postbox-tog').unbind('click');
883 + $('.columns-prefs input[type="radio"]').unbind('click');
884 + $('.meta-box-sortables').sortable('destroy');
624 885
625 - postboxes.add_postbox_toggles('<?php print $context; ?>');
626 - <?php endif; ?>
886 + postboxes.add_postbox_toggles('<?php print $context; ?>');
627 887 } );
628 888 </script>
629 889 <?php
630 890 } /* FeedWordPressSettingsUI::fix_toggles_js () */
@@ -629,9 +889,8 @@
629 889 <?php
630 890 } /* FeedWordPressSettingsUI::fix_toggles_js () */
631 891
632 892 function magic_input_tip_js ($id) {
633 - if (FeedWordPressCompatibility::test_version(FWP_SCHEMA_25)) :
634 893 ?>
635 894 <script type="text/javascript">
636 895 jQuery(document).ready( function () {
637 896 var inputBox = jQuery("#<?php print $id; ?>");
@@ -647,9 +906,8 @@
647 906 });
648 907 } );
649 908 </script>
650 909 <?php
651 - endif;
652 910 } /* FeedWordPressSettingsUI::magic_input_tip_js () */
653 911 } /* class FeedWordPressSettingsUI */
654 912
655 913 function fwp_insert_new_user ($newuser_name) {
@@ -658,23 +916,18 @@
658 916 $ret = null;
659 917 if (strlen($newuser_name) > 0) :
660 918 $userdata = array();
661 919 $userdata['ID'] = NULL;
920 + $userdata['user_login'] = apply_filters('pre_user_login', sanitize_user($newuser_name));
921 + $userdata['user_nicename'] = apply_filters('pre_user_nicename', sanitize_title($newuser_name));
922 + $userdata['display_name'] = $newuser_name;
923 + $userdata['user_pass'] = substr(md5(uniqid(microtime())), 0, 6); // just something random to lock it up
662 924
663 - $userdata['user_login'] = sanitize_user($newuser_name);
664 - $userdata['user_login'] = apply_filters('pre_user_login', $userdata['user_login']);
925 + $blahUrl = get_bloginfo('url'); $url = parse_url($blahUrl);
926 + $userdata['user_email'] = substr(md5(uniqid(microtime())), 0, 6).'@'.$url['host'];
665 927
666 - $userdata['user_nicename'] = sanitize_title($newuser_name);
667 - $userdata['user_nicename'] = apply_filters('pre_user_nicename', $userdata['user_nicename']);
668 -
669 - $userdata['display_name'] = $wpdb->escape($newuser_name);
670 -
671 928 $newuser_id = wp_insert_user($userdata);
672 - if (is_numeric($newuser_id)) :
673 - $ret = $newuser_id;
674 - else :
675 - // TODO: Add some error detection and reporting
676 - endif;
929 + $ret = $newuser_id; // Either a numeric ID or a WP_Error object
677 930 else :
678 931 // TODO: Add some error reporting
679 932 endif;
680 933 return $ret;
@@ -679,132 +932,175 @@
679 932 endif;
680 933 return $ret;
681 934 } /* fwp_insert_new_user () */
682 935
936 +/**
937 + * fwp_add_meta_box
938 + *
939 + * This function is no longer necessary, since no versions of WordPress that FWP
940 + * still supports lack add_meta_box(). But I've left it in place for the time
941 + * being for add-on modules that may have used it in setting up their UI.
942 + */
683 943 function fwp_add_meta_box ($id, $title, $callback, $page, $context = 'advanced', $priority = 'default', $callback_args = null) {
684 - if (function_exists('add_meta_box')) :
685 - return add_meta_box($id, $title, $callback, $page, $context, $priority, $callback_args);
686 - else :
687 - /* Re-used as per terms of the GPL from add_meta_box() in WordPress 2.8.1 wp-admin/includes/template.php. */
688 - global $wp_meta_boxes;
689 -
690 - if ( !isset($wp_meta_boxes) )
691 - $wp_meta_boxes = array();
692 - if ( !isset($wp_meta_boxes[$page]) )
693 - $wp_meta_boxes[$page] = array();
694 - if ( !isset($wp_meta_boxes[$page][$context]) )
695 - $wp_meta_boxes[$page][$context] = array();
696 -
697 - foreach ( array_keys($wp_meta_boxes[$page]) as $a_context ) {
698 - foreach ( array('high', 'core', 'default', 'low') as $a_priority ) {
699 - if ( !isset($wp_meta_boxes[$page][$a_context][$a_priority][$id]) )
700 - continue;
701 -
702 - // If a core box was previously added or removed by a plugin, don't add.
703 - if ( 'core' == $priority ) {
704 - // If core box previously deleted, don't add
705 - if ( false === $wp_meta_boxes[$page][$a_context][$a_priority][$id] )
706 - return;
707 - // If box was added with default priority, give it core priority to maintain sort order
708 - if ( 'default' == $a_priority ) {
709 - $wp_meta_boxes[$page][$a_context]['core'][$id] = $wp_meta_boxes[$page][$a_context]['default'][$id];
710 - unset($wp_meta_boxes[$page][$a_context]['default'][$id]);
711 - }
712 - return;
713 - }
714 - // If no priority given and id already present, use existing priority
715 - if ( empty($priority) ) {
716 - $priority = $a_priority;
717 - // 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.
718 - } elseif ( 'sorted' == $priority ) {
719 - $title = $wp_meta_boxes[$page][$a_context][$a_priority][$id]['title'];
720 - $callback = $wp_meta_boxes[$page][$a_context][$a_priority][$id]['callback'];
721 - $callback_args = $wp_meta_boxes[$page][$a_context][$a_priority][$id]['args'];
722 - }
723 - // An id can be in only one priority and one context
724 - if ( $priority != $a_priority || $context != $a_context )
725 - unset($wp_meta_boxes[$page][$a_context][$a_priority][$id]);
726 - }
727 - }
728 -
729 - if ( empty($priority) )
730 - $priority = 'low';
731 -
732 - if ( !isset($wp_meta_boxes[$page][$context][$priority]) )
733 - $wp_meta_boxes[$page][$context][$priority] = array();
734 -
735 - $wp_meta_boxes[$page][$context][$priority][$id] = array('id' => $id, 'title' => $title, 'callback' => $callback, 'args' => $callback_args);
736 - endif;
944 + return add_meta_box($id, $title, $callback, $page, $context, $priority, $callback_args);
737 945 } /* function fwp_add_meta_box () */
738 946
739 947 function fwp_do_meta_boxes($page, $context, $object) {
740 - if (function_exists('do_meta_boxes')) :
741 - $ret = do_meta_boxes($page, $context, $object);
948 + $ret = do_meta_boxes($page, $context, $object);
742 949
743 - // Avoid JavaScript error from WordPress 2.5 bug
950 + // Avoid JavaScript error from WordPress 2.5 bug
744 951 ?>
745 952 <div style="display: none">
746 953 <div id="tags-input"></div> <!-- avoid JS error from WP 2.5 bug -->
747 954 </div>
748 955 <?php
749 - return $ret;
750 - else :
751 - /* Derived as per terms of the GPL from do_meta_boxes() in WordPress 2.8.1 wp-admin/includes/template.php. */
752 - global $wp_meta_boxes;
753 - static $already_sorted = false;
754 -
755 - //do_action('do_meta_boxes', $page, $context, $object);
756 -
757 - echo "<div id='$context-sortables' class='meta-box-sortables'>\n";
758 -
759 - $i = 0;
760 - do {
761 - if ( !isset($wp_meta_boxes) || !isset($wp_meta_boxes[$page]) || !isset($wp_meta_boxes[$page][$context]) )
762 - break;
763 -
764 - foreach ( array('high', 'sorted', 'core', 'default', 'low') as $priority ) {
765 - if ( isset($wp_meta_boxes[$page][$context][$priority]) ) {
766 - foreach ( (array) $wp_meta_boxes[$page][$context][$priority] as $box ) {
767 - if ( false == $box || ! $box['title'] )
768 - continue;
769 - $i++;
770 - fwp_option_box_opener($box['title'], $box['id'], 'postbox' /*. postbox_classes($box['id'], $page)*/);
771 - call_user_func($box['callback'], $object, $box);
772 - fwp_option_box_closer();
773 -
774 - if (is_object($object) and method_exists($object, 'interstitial')) :
775 - $object->interstitial();
776 - else :
777 - // Submit button for WP 1.5, early 2.x style
778 - fwp_settings_form_periodic_submit();
779 - endif;
780 - }
781 - }
782 - }
783 - } while(0);
784 -
785 - echo "</div>";
786 -
787 - return $i;
788 - endif;
956 + return $ret;
789 957 } /* function fwp_do_meta_boxes() */
790 958
791 959 function fwp_remove_meta_box($id, $page, $context) {
792 - if (function_exists('remove_meta_box')) :
793 - return remove_meta_box($id, $page, $context);
794 - else :
795 - /* Re-used as per terms of the GPL from remove_meta_box() in WordPress 2.8.1 wp-admin/includes/template.php */
796 - global $wp_meta_boxes;
960 + return remove_meta_box($id, $page, $context);
961 +} /* function fwp_remove_meta_box() */
962 +
963 +function fwp_syndication_manage_page_links_table_rows ($links, $page, $visible = 'Y') {
964 + global $fwp_path;
797 965
798 - if ( !isset($wp_meta_boxes) )
799 - $wp_meta_boxes = array();
800 - if ( !isset($wp_meta_boxes[$page]) )
801 - $wp_meta_boxes[$page] = array();
802 - if ( !isset($wp_meta_boxes[$page][$context]) )
803 - $wp_meta_boxes[$page][$context] = array();
804 -
805 - foreach ( array('high', 'core', 'default', 'low') as $priority )
806 - $wp_meta_boxes[$page][$context][$priority][$id] = false;
966 + $subscribed = ('Y' == strtoupper($visible));
967 + if ($subscribed or (count($links) > 0)) :
968 + ?>
969 + <table class="widefat<?php if (!$subscribed) : ?> unsubscribed<?php endif; ?>">
970 + <thead>
971 + <tr>
972 + <th class="check-column" scope="col"><input type="checkbox" /></th>
973 + <th scope="col"><?php _e('Name'); ?></th>
974 + <th scope="col"><?php _e('Feed'); ?></th>
975 + <th scope="col"><?php _e('Updated'); ?></th>
976 + </tr>
977 + </thead>
978 +
979 + <tbody>
980 +<?php
981 + $alt_row = true;
982 + if (count($links) > 0):
983 + foreach ($links as $link):
984 + $trClass = array();
985 +
986 + // Prep: Get last updated timestamp
987 + $sLink = new SyndicatedLink($link->link_id);
988 + if (!is_null($sLink->setting('update/last'))) :
989 + $lastUpdated = fwp_time_elapsed($sLink->setting('update/last'));
990 + else :
991 + $lastUpdated = __('None yet');
992 + endif;
993 +
994 + // Prep: get last error timestamp, if any
995 + if (is_null($sLink->setting('update/error'))) :
996 + $errorsSince = '';
997 + else :
998 + $trClass[] = 'feed-error';
999 +
1000 + $theError = unserialize($sLink->setting('update/error'));
1001 +
1002 + $errorsSince = "<div class=\"returning-errors\">"
1003 + ."<p><strong>Returning errors</strong> since "
1004 + .fwp_time_elapsed($theError['since'])
1005 + ."</p>"
1006 + ."<p>Most recent ("
1007 + .fwp_time_elapsed($theError['ts'])
1008 + ."):<br/><code>"
1009 + .implode("</code><br/><code>", $theError['object']->get_error_messages())
1010 + ."</code></p>"
1011 + ."</div>\n";
1012 + endif;
1013 +
1014 + $nextUpdate = "<div style='font-style:italic;size:0.9em'>Ready for next update ";
1015 + if (isset($sLink->settings['update/ttl']) and is_numeric($sLink->settings['update/ttl'])) :
1016 + if (isset($sLink->settings['update/timed']) and $sLink->settings['update/timed']=='automatically') :
1017 + $next = $sLink->settings['update/last'] + ((int) $sLink->settings['update/ttl'] * 60);
1018 + $nextUpdate .= fwp_time_elapsed($next);
1019 + if (FEEDWORDPRESS_DEBUG) : $nextUpdate .= " [".(($next-time())/60)." minutes]"; endif;
1020 + else :
1021 + $nextUpdate .= "every ".$sLink->settings['update/ttl']." minute".(($sLink->settings['update/ttl']!=1)?"s":"");
1022 + endif;
1023 + else:
1024 + $nextUpdate .= "as soon as possible";
1025 + endif;
1026 + $nextUpdate .= "</div>";
1027 +
1028 + unset($sLink);
1029 +
1030 + $alt_row = !$alt_row;
1031 +
1032 + if ($alt_row) :
1033 + $trClass[] = 'alternate';
1034 + endif;
1035 + ?>
1036 + <tr<?php echo ((count($trClass) > 0) ? ' class="'.implode(" ", $trClass).'"':''); ?>>
1037 + <th class="check-column" scope="row"><input type="checkbox" name="link_ids[]" value="<?php echo $link->link_id; ?>" /></th>
1038 + <?php
1039 + $hrefPrefix = "admin.php?link_id={$link->link_id}&amp;page=${fwp_path}/";
1040 + $caption = (
1041 + (strlen($link->link_rss) > 0)
1042 + ? __('Switch Feed')
1043 + : $caption=__('Find Feed')
1044 + );
1045 + ?>
1046 + <td>
1047 + <strong><a href="<?php print $hrefPrefix; ?>feeds-page.php"><?php print esc_html($link->link_name); ?></a></strong>
1048 + <div class="row-actions"><?php if ($subscribed) :
1049 + $page->display_feed_settings_page_links(array(
1050 + 'before' => '<div><strong>Settings &gt;</strong> ',
1051 + 'after' => '</div>',
1052 + 'subscription' => $link,
1053 + ));
1054 + endif; ?>
1055 +
1056 + <div><strong>Actions &gt;</strong>
1057 + <?php if ($subscribed) : ?>
1058 + <a href="<?php print $hrefPrefix; ?>syndication.php&amp;action=feedfinder"><?php echo $caption; ?></a>
1059 + <?php else : ?>
1060 + <a href="<?php print $hrefPrefix; ?>syndication.php&amp;action=<?php print FWP_RESUB_CHECKED; ?>"><?php _e('Re-subscribe'); ?></a>
1061 + <?php endif; ?>
1062 + | <a href="<?php print $hrefPrefix; ?>syndication.php&amp;action=Unsubscribe"><?php _e(($subscribed ? 'Unsubscribe' : 'Delete permanently')); ?></a>
1063 + | <a href="<?php print esc_html($link->link_url); ?>"><?php _e('View')?></a></div>
1064 + </div>
1065 + </td>
1066 + <?php if (strlen($link->link_rss) > 0): ?>
1067 + <td><a href="<?php echo esc_html($link->link_rss); ?>"><?php echo esc_html(feedwordpress_display_url($link->link_rss, 32)); ?></a></td>
1068 + <?php else: ?>
1069 + <td class="feed-missing"><p><strong>no feed assigned</strong></p></td>
1070 + <?php endif; ?>
1071 +
1072 + <td><?php print $lastUpdated; ?>
1073 + <?php print $errorsSince; ?>
1074 + <?php print $nextUpdate; ?>
1075 + </td>
1076 + </tr>
1077 + <?php
1078 + endforeach;
1079 + else :
1080 +?>
1081 +<tr><td colspan="4"><p>There are no websites currently listed for syndication.</p></td></tr>
1082 +<?php
1083 + endif;
1084 +?>
1085 +</tbody>
1086 +</table>
1087 + <?php
807 1088 endif;
808 -} /* function fwp_remove_meta_box() */
1089 +} /* function fwp_syndication_manage_page_links_table_rows () */
809 1090
1091 +function fwp_syndication_manage_page_links_subsubsub ($sources, $showInactive) {
1092 + global $fwp_path;
1093 + $hrefPrefix = "admin.php?page=${fwp_path}/syndication.php";
1094 + ?>
1095 + <ul class="subsubsub">
1096 + <li><a <?php if (!$showInactive) : ?>class="current" <?php endif; ?>href="<?php print $hrefPrefix; ?>&amp;visibility=Y">Subscribed
1097 + <span class="count">(<?php print count($sources['Y']); ?>)</span></a></li>
1098 + <?php if ($showInactive or (count($sources['N']) > 0)) : ?>
1099 + <li><a <?php if ($showInactive) : ?>class="current" <?php endif; ?>href="<?php print $hrefPrefix; ?>&amp;visibility=N">Inactive</a>
1100 + <span class="count">(<?php print count($sources['N']); ?>)</span></a></li>
1101 + <?php endif; ?>
1102 +
1103 + </ul> <!-- class="subsubsub" -->
1104 + <?php
1105 +}
810 1106