PluginProbe
Social Media Auto Poster – Schedule & Publish to Buffer / 6.0.3
Social Media Auto Poster – Schedule & Publish to Buffer v6.0.3
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-missing.php

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

38 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 no Profiles are connected to the API
4 *
5 * @since 3.0.0
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
19 echo esc_html(
20 sprintf(
21 /* translators: %1$s: Social Media Service Name (Buffer, Hootsuite) */
22 __( 'You must connect at least one social media account in %1$s for this Plugin to send status updates to it.', 'wp-to-buffer' ),
23 $this->base->plugin->account
24 )
25 );
26 ?>
27 </p>
28 <p class="description">
29 <?php esc_html_e( 'Once complete, refresh this page to enable and configure statuses for each social media account.', 'wp-to-buffer' ); ?>
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 esc_html_e( 'Connect Profiles', 'wp-to-buffer' ); ?>
35 </a>
36 </div>
37 </div>
38