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 +989 -641 trunk2010.0905 View file →
@@ -1,164 +1,642 @@
1 1 <?php
2 -/**
3 - * Admin UI Compatibility (admin-ui.php): This is kind of a junk pile of utility functions
4 - * mostly created to smooth out interactions to make things show up, or behave correctly,
5 - * within the WordPress admin settings interface. Major chunks of this code that deal with
6 - * making it easy for FWP, add-on modules, etc. to create new settings panels have since
7 - * been hived off into class FeedWordPressAdminPage. Many of the functions that remain here
8 - * were created to handle compatibility across multiple, sometimes very old, versions of
9 - * WordPress, many of which are no longer supported anymore. It's likely that some of these
10 - * functions will be re-evaluated, re-organized, deprecated, or clipped out in the next few
11 - * versions.
12 - * -cj 2017-10-27
13 - *
14 - * @package FeedWordPress
15 - */
2 +class FeedWordPressAdminPage {
3 + var $context;
4 + var $updated = false;
5 + var $link = NULL;
6 + var $dispatch = NULL;
7 + var $filename = NULL;
8 + var $pagenames = array();
16 9
17 -$dir = dirname( __FILE__ );
18 -require_once "{$dir}/feedwordpressadminpage.class.php";
19 -require_once "{$dir}/feedwordpresssettingsui.class.php";
10 + /**
11 + * Construct the admin page object.
12 + *
13 + * @param mixed $link An object of class {@link SyndicatedLink} if created for one feed's settings, NULL if created for global default settings
14 + */
15 + function FeedWordPressAdminPage ($page = 'feedwordpressadmin', $link = NULL) {
16 + $this->link = $link;
20 17
21 -/**
22 - * Prints the class="..." attribute (if any) for an HTML form element
23 - *
24 - * If there is at least one class to add to the element, escape it for attribute contet and print;
25 - * if not, omit the attribute entirely.
26 - *
27 - * @param string $class_name The name(s) of the HTML class or classes to apply.
28 - * @param string $before Separator prefix string to print just before class="..." attribute, when printed (usually whitespace).
29 - * @param string $after Separator suffix string to print just after class="..." attribute, when printed (usually blank).
30 - */
31 -function fwp_form_class_attr( $class_name, $before = ' ', $after = '' ) {
18 + // Set meta-box context name
19 + $this->context = $page;
20 + if ($this->for_feed_settings()) :
21 + $this->context .= 'forfeed';
22 + endif;
23 + } /* FeedWordPressAdminPage constructor */
32 24
33 - if ( is_string( $class_name ) ) :
34 - if ( strlen( $class_name ) > 0 ) :
35 - $s_class_name = sanitize_html_class( $class_name );
36 - printf( '%sclass="%s"%s', esc_html( $before ), esc_attr( $s_class_name ), esc_html( $after ) );
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';
37 33 endif;
38 - endif;
39 34
40 -} /* fwp_form_class_attr() */
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 () */
41 44
42 -/**
43 - * Prints a flag attribute for selected UI elements (selected="selected" or checked="checked", etc.) when appropriate
44 - *
45 - * In HTML form output templates, this allows conditional output of the selected="selected"
46 - * (or checked="checked", etc.) attribute on input or option controls when appropriate, and
47 - * omits the element when not appropriate, as measured by a flag that is monitored and updated
48 - * by the caller.
49 - *
50 - * @param mixed $arg Flag monitoring variable.
51 - * @param mixed $key When $arg is an array, $key provides the index within the array to check for the flag.
52 - * @param string $flag The name of the flag attribute to output when appropriate; default, "selected".
53 - */
54 -function fwp_selected_flag( /* mixed */ $arg = null, $key = null, $flag = 'selected' ) {
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 + }
55 51
56 - $is_on = false;
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 () */
57 67
58 - $s_arg = $arg;
59 - if ( is_array( $arg ) && ! is_null( $key ) ) :
60 - if ( array_key_exists( $key, $arg ) ) :
61 - $s_arg = $arg[ $key ];
68 + function for_feed_settings () { return (is_object($this->link) and method_exists($this->link, 'found') and $this->link->found()); }
69 + function for_default_settings () { return !$this->for_feed_settings(); }
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);
62 75 else :
63 - $s_arg = false;
76 + $feed_name = $names['feed'];
77 + $global_name = 'feedwordpress_'.$names['global'];
64 78 endif;
65 - 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 () */
66 86
67 - if ( is_string( $s_arg ) ) :
68 - $is_on = ( strlen( $s_arg ) > 0 );
69 - else :
70 - $is_on = (bool) ( $s_arg );
71 - endif;
87 + function save_requested_in ($post) {
88 + return (isset($post['save']) or isset($post['submit']));
89 + }
72 90
73 - if ( $is_on ) :
74 - print sprintf( '%s="%s"', esc_attr( $flag ), esc_attr( $flag ) );
75 - endif;
76 -} /* fwp_selected_flag() */
91 + /*static*/ function submitted_link_id () {
92 + global $fwp_post;
77 93
78 -/**
79 - * Outputs a flag attribute for checked UI elements (checked="checked") when appropriate
80 - *
81 - * In HTML form output templates, this allows conditional output of the check="checked"
82 - * attribute on input controls (e.g. checkbox, radio) when appropriate, and omits when
83 - * inappropriate (unchecked), as determined by a flag monitored and updated by caller.
84 - *
85 - * @param mixed $arg Flag monitoring variable.
86 - * @param mixed $key When $arg is an array, $key provides index within the array to check for flag value.
87 - *
88 - * @uses fwp_selected_flag()
89 - */
90 -function fwp_checked_flag( /* mixed */ $arg = null, $key = null ) {
91 - fwp_selected_flag( $arg, $key, 'checked' );
92 -} /* fwp_checked_flag() */
94 + // Presume global unless we get a specific link ID
95 + $link_id = NULL;
93 96
94 -if ( ! function_exists( '_s' ) ) :
95 -/**
96 - * Retrieves a plural or singular form of a string based on the supplied number.
97 - *
98 - * Used when you want to use the appropriate form of a string based on whether
99 - * a number is singular or plural. Very similar to WordPress l10n.php _n(),
100 - * but designed for a nice short form in the
101 - * default case (provide "s" when plural, "" otherwise).
102 - *
103 - * @note This function *may* have been defined elsewhere; also, consider
104 - * using WordPress's own `_n()` function and derivatives. (gwyneth 20230920)
105 - *
106 - * @param int $n The counter to determine singular or plural form.
107 - * @param string $plural The text to use if the counter is plural.
108 - * @param string $singular The text to use if the counter is singular.
109 - *
110 - * @return string The text of the singular or plural form.
111 - */
112 -function _s( $n = 0, $plural = 's', $singular = '' ) {
113 - $is_singular = ( is_numeric( $n ) && intval( $n ) === 1 );
114 - return ( $is_singular ? $singular : $plural );
115 -} /* _s() */
116 -endif;
97 + $submit_buttons = array(
98 + 'save',
99 + 'submit',
100 + 'fix_mismatch',
101 + 'feedfinder',
102 + );
103 + foreach ($submit_buttons as $field) :
104 + if (isset($fwp_post[$field])) :
105 + $link_id = $_REQUEST['save_link_id'];
106 + endif;
107 + endforeach;
108 +
109 + if (is_null($link_id) and isset($_REQUEST['link_id'])) :
110 + $link_id = $_REQUEST['link_id'];
111 + endif;
117 112
118 -/**
119 - * Outputs a status message for the aggregate results of polling a set of feeds.
120 - *
121 - * This will always output the number of new syndicated posts added, even if this is 0.
122 - * Posts updated and alternate versions stored will be added to the message iff > 0.
123 - *
124 - * @param array $delta Counters indicating results in "new", "updated" and "stored".
125 - * @param string $joiner Default ';'. Delimiter used to separate messages about new, updated and stored posts.
126 - */
127 -function fwp_update_set_results_message( $delta, $joiner = ';' ) {
113 + return $link_id;
114 + } /* FeedWordPressAdminPage::submitted_link_id() */
128 115
129 - $mesg = array();
116 + /*static*/ function submitted_link () {
117 + $link_id = FeedWordPressAdminPage::submitted_link_id();
118 + if (is_numeric($link_id) and $link_id) :
119 + $link = new SyndicatedLink($link_id);
120 + else :
121 + $link = NULL;
122 + endif;
123 + return $link;
124 + } /* FeedWordPressAdminPage::submitted_link () */
130 125
131 - $delta = wp_parse_args(
132 - $delta,
133 - array(
134 - 'new' => 0,
135 - 'updated' => 0,
136 - 'stored' => 0,
137 - )
138 - );
126 + function stamp_link_id ($field = null) {
127 + if (is_null($field)) : $field = 'save_link_id'; endif;
128 + ?>
129 + <input type="hidden" name="<?php print esc_html($field); ?>" value="<?php print ($this->for_feed_settings() ? $this->link->id : '*'); ?>" />
130 + <?php
131 + } /* FeedWordPressAdminPage::stamp_link_id () */
139 132
140 - $mesg[] = sprintf( ' %d new post%s syndicated', intval( $delta['new'] ), _s( $delta['new'], 's were', ' was' ) );
141 - if ( $delta['updated'] > 0 ) :
142 - $mesg[] = sprintf( ' %d existing post%s updated', intval( $delta['updated'] ), _s( $delta['updated'], 's were', ' was' ) );
143 - endif;
144 - if ( $delta['stored'] > 0 ) :
145 - $mesg[] = sprintf( ' %d alternate version%s of existing post%s stored for reference', intval( $delta['stored'] ), _s( $delta['stored'] ), _s( $delta['stored'], 's were', ' was' ) );
146 - endif;
133 + function these_posts_phrase () {
134 + if ($this->for_feed_settings()) :
135 + $phrase = __('posts from this feed');
136 + else :
137 + $phrase = __('syndicated posts');
138 + endif;
139 + return $phrase;
140 + } /* FeedWordPressAdminPage::these_posts_phrase() */
147 141
148 - if ( ! is_null( $joiner ) ) :
149 - $mesg = implode( $joiner, $mesg );
150 - endif;
151 - return $mesg;
152 -} /* function fwp_update_set_results_message() */
142 + /**
143 + * Provides a uniquely identifying name for the interface context for
144 + * use with add_meta_box() and do_meta_boxes(),
145 + *
146 + * @return string the context name
147 + *
148 + * @see add_meta_box()
149 + * @see do_meta_boxes()
150 + */
151 + function meta_box_context () {
152 + return $this->context;
153 + } /* FeedWordPressAdminPage::meta_box_context () */
154 +
155 + /**
156 + * Outputs JavaScript to fix AJAX toggles settings.
157 + *
158 + * @uses FeedWordPressAdminPage::meta_box_context()
159 + */
160 + function fix_toggles () {
161 + FeedWordPressSettingsUI::fix_toggles_js($this->meta_box_context());
162 + } /* FeedWordPressAdminPage::fix_toggles() */
153 163
154 -/**
155 - * Outputs the HTML template for a "Submit" button on FWP admin pages.
156 - *
157 - * @param mixed $link The syndicated link, if any, that we are viewing settings for. (Unused)
158 - */
159 -function fwp_authors_single_submit( $link = null ) {
160 - ?>
164 + function ajax_interface_js () {
165 +?>
166 + function contextual_appearance (item, appear, disappear, value, visibleStyle, checkbox) {
167 + if (typeof(visibleStyle)=='undefined') visibleStyle = 'block';
168 +
169 + var rollup=document.getElementById(item);
170 + if (rollup) {
171 + if ((checkbox && rollup.checked) || (!checkbox && value==rollup.value)) {
172 + jQuery('#'+disappear).hide();
173 + jQuery('#'+appear).show(600);
174 + } else {
175 + jQuery('#'+appear).hide();
176 + jQuery('#'+disappear).show(600);
177 + }
178 + }
179 + }
180 +<?php
181 + } /* FeedWordPressAdminPage::ajax_interface_js () */
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 +
254 + function display_feed_select_dropdown() {
255 + $links = FeedWordPress::syndicated_links();
256 +
257 + ?>
258 + <div id="fwpfs-container"><ul class="subsubsub">
259 + <li><select name="link_id" class="fwpfs" style="max-width: 20.0em;">
260 + <option value="*"<?php if ($this->for_default_settings()) : ?> selected="selected"<?php endif; ?>>- defaults for all feeds -</option>
261 + <?php if ($links) : foreach ($links as $ddlink) : ?>
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>
263 + <?php endforeach; endif; ?>
264 + </select>
265 + <input class="button" type="submit" name="go" value="<?php _e('Go') ?> &raquo;" /></li>
266 +
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
278 + } /* FeedWordPressAdminPage::display_feed_select_dropdown() */
279 +
280 + function display_sheet_header ($pagename = 'Syndication', $all = false) {
281 + ?>
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>
284 + <?php
285 + }
286 +
287 + function display_update_notice_if_updated ($pagename = 'Syndication', $mesg = NULL) {
288 + if ($this->updated) :
289 + if ($this->updated === true) :
290 + $mesg = $pagename . ' settings updated.';
291 + else :
292 + $mesg = $this->updated;
293 + endif;
294 + endif;
295 +
296 + if (!is_null($mesg)) :
297 + ?>
298 + <div class="updated">
299 + <p><?php print esc_html($mesg); ?></p>
300 + </div>
301 + <?php
302 + endif;
303 + } /* FeedWordPressAdminPage::display_update_notice_if_updated() */
304 +
305 + function display_settings_scope_message () {
306 + if ($this->for_feed_settings()) :
307 + ?>
308 + <p>These settings only affect posts syndicated from
309 + <strong><?php echo esc_html($this->link->link->link_name); ?></strong>.</p>
310 + <?php
311 + else :
312 + ?>
313 + <p>These settings affect posts syndicated from any feed unless they are overridden
314 + by settings for that specific feed.</p>
315 + <?php
316 + endif;
317 + } /* FeedWordPressAdminPage::display_settings_scope_message () */
318 +
319 + /*static*/ function has_link () { return true; }
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 +
393 + function open_sheet ($header) {
394 + // Set up prepatory AJAX stuff
395 + ?>
396 + <script type="text/javascript">
397 + <?php
398 + $this->ajax_interface_js();
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();
409 +
410 + ?>
411 + <div class="wrap feedwordpress-admin" id="feedwordpress-admin-<?php print $this->pageslug(); ?>">
412 + <?php
413 + if (!is_null($header)) :
414 + $this->display_sheet_header($header);
415 + endif;
416 +
417 + if (!is_null($this->dispatch)) :
418 + ?>
419 + <form action="<?php print $this->form_action(); ?>" method="post">
420 + <div><?php
421 + FeedWordPressCompatibility::stamp_nonce($this->dispatch);
422 + $this->stamp_link_id();
423 + ?></div>
424 + <?php
425 + endif;
426 +
427 + if ($this->has_link()) :
428 + $this->display_settings_scope_message();
429 + endif;
430 +
431 + ?><div class="tablenav"><?php
432 + if (!is_null($this->dispatch)) :
433 + ?><div class="alignright"><?php
434 + $this->save_button();
435 + ?></div><?php
436 + endif;
437 +
438 + if ($this->has_link()) :
439 + $this->display_feed_select_dropdown();
440 + endif;
441 + ?>
442 + </div>
443 +
444 + <div id="poststuff">
445 + <?php
446 + } /* FeedWordPressAdminPage::open_sheet () */
447 +
448 + function close_sheet () {
449 + ?>
450 +
451 + </div> <!-- id="poststuff" -->
452 + <?php
453 + if (!is_null($this->dispatch)) :
454 + $this->save_button();
455 + print "</form>\n";
456 + endif;
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;
481 +
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;
506 +
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;
519 +
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));
531 +
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) {
628 + if (is_null($caption)) : $caption = __('Save Changes'); endif;
629 + ?>
630 +<p class="submit">
631 +<input class="button-primary" type="submit" name="save" value="<?php print $caption; ?>" />
632 +</p>
633 + <?php
634 + }
635 +} /* class FeedWordPressAdminPage */
636 +
637 +function fwp_authors_single_submit ($link = NULL) {
638 +?>
161 639 <div class="submitbox" id="submitlink">
162 640 <div id="previewview">
163 641 </div>
164 642 <div class="inside">
@@ -164,595 +642,465 @@
164 642 <div class="inside">
165 643 </div>
166 644
167 645 <p class="submit">
168 -<input type="submit" name="save" value="<?php esc_html_e( 'Save' ); ?>" />
646 +<input type="submit" name="save" value="<?php _e('Save') ?>" />
169 647 </p>
170 648 </div>
171 - <?php
172 -} /* function fwp_authors_single_submit() */
649 +<?php
650 +}
173 651
174 -/**
175 - * Outputs the HTML template for a Tags (or similar taxonomy) add / remove box in FeedWordPress admin UI pages.
176 - *
177 - * @param array $tags An array of tags already applied to the object.
178 - * @param string $object The human-readable description of the objects to be tagged ("post", "posts from this feed", etc.).
179 - * @param array $params An array of optional parameters.
180 - */
181 -function fwp_tags_box( $tags, $object, $params = array() ) {
182 - $params = wp_parse_args(
183 - $params,
184 - array( // Default values.
185 - 'taxonomy' => 'post_tag',
186 - 'textarea_name' => null,
187 - 'textarea_id' => null,
188 - 'input_id' => null,
189 - 'input_name' => null,
190 - 'id' => null,
191 - 'box_title' => __( 'Post Tags' ),
192 - )
193 - );
652 +function fwp_option_box_opener ($legend, $id, $class = "stuffbox") {
653 +?>
654 +<div id="<?php print $id; ?>" class="<?php print $class; ?>">
655 +<h3><?php print htmlspecialchars($legend); ?></h3>
656 +<div class="inside">
657 +<?php
658 +}
194 659
195 - if ( ! is_array( $tags ) ) :
196 - $tags = array();
660 +function fwp_option_box_closer () {
661 + global $wp_db_version;
662 + if (isset($wp_db_version) and $wp_db_version >= FWP_SCHEMA_25) :
663 +?>
664 + </div> <!-- class="inside" -->
665 + </div> <!-- class="stuffbox" -->
666 +<?php
667 + else :
668 +?>
669 + </div> <!-- class="wrap" -->
670 +<?php
197 671 endif;
672 +}
198 673
199 - $tax_name = $params['taxonomy'];
200 - $o_tax = get_taxonomy( $params['taxonomy'] );
201 - $o_tax_labels = get_taxonomy_labels( $o_tax );
202 - $is_enabled = current_user_can( $o_tax->cap->assign_terms );
674 +function fwp_tags_box ($tags, $object, $params = array()) {
675 + if (!is_array($tags)) : $tags = array(); endif;
676 + $tax_name = (isset($params['taxonomy']) ? $params['taxonomy'] : 'post_tag');
677 + $desc = "<p style=\"font-size:smaller;font-style:bold;margin:0\">Tag $object as...</p>";
203 678
204 - if ( is_null( $params['textarea_name'] ) ) :
205 - $params['textarea_name'] = "tax_input[$tax_name]";
206 - endif;
207 - if ( is_null( $params['textarea_id'] ) ) :
208 - $params['textarea_id'] = "tax-input-{$tax_name}";
209 - endif;
210 - if ( is_null( $params['input_id'] ) ) :
211 - $params['input_id'] = "new-tag-{$tax_name}";
212 - endif;
213 - if ( is_null( $params['input_name'] ) ) :
214 - $params['input_name'] = "newtag[$tax_name]";
215 - endif;
216 - if ( is_null( $params['id'] ) ) :
217 - $params['id'] = $tax_name;
218 - endif;
219 -
220 - printf( /* $desc = */ '<p style="font-size:smaller;font-style:bold;margin:0\">' . esc_html__( 'Tag' ) . ' %s '
221 - . esc_html__( 'as' ) . '...</p>', esc_html( $object ) );
222 - $helps = __( 'Separate tags with commas.' );
223 - $box['title'] = __( 'Tags' );
679 + print $desc;
680 + $helps = __('Separate tags with commas.');
681 + $box['title'] = __('Tags');
224 682 ?>
225 -<div class="tagsdiv" id="<?php echo esc_attr( $params['id'] ); ?>">
226 - <div class="jaxtag">
227 - <div class="nojs-tags hide-if-js">
228 - <p><?php echo esc_html( $o_tax_labels->add_or_remove_items ); ?></p>
229 - <textarea name="<?php echo esc_attr( $params['textarea_name'] ); ?>" class="the-tags" id="<?php echo esc_attr( $params['textarea_id'] ); ?>"><?php echo esc_attr( implode( ',', $tags ) ); ?></textarea></div>
683 + <div class="tagsdiv" id="<?php echo $tax_name; ?>">
684 + <div class="jaxtag">
685 + <div class="nojs-tags hide-if-js">
686 + <p><?php _e('Add or remove tags'); ?></p>
687 + <textarea name="<?php echo "tax_input[$tax_name]"; ?>" class="the-tags" id="tax-input[<?php echo $tax_name; ?>]"><?php echo esc_attr(implode(",", $tags)); ?></textarea></div>
688 +
689 + <div class="ajaxtag hide-if-no-js">
690 + <label class="screen-reader-text" for="new-tag-<?php echo $tax_name; ?>"><?php echo $box['title']; ?></label>
691 + <div class="taghint"><?php _e('Add new tag'); ?></div>
692 + <p>
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="" />
694 + <input type="button" class="button tagadd" value="<?php esc_attr_e('Add'); ?>" tabindex="3" />
695 + </p>
696 + </div></div>
697 + <p class="howto"><?php echo $helps; ?></p>
698 + <div class="tagchecklist"></div>
699 + </div>
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>
701 + <?php
702 +}
230 703
231 - <?php if ( $is_enabled ) : ?>
232 - <div class="ajaxtag hide-if-no-js">
233 - <label class="screen-reader-text" for="<?php echo esc_attr( $params['input_id'] ); ?>"><?php echo esc_html( $params['box_title'] ); ?></label>
234 - <div class="taghint"><?php echo esc_html( $o_tax_labels->add_new_item ); ?></div>
235 - <p><input type="text" id="<?php print esc_attr( $params['input_id'] ); ?>" name="<?php print esc_attr( $params['input_name'] ); ?>" class="newtag form-input-tip" size="16" autocomplete="off" value="" />
236 - <input type="button" class="button tagadd" value="<?php esc_attr_e( 'Add' ); ?>" tabindex="3" /></p>
237 - </div>
238 - <p class="howto"><?php echo esc_attr( $o_tax_labels->separate_items_with_commas ); ?></p>
239 - <?php endif; ?>
240 - </div>
704 +function fwp_category_box ($checked, $object, $tags = array(), $params = array()) {
705 + global $wp_db_version;
241 706
242 - <div class="tagchecklist"></div>
243 -</div>
244 - <?php
245 - if ( $is_enabled ) :
246 - ?>
247 -<p class="hide-if-no-js"><a href="#titlediv" class="tagcloud-link" id="link-<?php echo esc_attr( $tax_name ); ?>"><?php echo esc_html( $o_tax_labels->choose_from_most_used ); ?></a></p>
248 - <?php
249 - endif;
250 -
251 -}
252 -
253 -/**
254 - * Outputs the HTML template for a Category (or similar taxonomy) add / remove box in FeedWordPress admin UI pages.
255 - *
256 - * @param array $checked An array of cats already applied to the object.
257 - * @param string $object The human-readable description of the objects to be tagged ("post", "posts from this feed", etc.).
258 - * @param array $tags Not used.
259 - * @param array $params An array of optional parameters (to be parsed with wp_parse_args).
260 - *
261 - * @uses wp_parse_args()
262 - * @uses get_taxonomy()
263 - * @uses get_taxonomy_labels()
264 - */
265 -function fwp_category_box( $checked, $object, $tags = array(), $params = array() ) {
266 - if ( is_string( $params ) ) :
267 - $prefix = $params;
707 + if (is_string($params)) :
708 + $prefix = $params;
268 709 $taxonomy = 'category';
269 - elseif ( is_array( $params ) ) :
270 - $params = wp_parse_args(
271 - $params,
272 - array(
273 - 'prefix' => '',
274 - 'taxonomy' => 'category',
275 - )
276 - );
277 -
278 - $prefix = $params['prefix'];
279 - $taxonomy = $params['taxonomy'];
710 + elseif (is_array($params)) :
711 + $prefix = (isset($params['prefix']) ? $params['prefix'] : '');
712 + $taxonomy = (isset($params['taxonomy']) ? $params['taxonomy'] : 'category');
280 713 endif;
714 + $tax = get_taxonomy($taxonomy);
281 715
282 - $o_tax = get_taxonomy( $taxonomy );
283 - $o_tax_labels = get_taxonomy_labels( $o_tax );
284 -
285 - if ( strlen( $prefix ) === 0 ) :
286 - $prefix = 'feedwordpress';
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_';
287 724 endif;
288 725
289 - $id_prefix = $prefix . '-';
290 - $id_suffix = '-' . $prefix;
291 - $name_prefix = $prefix . '_'; // unused? (gwyneth 20230918)
726 +?>
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>
292 733
293 - $box_div_id = sanitize_html_class( $id_prefix . 'taxonomy-' . $taxonomy );
294 - $tabs_ul_id = sanitize_html_class( $id_prefix . $taxonomy . '-tabs' );
295 - $all_tab_id = sanitize_html_class( $id_prefix . $taxonomy . '-all' );
296 - $chk_lst_id = sanitize_html_class( $id_prefix . $taxonomy . 'checklist' );
297 - $add_tax_id = sanitize_html_class( $id_prefix . $taxonomy . '-adder' );
298 - $add_tog_id = sanitize_html_class( $id_prefix . $taxonomy . '-add-toggle' );
299 - $add_cat_id = sanitize_html_class( $id_prefix . $taxonomy . '-add' );
300 - $new_tax_id = sanitize_html_class( $id_prefix . 'new' . $taxonomy );
301 -
302 - $tax_id_add_submit = sanitize_html_class( $id_prefix . $taxonomy . '-add-sumbit' );
303 - ?>
304 -<div id="<?php print esc_attr( $box_div_id ); ?>" class="feedwordpress-category-div">
305 - <ul id="<?php print esc_attr( $tabs_ul_id ); ?>" class="category-tabs">
306 - <li class="ui-tabs-selected tabs"><a href="#<?php print esc_attr( $all_tab_id ); ?>" tabindex="3"><?php esc_html_e( 'All posts' ); ?></a>
307 - <p style="font-size:smaller;font-style:bold;margin:0"><?php esc_html_e( 'Give' ); ?> <?php print esc_html( $object ); ?> <?php esc_html_e( 'these' ); ?> <?php print esc_html( $o_tax_labels->name ); ?></p>
308 - </li>
309 - </ul>
310 -
311 -<div id="<?php print esc_attr( $all_tab_id ); ?>" class="tabs-panel">
312 - <input type="hidden" value="0" name="tax_input[<?php print esc_attr( $taxonomy ); ?>][]" />
313 - <ul id="<?php print esc_attr( $chk_lst_id ); ?>" class="list:<?php print esc_attr( $taxonomy ); ?> categorychecklist form-no-clear">
314 - <?php fwp_category_checklist( null, false, $checked, $params ); ?>
315 - </ul>
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>
316 739 </div>
317 740
318 -<div id="<?php print esc_attr( $add_tax_id ); ?>" class="<?php print esc_attr( $taxonomy ); ?>-adder wp-hidden-children">
319 - <h4><a id="<?php print esc_attr( $add_tog_id ); ?>" class="category-add-toggle" href="#<?php print esc_attr( $add_cat_id ); ?>" class="hide-if-no-js" tabindex="3"><span class="dashicons dashicons-plus fwp-no-underline"></span> <?php esc_html_e( 'Add New Category' ); ?></a></h4>.
320 - <p id="<?php print esc_attr( $add_cat_id ); ?>" class="category-add wp-hidden-child">
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">
321 744 <?php
322 - $newcat = 'new' . $taxonomy;
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;
323 752 ?>
324 - <label class="screen-reader-text" for="<?php print esc_attr( $new_tax_id ); ?>"><?php esc_html_e( 'Add New Category' ); ?></label>
325 - <input
326 - id="<?php print esc_attr( $new_tax_id ); ?>"
327 - class="<?php print esc_attr( $newcat ); ?> form-required form-input-tip"
328 - aria-required="true"
329 - tabindex="3"
330 - type="text" name="<?php print esc_attr( $newcat ); ?>"
331 - value="<?php esc_attr_e( 'New category name' ); ?>"
332 - />
333 - <label class="screen-reader-text" for="<?php print esc_attr( $new_tax_id ); ?>-parent"><?php esc_html_e( 'Parent Category' ); ?>:</label>
334 - <?php
335 - wp_dropdown_categories(
336 - array(
337 - 'taxonomy' => $taxonomy,
338 - 'hide_empty' => 0,
339 - 'id' => $new_tax_id . '-parent',
340 - 'class' => $newcat . '-parent',
341 - 'name' => $newcat . '_parent',
342 - 'orderby' => 'name',
343 - 'hierarchical' => 1,
344 - 'show_option_none' => __( 'Parent category' ),
345 - 'tab_index' => 3,
346 - )
347 - );
348 -
349 - $nonce_code = ( 'add-' . $taxonomy );
350 - ?>
351 - <input type="button" id="<?php print esc_attr( $tax_id_add_submit ); ?>" class="add:<?php print esc_attr( $id_prefix . $taxonomy ); ?>checklist:<?php print esc_attr( $id_prefix . $taxonomy ); ?>-add add-categorychecklist-category-add button category-add-submit" value="<?php esc_attr_e( 'Add' ); ?>" tabindex="3" />
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" />
352 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 */ ?>
353 - <input type="hidden" id="_ajax_nonce<?php print esc_html( $id_suffix ); ?>" name="_ajax_nonce" value="<?php print esc_attr( wp_create_nonce( $nonce_code ) ); ?>" />
354 - <input type="hidden" id="_ajax_nonce-add-<?php print esc_attr( $taxonomy . $id_suffix ); ?>" name="_ajax_nonce-add-<?php print esc_attr( $taxonomy ); ?>" value="<?php print esc_attr( wp_create_nonce( $nonce_code ) ); ?>" />
355 - <span id="<?php print esc_attr( $id_prefix . $taxonomy ); ?>-ajax-response" class="<?php print esc_attr( $taxonomy ); ?>-ajax-response"></span>
356 - </p>
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>
779 + </p>
357 780 </div>
358 781
359 782 </div>
360 - <?php
783 +<?php
361 784 }
362 785
363 -/**
364 - * Outputs a text/html status message indicating that FWP has started polling a feed.
365 - *
366 - * @param array $feed An associative array containing meta-data about the feed being polled.
367 - */
368 -function update_feeds_mention( $feed ) {
369 - printf(
370 - '<li>' . esc_html__( 'Updating' ) . ' <cite>%s</cite> ' . esc_html__( 'from' ) . ' &lt;<a href="%s">%s</a>&gt; ...',
371 - esc_html( $feed['link/name'] ),
372 - esc_url( $feed['link/uri'] ),
373 - esc_html( $feed['link/uri'] )
374 - );
786 +function update_feeds_mention ($feed) {
787 + echo "<li>Updating <cite>".$feed['link/name']."</cite> from &lt;<a href=\""
788 + .$feed['link/uri']."\">".$feed['link/uri']."</a>&gt; ...";
375 789 flush();
376 -} /* update_feeds_mention() */
377 -
378 -/**
379 - * Outputs a text/html status message indicating that FWP has completed polling a feed.
380 - *
381 - * @param array $feed An associative array containing meta-data about the feed being polled (unused).
382 - * @param mixed $added a WP_Error object with error codes and messages, if there was an error in polling.
383 - * @param int $dt seconds it took to complete the poll.
384 - */
385 -function update_feeds_finish( $feed, $added, $dt ) {
386 - if ( is_wp_error( $added ) ) :
790 +}
791 +function update_feeds_finish ($feed, $added, $dt) {
792 + if (is_wp_error($added)) :
387 793 $mesgs = $added->get_error_messages();
388 - foreach ( $mesgs as $mesg ) :
389 - printf( '<br/><strong>%s:</strong> <code>%s</code>', esc_html__( 'Feed error' ), esc_html( $mesg ) );
794 + foreach ($mesgs as $mesg) :
795 + echo "<br/><strong>Feed error:</strong> <code>$mesg</code>";
390 796 endforeach;
391 797 echo "</li>\n";
392 798 else :
393 - printf( esc_html__(" completed in %d second%s") . "</li>\n", esc_html( $dt ), esc_html( _s( $dt ) ) );
799 + echo " completed in $dt second".(($dt==1)?'':'s')."</li>\n";
394 800 endif;
395 801 flush();
396 -} /* update_feeds_finish() */
802 +}
397 803
398 -/**
399 - * Retrieves a list of users via the WordPress API.
400 - *
401 - * @return array List of users, by numeric ID => display_name
402 - */
403 -function fwp_author_list() {
804 +function fwp_author_list () {
805 + global $wpdb;
404 806 $ret = array();
405 807
406 - $users = get_users();
407 - if ( is_array( $users ) ) :
408 - foreach ( $users as $user ) :
409 - $id = (int) $user->ID;
410 - $ret[ $id ] = $user->display_name;
411 -
412 - if ( strlen( trim( $ret[ $id ] ) ) === 0 ) :
413 - $ret[ $id ] = $user->user_login;
808 + $users = $wpdb->get_results("SELECT * FROM $wpdb->users ORDER BY display_name");
809 + if (is_array($users)) :
810 + foreach ($users as $user) :
811 + $id = (int) $user->ID;
812 + $ret[$id] = $user->display_name;
813 + if (strlen(trim($ret[$id])) == 0) :
814 + $ret[$id] = $user->user_login;
414 815 endif;
415 816 endforeach;
416 817 endif;
417 818 return $ret;
418 -} /* fwp_author_list() */
819 +}
419 820
420 -/**
421 - * Insert a new user into the WordPress database, with some FeedWordPress-specific default behaviors.
422 - *
423 - * @param string $newuser_name The "Display Name" for the new user; user logins and the like will be determined by a formula.
424 - * @return int|WP_Error Either a numeric ID or a WP_Error object.
425 - */
426 -function fwp_insert_new_user( $newuser_name ) {
427 - $ret = null;
428 - if ( strlen( $newuser_name ) > 0 ) :
429 - $userdata = array();
430 - $userdata['ID'] = null;
431 - $userdata['user_login'] = apply_filters( 'pre_user_login', sanitize_user( $newuser_name ) );
432 - $userdata['user_nicename'] = apply_filters( 'pre_user_nicename', sanitize_title( $newuser_name ) );
433 - $userdata['display_name'] = $newuser_name;
434 - $userdata['user_pass'] = substr( md5( uniqid( microtime() ) ), 0, 6 ); // just something random to lock it up.
821 +class FeedWordPressSettingsUI {
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 + );
831 + endif;
832 + return $admin_page;
833 + }
834 +
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
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 + }
435 847
436 - $blah_url = get_bloginfo( 'url' );
437 - $url = wp_parse_url( $blah_url );
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 () */
865 +
866 + /*static*/ function ajax_nonce_fields () {
867 + if (function_exists('wp_nonce_field')) :
868 + echo "<form style='display: none' method='get' action=''>\n<p>\n";
869 + wp_nonce_field( 'closedpostboxes', 'closedpostboxesnonce', false );
870 + wp_nonce_field( 'meta-box-order', 'meta-box-order-nonce', false );
871 + echo "</p>\n</form>\n";
872 + endif;
873 + } /* FeedWordPressSettingsUI::ajax_nonce_fields () */
438 874
439 - $userdata['user_email'] = substr( md5( uniqid( microtime() ) ), 0, 6 ) . '@' . $url['host'];
875 + /*static*/ function fix_toggles_js ($context) {
876 + ?>
877 + <script type="text/javascript">
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');
885 +
886 + postboxes.add_postbox_toggles('<?php print $context; ?>');
887 + } );
888 + </script>
889 + <?php
890 + } /* FeedWordPressSettingsUI::fix_toggles_js () */
891 +
892 + function magic_input_tip_js ($id) {
893 + ?>
894 + <script type="text/javascript">
895 + jQuery(document).ready( function () {
896 + var inputBox = jQuery("#<?php print $id; ?>");
897 + var boxEl = inputBox.get(0);
898 + if (boxEl.value==boxEl.defaultValue) { inputBox.addClass('form-input-tip'); }
899 + inputBox.focus(function() {
900 + if ( this.value == this.defaultValue )
901 + jQuery(this).val( '' ).removeClass( 'form-input-tip' );
902 + });
903 + inputBox.blur(function() {
904 + if ( this.value == '' )
905 + jQuery(this).val( this.defaultValue ).addClass( 'form-input-tip' );
906 + });
907 + } );
908 + </script>
909 + <?php
910 + } /* FeedWordPressSettingsUI::magic_input_tip_js () */
911 +} /* class FeedWordPressSettingsUI */
440 912
441 - $newuser_id = wp_insert_user( $userdata );
913 +function fwp_insert_new_user ($newuser_name) {
914 + global $wpdb;
442 915
443 - $ret = $newuser_id; // Either a numeric ID or a WP_Error object.
444 -
916 + $ret = null;
917 + if (strlen($newuser_name) > 0) :
918 + $userdata = array();
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
924 +
925 + $blahUrl = get_bloginfo('url'); $url = parse_url($blahUrl);
926 + $userdata['user_email'] = substr(md5(uniqid(microtime())), 0, 6).'@'.$url['host'];
927 +
928 + $newuser_id = wp_insert_user($userdata);
929 + $ret = $newuser_id; // Either a numeric ID or a WP_Error object
445 930 else :
446 -
447 - $ret = new WP_Error( 'empty_username', 'Provide a non-empty string for the Display Name to fwp_insert_new_user' );
448 -
931 + // TODO: Add some error reporting
449 932 endif;
450 933 return $ret;
451 -} /* fwp_insert_new_user ( ) */
934 +} /* fwp_insert_new_user () */
452 935
453 936 /**
454 - * Output HTML for table row in FeedWordPress Syndicated Sources list.
937 + * fwp_add_meta_box
455 938 *
456 - * @param array $links array of WordPress link objects.
457 - * @param object $page FeedWordPress admin page object.
458 - * @param string $visible 'Y' or 'N', whether to display syndicated sources marked as visible or as hidden.
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.
459 942 */
460 -function fwp_syndication_manage_page_links_table_rows( $links, $page, $visible = 'Y' ) {
943 +function fwp_add_meta_box ($id, $title, $callback, $page, $context = 'advanced', $priority = 'default', $callback_args = null) {
944 + return add_meta_box($id, $title, $callback, $page, $context, $priority, $callback_args);
945 +} /* function fwp_add_meta_box () */
461 946
462 - $fwp_syndicated_sources_columns = array( __( 'Name' ), __( 'Feed' ), __( 'Updated' ) );
947 +function fwp_do_meta_boxes($page, $context, $object) {
948 + $ret = do_meta_boxes($page, $context, $object);
949 +
950 + // Avoid JavaScript error from WordPress 2.5 bug
951 +?>
952 + <div style="display: none">
953 + <div id="tags-input"></div> <!-- avoid JS error from WP 2.5 bug -->
954 + </div>
955 +<?php
956 + return $ret;
957 +} /* function fwp_do_meta_boxes() */
463 958
464 - $subscribed = ( 'Y' === strtoupper( $visible ) );
465 - if ( $subscribed || ( count( $links ) > 0 ) ) :
466 - $table_classes = array( 'widefat' );
467 - if ( ! $subscribed ) :
468 - $table_classes[] = 'unsubscribed';
469 - endif;
470 - $table_classes = implode( ' ', $table_classes );
471 - ?>
472 - <table class="<?php print esc_attr( $table_classes ); ?>">
959 +function fwp_remove_meta_box($id, $page, $context) {
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;
965 +
966 + $subscribed = ('Y' == strtoupper($visible));
967 + if ($subscribed or (count($links) > 0)) :
968 + ?>
969 + <table class="widefat<?php if (!$subscribed) : ?> unsubscribed<?php endif; ?>">
473 970 <thead>
474 971 <tr>
475 972 <th class="check-column" scope="col"><input type="checkbox" /></th>
476 - <?php
477 - foreach ( $fwp_syndicated_sources_columns as $col ) :
478 - printf( "\t<th scope='col'>%s</th>\n", esc_html( $col ) );
479 - endforeach;
480 - ?>
973 + <th scope="col"><?php _e('Name'); ?></th>
974 + <th scope="col"><?php _e('Feed'); ?></th>
975 + <th scope="col"><?php _e('Updated'); ?></th>
481 976 </tr>
482 977 </thead>
978 +
483 979 <tbody>
484 - <?php
485 - $alt_row = true;
486 - if ( count( $links ) > 0 ) :
487 - foreach ( $links as $link ) :
488 - $tr_class = array();
980 +<?php
981 + $alt_row = true;
982 + if (count($links) > 0):
983 + foreach ($links as $link):
984 + $trClass = array();
489 985
490 - $o_s_link = new SyndicatedLink( $link->link_id );
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;
491 993
492 - if ( is_null( $o_s_link->setting( 'update/error' ) ) ) :
994 + // Prep: get last error timestamp, if any
995 + if (is_null($sLink->setting('update/error'))) :
996 + $errorsSince = '';
997 + else :
998 + $trClass[] = 'feed-error';
493 999
494 - $the_error = null;
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;
495 1013
496 - else :
497 - $tr_class[] = 'feed-error';
498 - $the_error = unserialize( $o_s_link->setting( 'update/error' ) );
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";
499 1025 endif;
1026 + $nextUpdate .= "</div>";
500 1027
501 - $ttl = $o_s_link->setting( 'update/ttl' );
502 -
503 - $alt_row = ! $alt_row;
504 -
505 - if ( $alt_row ) :
506 - $tr_class[] = 'alternate';
1028 + unset($sLink);
1029 +
1030 + $alt_row = !$alt_row;
1031 +
1032 + if ($alt_row) :
1033 + $trClass[] = 'alternate';
507 1034 endif;
508 1035 ?>
509 - <tr<?php fwp_form_class_attr( implode( ' ', $tr_class ) ); ?>>
510 - <th class="check-column" scope="row"><input type="checkbox" name="link_ids[]" value="<?php echo esc_attr( $link->link_id ); ?>" /></th>
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>
511 1038 <?php
1039 + $hrefPrefix = "admin.php?link_id={$link->link_id}&amp;page=${fwp_path}/";
512 1040 $caption = (
513 - ( strlen( $link->link_rss ) > 0 )
514 - ? __( 'Switch Feed' )
515 - : __( 'Find Feed' )
1041 + (strlen($link->link_rss) > 0)
1042 + ? __('Switch Feed')
1043 + : $caption=__('Find Feed')
516 1044 );
517 1045 ?>
518 1046 <td>
519 - <strong><a href="<?php print esc_url( $page->admin_page_href( 'feeds-page.php', array(), $link ) ); ?>"><?php print esc_html( $link->link_name ); ?></a></strong>
520 - <div class="row-actions">
521 - <?php
522 - if ( $subscribed ) :
523 - $page->display_feed_settings_page_links(
524 - array(
525 - 'before' => '<div><strong> ' . __( 'Settings' ) . ' &gt;</strong> ',
526 - 'after' => '</div>',
527 - 'subscription' => $link,
528 - )
529 - );
530 - endif;
531 - ?>
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; ?>
532 1055
533 - <div><strong><?php esc_html_e( 'Actions' ); ?> &gt;</strong>
534 - <?php if ( $subscribed ) : ?>
535 - <a href="<?php print esc_url( $page->admin_page_href( 'syndication.php', array( 'action' => 'feedfinder' ), $link ) ); ?>"><?php echo esc_html( $caption ); ?></a>
536 - <?php else : ?>
537 - <a href="<?php print esc_url( $page->admin_page_href( 'syndication.php', array( 'action' => FWP_RESUB_CHECKED ), $link ) ); ?>"><?php esc_html_e( 'Re-subscribe' ); ?></a>
538 - <?php endif; ?>
539 - | <a href="<?php print esc_url( $page->admin_page_href( 'syndication.php', array( 'action' => 'Unsubscribe' ), $link ) ); ?>">
540 - <?php
541 - if ( $subscribed ) :
542 - esc_html_e( 'Unsubscribe' );
543 - else :
544 - esc_html_e( 'Delete permanently' );
545 - endif;
546 - ?>
547 - </a>
548 - | <a href="<?php print esc_url( $link->link_url ); ?>"><?php esc_html_e( 'View' ); ?></a></div>
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>
549 1064 </div>
550 1065 </td>
551 - <?php if ( strlen( $link->link_rss ) > 0 ) : ?>
552 - <td><div><a href="<?php echo esc_html( $link->link_rss ); ?>"><?php echo esc_html( feedwordpress_display_url( $link->link_rss, 32 ) ); ?></a></div></td>
553 - <?php else : ?>
554 - <td class="feed-missing"><p><strong><?php esc_html_e( 'no feed assigned' ); ?></strong></p></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>
555 1070 <?php endif; ?>
556 1071
557 - <td><div style="float: right; padding-left: 10px">
558 - <input type="submit" class="button" name="update_uri[<?php print esc_html( $link->link_rss ); ?>]" value="<?php esc_html_e( 'Update Now' ); ?>" />
559 - </div>
560 - <?php
561 - fwp_links_table_rows_last_updated( $o_s_link );
562 - fwp_links_table_rows_file_size( $o_s_link );
563 - fwp_links_table_rows_errors_since( $the_error );
564 - fwp_links_table_rows_next_update( $o_s_link );
565 - ?>
1072 + <td><?php print $lastUpdated; ?>
1073 + <?php print $errorsSince; ?>
1074 + <?php print $nextUpdate; ?>
566 1075 </td>
567 1076 </tr>
568 - <?php
569 - unset( $o_s_link );
570 -
1077 + <?php
571 1078 endforeach;
572 1079 else :
573 - ?>
574 - <tr><td colspan="4"><p><?php esc_html_e( 'There are no websites currently listed for syndication.' ); ?></p></td></tr>
575 - <?php
1080 +?>
1081 +<tr><td colspan="4"><p>There are no websites currently listed for syndication.</p></td></tr>
1082 +<?php
576 1083 endif;
577 - ?>
578 - </tbody>
579 - </table> <!-- <?php print esc_attr( $table_classes ); ?> -->
580 - <?php
1084 +?>
1085 +</tbody>
1086 +</table>
1087 + <?php
581 1088 endif;
582 -} /* function fwp_syndication_manage_page_links_table_rows ( ) */
1089 +} /* function fwp_syndication_manage_page_links_table_rows () */
583 1090
584 -/**
585 - * Output HTML message indicating feed errors, if a feed has been returning errors, in Syndicated Sites table.
586 - *
587 - * @param mixed $the_error If last poll on this feed was successful, this is null.
588 - * If last poll returned an error, contains an array with 'since' (timestamp of first time an error was an encountered), 'ts' (timestamp of most recent time an error was encountered), and 'object' (a WP_Error object representing the most recent error when you polled the feed).
589 - */
590 -function fwp_links_table_rows_errors_since( $the_error ) {
591 - if ( ! is_null( $the_error ) ) :
592 -
593 - $s_elapsed = fwp_time_elapsed( $the_error['since'] );
594 - $s_recent = fwp_time_elapsed( $the_error['ts'] );
595 - ?>
596 -
597 -<div class="returning-errors"><p><strong><?php esc_html_e( 'Returning errors' ); ?></strong> <?php esc_html_e( 'since' ); ?> <?php print esc_html( $s_elapsed ); ?></p>
598 -<p><?php esc_html_e( 'Most recent' ); ?> (<?php print esc_html( $s_recent ); ?>):
599 - <?php
600 - foreach ( $the_error['object']->get_error_messages() as $mesg ) :
601 - printf( '<br/><code>%s</code>', esc_html( $mesg ) );
602 - endforeach;
603 - ?>
604 -</p>
605 -</div>
606 -
607 - <?php
608 - endif;
609 -}
610 -
611 -/**
612 - * Output the "Last checked..." status message in Syndicated Sites table.
613 - *
614 - * @param SyndicatedLink $o_s_link The SyndicatedLink object representing the feed displayed on this row.
615 - */
616 -function fwp_links_table_rows_last_updated( $o_s_link ) {
617 - if ( ! is_null( $o_s_link->setting( 'update/last' ) ) ) :
618 - print esc_html__( 'Last checked ') . esc_html( fwp_time_elapsed( $o_s_link->setting( 'update/last' ) ) );
619 - else :
620 - print esc_html__( 'None yet' );
621 - endif;
622 -
623 - $ttl = $o_s_link->setting( 'update/ttl' );
624 - if ( is_numeric( $ttl ) ) :
625 - $next = $o_s_link->setting( 'update/last' ) + $o_s_link->setting( 'update/fudge' ) + ( (int) $ttl * 60 );
626 -
627 - if ( 'automatically' !== $o_s_link->setting( 'update/timed' ) ) :
628 -
629 - print ' &middot; ' . esc_html__( 'Next') . ' ';
630 - print esc_html( fwp_relative_time_string( $next ) );
631 -
632 - endif;
633 - endif;
634 -
635 -}
636 -
637 -/**
638 - * Return a status message indicating when a feed will next be polled, based on a next-update timestamp.
639 - *
640 - * @param int $ts Timestamp for next updrate.
641 - * @param bool $ago Display "[relative time] ago", or "ASAP", if the timestamp is in the past.
642 - */
643 -function fwp_relative_time_string( $ts, $ago = false ) {
644 -
645 - $dt = ( $ts - time() );
646 -
647 - if ( $dt < 0 && ! $ago ) :
648 - $ret = __( 'ASAP' );
649 - elseif ( $dt < 60 * 60 ) :
650 - $ret = fwp_time_elapsed( $ts );
651 - elseif ( $dt < 60 * 60 * 24 ) :
652 - $ret = wp_date( 'g:ia', $ts );
653 - else :
654 - $ret = wp_date( 'F j', $ts );
655 - endif;
656 - return $ret;
657 -}
658 -
659 -/**
660 - * Output the File Size / Format status message in Syndicated Sites table.
661 - *
662 - * @param SyndicatedLink $o_s_link Object representing the feed displayed on this row.
663 - */
664 -function fwp_links_table_rows_file_size( $o_s_link ) {
665 -
666 - $mesg_file_size_lines = array();
667 -
668 - $feed_type = $o_s_link->get_feed_type();
669 -
670 - if ( ! is_null( $o_s_link->setting( 'link/item count' ) ) ) :
671 - $n = $o_s_link->setting( 'link/item count' );
672 -
673 - // translators: %1$d is the item count; %2$s is the plural marker (if any) for item.
674 - $mesg_file_size_lines[] = sprintf( __( '%1$d item%2$s' ), $n, _s( $n ) ) . ', ' . $feed_type;
675 -
676 - endif;
677 -
678 - if ( is_null( $o_s_link->setting( 'update/error' ) ) ) :
679 -
680 - if ( ! is_null( $o_s_link->setting( 'link/filesize' ) ) ) :
681 - // size_format() _can_ return false, so we check for that first (gwyneth 20230918)
682 - $formatted_bytes = size_format( $o_s_link->setting( 'link/filesize' ) );
683 - if ( $formatted_bytes ) :
684 - $mesg_file_size_lines[] = $formatted_bytes . '&nbsp;' . __( 'total' );
685 - else:
686 - $mesg_file_size_lines[] = __( '(invalid number of bytes)' );
687 - endif;
688 - FeedWordPress::diagnostic( 'link/filesize', 'File size for this link was reported as being `' . $o_s_link->setting( 'link/filesize' ) . '\'' );
689 - else :
690 - $mesg_file_size_lines[] = __( '(unknown bytes)' );
691 - FeedWordPress::diagnostic( 'link/filesize', 'No error, but link/filesize reported NULL bytes.' );
692 - endif;
693 -
694 -
695 - endif;
696 -
697 - if ( count( $mesg_file_size_lines ) > 0 ) :
698 -
699 - print '<div>';
700 - $sep = '';
701 - foreach ( $mesg_file_size_lines as $line ) :
702 - print esc_html( $sep );
703 - print esc_html( $line );
704 - $sep = ' / ';
705 - endforeach;
706 - print '</div>';
707 -
708 - endif;
709 -
710 -}
711 -
712 -/**
713 - * Output the Scheduled For Next Update status message in Syndicated Sites table.
714 - *
715 - * @param SyndicatedLink $o_s_link Object representing the feed displayed on this row.
716 - */
717 -function fwp_links_table_rows_next_update( $o_s_link ) {
718 - $ttl = $o_s_link->setting( 'update/ttl' );
1091 +function fwp_syndication_manage_page_links_subsubsub ($sources, $showInactive) {
1092 + global $fwp_path;
1093 + $hrefPrefix = "admin.php?page=${fwp_path}/syndication.php";
719 1094 ?>
720 - <div style="max-width: 30.0em; font-size: 0.9em;"><div style="font-style:italic;">
721 - <?php
722 - if ( is_numeric( $ttl ) ) :
723 - $next = $o_s_link->setting( 'update/last' ) + $o_s_link->setting( 'update/fudge' ) + ( (int) $ttl * 60 );
724 - if ( 'automatically' === $o_s_link->setting( 'update/timed' ) ) :
725 - if ( $next < time() ) :
726 - esc_html_e( 'Ready and waiting to be updated since ' );
727 - else :
728 - esc_html_e( 'Scheduled for next update ' );
729 - endif;
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; ?>
730 1102
731 - print esc_html( fwp_time_elapsed( $next ) );
732 - if ( FEEDWORDPRESS_DEBUG ) :
733 - $interval = ( ( $next - time() ) / 60 );
734 - printf( ' [%d %s%s]', intval( $interval ), esc_html__( 'minute' ), esc_html( _s( $interval ) ) );
735 - endif;
736 - else :
737 - printf( esc_html__( 'Scheduled to be checked for updates every ' ) . '%d %s%s.',
738 - intval( $ttl ),
739 - esc_html__( 'minute' ),
740 - esc_html( _s( $ttl ) ) );
741 - ?>
742 - </div>
743 -
744 - <div style="size:0.9em; margin-top: 0.5em"><?php esc_html_e( 'This update schedule was requested by the feed provider' ); ?>
745 - <?php
746 - if ( $o_s_link->setting( 'update/xml' ) ) :
747 - ?>
748 - <?php esc_html_e( 'using a standard' ); ?> <code style="font-size: inherit; padding: 0; background: transparent">&lt;<?php print esc_html( $o_s_link->setting( 'update/xml' ) ); ?>&gt;</code> <?php esc_html_e( 'element' ); // Note: the tricky php tags placed here try to avoid a space before the period. (gwyneth 20230918)
749 - endif;
750 - endif;
751 - else :
752 - esc_html_e( 'Scheduled for update as soon as possible' );
753 - endif;
754 - print '.';
755 - ?>
756 - </div></div>
1103 + </ul> <!-- class="subsubsub" -->
757 1104 <?php
758 1105 }
1106 +