PluginProbe
Social Media Auto Poster – Schedule & Publish to Buffer / 6.0.4
Social Media Auto Poster – Schedule & Publish to Buffer v6.0.4
6.2.4 6.2.3 6.2.2 6.2.1 6.2.0 6.1.2 6.1.1 6.1.0 6.0.9 6.0.8 6.0.7 6.0.6 6.0.5 6.0.4 6.0.3 6.0.2 6.0.1 6.0.0 3.8.1 3.8.2 3.8.3 3.8.4 3.8.5 3.8.6 3.8.7 All 125 releases
wp-to-buffer / lib / views / settings-profiles-error.php

settings-profiles-error.php in Social Media Auto Poster – Schedule & Publish to Buffer 6.0.4, at lib/views/settings-profiles-error.php

46 lines 1.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Outputs Settings View when an error occured fetching Profiles from the API
4 *
5 * @since 4.6.9
6 *
7 * @package WP_To_Social_Pro
8 * @author WP Zinc
9 */
10
11 if ( ! defined( 'ABSPATH' ) ) {
12 exit; // Exit if accessed directly.
13 }
14 ?>
15 <div class="postbox">
16 <div class="wpzinc-option">
17 <p class="description">
18 <?php echo esc_html( $profiles->get_error_message() ); ?>
19 </p>
20 <p class="description">
21 <?php
22 echo esc_html(
23 sprintf(
24 /* translators: Social Media Service Name (Buffer, Hootsuite) */
25 __( 'Visit your %s account to resolve this error.', 'wp-to-buffer' ),
26 $this->base->plugin->account
27 )
28 );
29 ?>
30 </p>
31 </div>
32 <div class="wpzinc-option">
33 <a href="<?php echo esc_attr( $this->base->get_class( 'api' )->get_connect_profiles_url() ); ?>" target="_blank" rel="nofollow noopener" class="button button-primary">
34 <?php
35 echo esc_html(
36 sprintf(
37 /* translators: Social Media Service Name (Buffer, Hootsuite) */
38 __( 'Visit %s', 'wp-to-buffer' ),
39 $this->base->plugin->account
40 )
41 );
42 ?>
43 </a>
44 </div>
45 </div>
46