2022-04-02 10:26:41 +02:00
< ? php //phpcs:ignore WordPress.Files.FileName.InvalidClassFileName
/**
* Publicize_UI class .
*
* @ package automattic / jetpack
*/
2019-11-15 23:26:29 +01:00
/**
2022-04-02 10:26:41 +02:00
* Only user facing pieces of Publicize are found here .
*/
2019-11-15 23:26:29 +01:00
class Publicize_UI {
/**
2022-04-02 10:26:41 +02:00
* Contains an instance of class ' Publicize ' which loads Keyring , sets up services , etc .
*
* @ var Publicize Instance of Publicize
*/
2019-11-15 23:26:29 +01:00
public $publicize ;
/**
2022-04-02 10:26:41 +02:00
* URL to Sharing settings page in wordpress . com
*
* @ var string
2019-11-15 23:26:29 +01:00
*/
protected $publicize_settings_url = '' ;
/**
2022-04-02 10:26:41 +02:00
* Hooks into WordPress to display the various pieces of UI and load our assets
*/
public function __construct () {
2019-11-15 23:26:29 +01:00
global $publicize ;
2022-04-02 10:26:41 +02:00
$publicize = new Publicize ();
$this -> publicize = $publicize ;
2019-11-15 23:26:29 +01:00
add_action ( 'init' , array ( $this , 'init' ) );
}
2022-04-02 10:26:41 +02:00
/**
* Initialize UI - related functionality .
*/
public function init () {
2019-11-15 23:26:29 +01:00
$this -> publicize_settings_url = publicize_calypso_url ();
// Show only to users with the capability required to manage their Publicize connections.
if ( ! $this -> publicize -> current_user_can_access_publicize_data () ) {
return ;
}
2022-04-02 10:26:41 +02:00
// Assets (css, js).
2019-11-15 23:26:29 +01:00
if ( $this -> in_jetpack ) {
add_action ( 'load-settings_page_sharing' , array ( $this , 'load_assets' ) );
}
add_action ( 'admin_head-post.php' , array ( $this , 'post_page_metabox_assets' ) );
add_action ( 'admin_head-post-new.php' , array ( $this , 'post_page_metabox_assets' ) );
2022-04-02 10:26:41 +02:00
// Management of publicize (sharing screen, ajax/lightbox popup, and metabox on post screen).
2019-11-15 23:26:29 +01:00
add_action ( 'pre_admin_screen_sharing' , array ( $this , 'admin_page' ) );
add_action ( 'post_submitbox_misc_actions' , array ( $this , 'post_page_metabox' ) );
}
/**
* If the ShareDaddy plugin is not active we need to add the sharing settings page to the menu still
*/
2022-04-02 10:26:41 +02:00
public function sharing_menu () {
2019-11-15 23:26:29 +01:00
add_submenu_page (
'options-general.php' ,
esc_html__ ( 'Sharing Settings' , 'jetpack' ),
esc_html__ ( 'Sharing' , 'jetpack' ),
'publish_posts' ,
'sharing' ,
array ( $this , 'wrapper_admin_page' )
);
}
2022-04-02 10:26:41 +02:00
/**
* Add admin page with wrapper .
*/
public function wrapper_admin_page () {
2019-11-15 23:26:29 +01:00
Jetpack_Admin_Page :: wrap_ui ( array ( $this , 'management_page' ) );
}
/**
* Management page to load if Sharedaddy is not active so the 'pre_admin_screen_sharing' action exists .
*/
2022-04-02 10:26:41 +02:00
public function management_page () {
?>
2019-11-15 23:26:29 +01:00
< div class = " wrap " >
< div class = " icon32 " id = " icon-options-general " >< br /></ div >
< h1 >< ? php esc_html_e ( 'Sharing Settings' , 'jetpack' ); ?> </h1>
< ? php
/** This action is documented in modules/sharedaddy/sharing.php */
do_action ( 'pre_admin_screen_sharing' );
?>
2022-04-02 10:26:41 +02:00
</ div >
< ? php
2019-11-15 23:26:29 +01:00
}
/**
2022-04-02 10:26:41 +02:00
* Styling for the sharing screen and popups
2019-11-15 23:26:29 +01:00
* JS for the options and switching
*/
2022-04-02 10:26:41 +02:00
public function load_assets () {
2019-11-15 23:26:29 +01:00
Jetpack_Admin_Page :: load_wrapper_styles ();
}
/**
* Lists the current user ' s publicized accounts for the blog
* looks exactly like Publicize v1 for now , UI and functionality updates will come after the move to keyring
*/
2022-04-02 10:26:41 +02:00
public function admin_page () {
2019-11-15 23:26:29 +01:00
?>
2022-04-02 10:26:41 +02:00
< h2 id = " publicize " >< ? php esc_html_e ( 'Publicize' , 'jetpack' ); ?> </h2>
< p >< ? php esc_html_e ( 'Connect social media services to automatically share new posts.' , 'jetpack' ); ?> </p>
< h4 >
< ? php
2019-11-15 23:26:29 +01:00
printf (
wp_kses (
2022-04-02 10:26:41 +02:00
/* translators: %s is the link to the Publicize page in Calypso */
2019-11-15 23:26:29 +01:00
__ ( " We've made some updates to Publicize. Please visit the <a href='%s' class='jptracks' data-jptracks-name='legacy_publicize_settings'>WordPress.com sharing page</a> to manage your publicize connections or use the button below. " , 'jetpack' ),
2022-04-02 10:26:41 +02:00
array (
'a' => array (
'href' => array (),
'class' => array (),
'data-jptracks-name' => array (),
),
)
2019-11-15 23:26:29 +01:00
),
esc_url ( publicize_calypso_url () )
);
?>
</ h4 >
< a href = " <?php echo esc_url( publicize_calypso_url() ); ?> " class = " button button-primary jptracks " data - jptracks - name = 'legacy_publicize_settings' >< ? php esc_html_e ( 'Publicize Settings' , 'jetpack' ); ?> </a>
< ? php
}
/**
* CSS for styling the publicize message box and counter that displays on the post page .
* There is also some JavaScript for length counting and some basic display effects .
*/
2022-04-02 10:26:41 +02:00
public function post_page_metabox_assets () {
2019-11-15 23:26:29 +01:00
$default_prefix = $this -> publicize -> default_prefix ;
$default_prefix = preg_replace ( '/%([0-9])\$s/' , " ' + % \\ 1 \$ s + ' " , esc_js ( $default_prefix ) );
$default_message = $this -> publicize -> default_message ;
$default_message = preg_replace ( '/%([0-9])\$s/' , " ' + % \\ 1 \$ s + ' " , esc_js ( $default_message ) );
$default_suffix = $this -> publicize -> default_suffix ;
$default_suffix = preg_replace ( '/%([0-9])\$s/' , " ' + % \\ 1 \$ s + ' " , esc_js ( $default_suffix ) );
$max_length = defined ( 'JETPACK_PUBLICIZE_TWITTER_LENGTH' ) ? JETPACK_PUBLICIZE_TWITTER_LENGTH : 280 ;
2022-04-02 10:26:41 +02:00
$max_length = $max_length - 24 ; // t.co link, space.
2019-11-15 23:26:29 +01:00
?>
< script type = " text/javascript " >
jQuery ( function ( $ ) {
var wpasTitleCounter = $ ( '#wpas-title-counter' ),
wpasTwitterCheckbox = $ ( '.wpas-submit-twitter' ) . length ,
postTitle = $ ( '#title' ),
wpasTitle = $ ( '#wpas-title' ) . keyup ( function () {
var postTitleVal ,
length = wpasTitle . val () . length ;
if ( ! length ) {
length = wpasTitle . attr ( 'placeholder' ) . length ;
}
wpasTitleCounter . text ( length ) . trigger ( 'change' );
} ),
authClick = false ;
wpasTitleCounter . on ( 'change' , function ( e ) {
if ( wpasTwitterCheckbox && parseInt ( $ ( e . currentTarget ) . text (), 10 ) > < ? php echo ( int ) $max_length ; ?> ) {
wpasTitleCounter . addClass ( 'wpas-twitter-length-limit' );
} else {
wpasTitleCounter . removeClass ( 'wpas-twitter-length-limit' );
}
} );
// Keep the postTitle and the placeholder in sync
postTitle . on ( 'keyup' , function ( e ) {
var url = $ ( '#sample-permalink' ) . text ();
2022-04-02 10:26:41 +02:00
< ? php // phpcs:ignore ?>
2019-11-15 23:26:29 +01:00
var defaultMessage = $ . trim ( '<?php printf( $default_prefix, ' url ' ); printf( $default_message, ' e . currentTarget . value ', ' url ' ); printf( $default_suffix, ' url ' ); ?>' )
. replace ( /< [ ^> ] +>/ g , '' );
wpasTitle . attr ( 'placeholder' , defaultMessage );
wpasTitle . trigger ( 'keyup' );
} );
// set the initial placeholder
postTitle . trigger ( 'keyup' );
// If a custom message has been provided, open the UI so the author remembers
if ( wpasTitle . val () && ! wpasTitle . prop ( 'disabled' ) && wpasTitle . attr ( 'placeholder' ) !== wpasTitle . val () ) {
$ ( '#publicize-form' ) . show ();
$ ( '#publicize-defaults' ) . hide ();
$ ( '#publicize-form-edit' ) . hide ();
}
$ ( '#publicize-disconnected-form-show' ) . click ( function () {
$ ( '#publicize-form' ) . slideDown ( 'fast' );
$ ( this ) . hide ();
} );
$ ( '#publicize-disconnected-form-hide' ) . click ( function () {
$ ( '#publicize-form' ) . slideUp ( 'fast' );
$ ( '#publicize-disconnected-form-show' ) . show ();
} );
$ ( '#publicize-form-edit' ) . click ( function () {
$ ( '#publicize-form' ) . slideDown ( 'fast' , function () {
var selBeg = 0 , selEnd = 0 ;
wpasTitle . focus ();
if ( ! wpasTitle . text () ) {
wpasTitle . text ( wpasTitle . attr ( 'placeholder' ) );
selBeg = wpasTitle . text () . indexOf ( postTitle . val () );
if ( selBeg < 0 ) {
selBeg = 0 ;
} else {
selEnd = selBeg + postTitle . val () . length ;
}
var domObj = wpasTitle . get ( 0 );
if ( domObj . setSelectionRange ) {
domObj . setSelectionRange ( selBeg , selEnd );
} else if ( domObj . createTextRange ) {
var r = domObj . createTextRange ();
r . moveStart ( 'character' , selBeg );
r . moveEnd ( 'character' , selEnd );
r . select ();
}
}
} );
$ ( '#publicize-defaults' ) . hide ();
$ ( this ) . hide ();
return false ;
} );
$ ( '#publicize-form-hide' ) . click ( function () {
var newList = $ . map ( $ ( '#publicize-form' ) . slideUp ( 'fast' ) . find ( ':checked' ), function ( el ) {
return $ . trim ( $ ( el ) . parent ( 'label' ) . text () );
} );
$ ( '#publicize-defaults' ) . html ( '<strong>' + newList . join ( '</strong>, <strong>' ) + '</strong>' ) . show ();
$ ( '#publicize-form-edit' ) . show ();
return false ;
} );
$ ( '.authorize-link' ) . click ( function () {
if ( authClick ) {
return false ;
}
authClick = true ;
$ ( this ) . after ( '<img src="images/loading.gif" class="alignleft" style="margin: 0 .5em" />' );
$ . ajaxSetup ( { async : false } );
if ( window . wp && window . wp . autosave ) {
window . wp . autosave . server . triggerSave ();
} else {
autosave ();
}
return true ;
} );
$ ( '.pub-service' ) . click ( function () {
var service = $ ( this ) . data ( 'service' ),
fakebox = '<input id="wpas-submit-' + service + '" type="hidden" value="1" name="wpas[submit][' + service + ']" />' ;
$ ( '#add-publicize-check' ) . append ( fakebox );
} );
publicizeConnTestStart = function () {
$ ( '#pub-connection-tests' )
. removeClass ( 'below-h2' )
. removeClass ( 'error' )
. removeClass ( 'publicize-token-refresh-message' )
. addClass ( 'test-in-progress' )
. html ( '' );
$ . post ( ajaxurl , { action : 'test_publicize_conns' }, publicizeConnTestComplete );
}
publicizeConnRefreshClick = function ( event ) {
event . preventDefault ();
var popupURL = event . currentTarget . href ;
var popupTitle = event . currentTarget . title ;
// open a popup window
// when it is closed, kick off the tests again
var popupWin = window . open ( popupURL , popupTitle , '' );
var popupWinTimer = window . setInterval ( function () {
if ( popupWin . closed !== false ) {
window . clearInterval ( popupWinTimer );
publicizeConnTestStart ();
}
}, 500 );
}
publicizeConnTestComplete = function ( response ) {
var testsSelector = $ ( '#pub-connection-tests' );
testsSelector
. removeClass ( 'test-in-progress' )
. removeClass ( 'below-h2' )
. removeClass ( 'error' )
. removeClass ( 'publicize-token-refresh-message' )
. html ( '' );
// If any of the tests failed, show some stuff
var somethingShownAlready = false ;
var facebookNotice = false ;
$ . each ( response . data , function ( index , testResult ) {
// find the li for this connection
if ( ! testResult . connectionTestPassed && testResult . userCanRefresh ) {
if ( ! somethingShownAlready ) {
testsSelector
. addClass ( 'below-h2' )
. addClass ( 'error' )
. addClass ( 'publicize-token-refresh-message' )
. append ( " <p><?php echo esc_html( __( 'Before you hit Publish, please refresh the following connection(s) to make sure we can Publicize your post:', 'jetpack' ) ); ?></p> " );
somethingShownAlready = true ;
}
if ( testResult . userCanRefresh ) {
testsSelector . append ( '<p/>' );
$ ( '<a/>' , {
'class' : 'pub-refresh-button button' ,
'title' : testResult . refreshText ,
'href' : testResult . refreshURL ,
'text' : testResult . refreshText ,
'target' : '_refresh_' + testResult . serviceName
} )
. appendTo ( testsSelector . children () . last () )
. click ( publicizeConnRefreshClick );
}
}
if ( ! testResult . connectionTestPassed && ! testResult . userCanRefresh ) {
$ ( '#wpas-submit-' + testResult . unique_id ) . prop ( " checked " , false ) . prop ( " disabled " , true );
if ( ! facebookNotice ) {
var message = '<p>'
+ testResult . connectionTestMessage
+ '</p><p>'
+ ' <a class="button" href="<?php echo esc_url( $this->publicize_settings_url ); ?>" rel="noopener noreferrer" target="_blank">'
2022-04-02 10:26:41 +02:00
+ '<?php echo esc_html( __( ' Update Your Sharing Settings ', ' jetpack ' ) ); ?>'
2019-11-15 23:26:29 +01:00
+ '</a>'
+ '<p>' ;
testsSelector
. addClass ( 'below-h2' )
. addClass ( 'error' )
. addClass ( 'publicize-token-refresh-message' )
. append ( message );
facebookNotice = true ;
}
}
} );
}
$ ( document ) . ready ( function () {
// If we have the #pub-connection-tests div present, kick off the connection test
if ( $ ( '#pub-connection-tests' ) . length ) {
publicizeConnTestStart ();
}
} );
} );
</ script >
< style type = " text/css " >
#publicize {
line - height : 1.5 ;
}
#publicize ul {
margin : 4 px 0 4 px 6 px ;
}
#publicize li {
margin : 0 ;
}
#publicize textarea {
margin : 4 px 0 0 ;
width : 100 %
}
#publicize ul.not-connected {
list - style : square ;
padding - left : 1 em ;
}
. publicize__notice - warning {
display : block ;
padding : 7 px 10 px ;
margin : 5 px 0 ;
border - left - width : 4 px ;
border - left - style : solid ;
font - size : 12 px ;
box - shadow : 0 1 px 3 px 0 rgba ( 0 , 0 , 0 , 0.1 );
}
. publicize - external - link {
display : block ;
text - decoration : none ;
margin - top : 8 px ;
}
. publicize - external - link__text {
text - decoration : underline ;
}
#publicize-title:before {
content : " \ f237 " ;
font : normal 20 px / 1 dashicons ;
speak : none ;
margin - left : - 1 px ;
padding - right : 3 px ;
vertical - align : top ;
- webkit - font - smoothing : antialiased ;
2021-04-27 08:32:47 +02:00
color : #8c8f94;
2019-11-15 23:26:29 +01:00
}
. post - new - php . authorize - link , . post - php . authorize - link {
line - height : 1.5 em ;
}
. post - new - php . authorize - message , . post - php . authorize - message {
margin - bottom : 0 ;
}
#poststuff #publicize .updated p {
margin : . 5 em 0 ;
}
. wpas - twitter - length - limit {
color : red ;
}
. publicize__notice - warning . dashicons {
font - size : 16 px ;
text - decoration : none ;
}
2022-04-02 10:26:41 +02:00
</ style >
< ? php
2019-11-15 23:26:29 +01:00
}
/**
2022-04-02 10:26:41 +02:00
* Get the connection label .
*
* @ param string $service_label Service ' s human - readable Label ( " Facebook " , " Twitter " , ... ) .
* @ param string $display_name Connection ' s human - readable Username ( " @jetpack " , ... ) .
2019-11-15 23:26:29 +01:00
* @ return string
*/
private function connection_label ( $service_label , $display_name ) {
return sprintf (
/* translators: %1$s: Service Name (Facebook, Twitter, ...), %2$s: Username on Service (@jetpack, ...) */
__ ( '%1$s: %2$s' , 'jetpack' ),
$service_label ,
$display_name
);
}
/**
* Extracts the connections that require reauthentication , for example , LinkedIn , when it switched v1 to v2 of its API .
*
* @ return array Connections that must be reauthenticated
*/
2022-04-02 10:26:41 +02:00
public function get_must_reauth_connections () {
2019-11-15 23:26:29 +01:00
$must_reauth = array ();
$connections = $this -> publicize -> get_connections ( 'linkedin' );
if ( is_array ( $connections ) ) {
foreach ( $connections as $index => $connection ) {
if ( $this -> publicize -> is_invalid_linkedin_connection ( $connection ) ) {
$must_reauth [ $index ] = 'LinkedIn' ;
}
}
}
return $must_reauth ;
}
/**
2022-04-02 10:26:41 +02:00
* Controls the metabox that is displayed on the post page
* Allows the user to customize the message that will be sent out to the social network , as well as pick which
* networks to publish to . Also displays the character counter and some other information .
*/
public function post_page_metabox () {
2019-11-15 23:26:29 +01:00
global $post ;
2022-04-02 10:26:41 +02:00
if ( ! $this -> publicize -> post_type_is_publicizeable ( $post -> post_type ) ) {
2019-11-15 23:26:29 +01:00
return ;
2022-04-02 10:26:41 +02:00
}
2019-11-15 23:26:29 +01:00
$connections_data = $this -> publicize -> get_filtered_connection_data ();
$available_services = $this -> publicize -> get_services ( 'all' );
2022-04-02 10:26:41 +02:00
if ( ! is_array ( $available_services ) ) {
2019-11-15 23:26:29 +01:00
$available_services = array ();
2022-04-02 10:26:41 +02:00
}
2019-11-15 23:26:29 +01:00
2022-04-02 10:26:41 +02:00
if ( ! is_array ( $connections_data ) ) {
2019-11-15 23:26:29 +01:00
$connections_data = array ();
2022-04-02 10:26:41 +02:00
}
2019-11-15 23:26:29 +01:00
?>
< div id = " publicize " class = " misc-pub-section misc-pub-section-last " >
< span id = " publicize-title " >
< ? php
2022-04-02 10:26:41 +02:00
esc_html_e ( 'Publicize:' , 'jetpack' );
2019-11-15 23:26:29 +01:00
2022-04-02 10:26:41 +02:00
if ( ! empty ( $connections_data ) ) :
$publicize_form = $this -> get_metabox_form_connected ( $connections_data );
2019-11-15 23:26:29 +01:00
2022-04-02 10:26:41 +02:00
$must_reauth = $this -> get_must_reauth_connections ();
if ( ! empty ( $must_reauth ) ) {
foreach ( $must_reauth as $connection_name ) {
?>
< span class = " notice-warning publicize__notice-warning " >
< ? php
printf (
/* translators: %s is the name of a Publicize service like "LinkedIn" */
esc_html__ (
2019-11-15 23:26:29 +01:00
'Your %s connection needs to be reauthenticated to continue working – head to Sharing to take care of it.' ,
'jetpack'
2022-04-02 10:26:41 +02:00
),
$connection_name // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
);
?>
< a
class = " publicize-external-link "
href = " <?php echo esc_url( publicize_calypso_url() ); ?> "
target = " _blank "
>
< span class = " publicize-external-link__text " >< ? php esc_html_e ( 'Go to Sharing settings' , 'jetpack' ); ?> </span>
< span class = " dashicons dashicons-external " ></ span >
</ a >
</ span >
2019-11-15 23:26:29 +01:00
< ? php
}
2022-04-02 10:26:41 +02:00
}
2019-11-15 23:26:29 +01:00
2022-04-02 10:26:41 +02:00
$labels = array ();
2019-11-15 23:26:29 +01:00
2022-04-02 10:26:41 +02:00
foreach ( $connections_data as $connection_data ) {
if ( ! $connection_data [ 'enabled' ] ) {
continue ;
2019-11-15 23:26:29 +01:00
}
2022-04-02 10:26:41 +02:00
$labels [] = sprintf (
'<strong>%s</strong>' ,
esc_html ( $this -> connection_label ( $connection_data [ 'service_label' ], $connection_data [ 'display_name' ] ) )
);
}
2019-11-15 23:26:29 +01:00
?>
2022-04-02 10:26:41 +02:00
< ? php // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- labels are already escaped above ?>
2019-11-15 23:26:29 +01:00
< span id = " publicize-defaults " >< ? php echo join ( ', ' , $labels ); ?> </span>
2022-04-02 10:26:41 +02:00
< a href = " # " id = " publicize-form-edit " >< ? php esc_html_e ( 'Edit' , 'jetpack' ); ?> </a> <a href="<?php echo esc_url( $this->publicize_settings_url ); ?>" rel="noopener noreferrer" target="_blank"><?php esc_html_e( 'Settings', 'jetpack' ); ?></a><br />
2019-11-15 23:26:29 +01:00
< ? php
2022-04-02 10:26:41 +02:00
else :
$publicize_form = $this -> get_metabox_form_disconnected ( $available_services );
2019-11-15 23:26:29 +01:00
?>
2022-04-02 10:26:41 +02:00
< strong >< ? php esc_html_e ( 'Not Connected' , 'jetpack' ); ?> </strong>
< a href = " # " id = " publicize-disconnected-form-show " >< ? php esc_html_e ( 'Edit' , 'jetpack' ); ?> </a><br />
2019-11-15 23:26:29 +01:00
< ? php
2022-04-02 10:26:41 +02:00
endif ;
2019-11-15 23:26:29 +01:00
?>
</ span >
< ? php
/**
* Filter the Publicize details form .
*
* @ module publicize
*
* @ since 2.0 . 0
*
* @ param string $publicize_form Publicize Details form appearing above Publish button in the editor .
*/
2022-04-02 10:26:41 +02:00
echo apply_filters ( 'publicize_form' , $publicize_form ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- Parts of the form are escaped individually in the code above.
2019-11-15 23:26:29 +01:00
?>
2022-04-02 10:26:41 +02:00
</ div >
< ? php
2019-11-15 23:26:29 +01:00
}
/**
* Generates HTML content for connections form .
*
* @ since 6.7
*
* @ global WP_Post $post The current post instance being published .
*
2022-04-02 10:26:41 +02:00
* @ param array $connections_data Array of connections .
2019-11-15 23:26:29 +01:00
* @ return array {
* Array of content for generating connection form .
*
* @ type string HTML content of form
* @ type array {
2022-04-02 10:26:41 +02:00
* Array of connection labels for active connections only .
2019-11-15 23:26:29 +01:00
*
* @ type string Connection label string .
* }
* }
*/
private function get_metabox_form_connected ( $connections_data ) {
global $post ;
2022-04-02 10:26:41 +02:00
$all_done = $this -> publicize -> post_is_done_sharing ();
2019-11-15 23:26:29 +01:00
$all_connections_done = true ;
ob_start ();
?>
< div id = " publicize-form " class = " hide-if-js " >
< ul >
< ? php
foreach ( $connections_data as $connection_data ) {
$all_connections_done = $all_connections_done && $connection_data [ 'done' ];
2022-04-02 10:26:41 +02:00
?>
2019-11-15 23:26:29 +01:00
2022-04-02 10:26:41 +02:00
< li >
< label for = " wpas-submit-<?php echo esc_attr( $connection_data['unique_id'] ); ?> " >
< input
type = " checkbox "
name = " wpas[submit][<?php echo esc_attr( $connection_data['unique_id'] ); ?>] "
id = " wpas-submit-<?php echo esc_attr( $connection_data['unique_id'] ); ?> "
class = " wpas-submit-<?php echo esc_attr( $connection_data['service_name'] ); ?> "
value = " 1 "
< ? php
checked ( true , $connection_data [ 'enabled' ] );
disabled ( false , $connection_data [ 'toggleable' ] );
?>
/>
< ? php if ( $connection_data [ 'enabled' ] && ! $connection_data [ 'toggleable' ] ) : // Need to submit a value to force a global connection to POST. ?>
< input
type = " hidden "
name = " wpas[submit][<?php echo esc_attr( $connection_data['unique_id'] ); ?>] "
value = " 1 "
/>
< ? php endif ; ?>
< ? php echo esc_html ( $this -> connection_label ( $connection_data [ 'service_label' ], $connection_data [ 'display_name' ] ) ); ?>
</ label >
</ li >
< ? php
2019-11-15 23:26:29 +01:00
}
$title = get_post_meta ( $post -> ID , $this -> publicize -> POST_MESS , true );
if ( ! $title ) {
$title = '' ;
}
$all_done = $all_done || $all_connections_done ;
?>
</ ul >
2022-04-02 10:26:41 +02:00
< label for = " wpas-title " >< ? php esc_html_e ( 'Custom Message:' , 'jetpack' ); ?> </label>
2019-11-15 23:26:29 +01:00
< span id = " wpas-title-counter " class = " alignright hide-if-no-js " > 0 </ span >
< textarea name = " wpas_title " id = " wpas-title " < ? php disabled ( $all_done ); ?> ><?php echo esc_textarea( $title ); ?></textarea>
< a href = " # " class = " hide-if-no-js button " id = " publicize-form-hide " >< ? php esc_html_e ( 'OK' , 'jetpack' ); ?> </a>
< input type = " hidden " name = " wpas[0] " value = " 1 " />
</ div >
< ? php if ( ! $all_done ) : ?>
< div id = " pub-connection-tests " ></ div >
< ? php endif ; ?>
2022-04-02 10:26:41 +02:00
< ? php
2019-11-15 23:26:29 +01:00
return ob_get_clean ();
}
2022-04-02 10:26:41 +02:00
/**
* Metabox that is shown when no services are connected .
*
* @ param array $available_services Array of available services for connecting .
*/
2019-11-15 23:26:29 +01:00
private function get_metabox_form_disconnected ( $available_services ) {
ob_start ();
2022-04-02 10:26:41 +02:00
?>
< div id = " publicize-form " class = " hide-if-js " >
2019-11-15 23:26:29 +01:00
< div id = " add-publicize-check " style = " display: none; " ></ div >
2022-04-02 10:26:41 +02:00
< ? php esc_html_e ( 'Connect to' , 'jetpack' ); ?> :
2019-11-15 23:26:29 +01:00
< ul class = " not-connected " >
< ? php foreach ( $available_services as $service_name => $service ) : ?>
< li >
2022-04-02 10:26:41 +02:00
< ? php /* translators: %s is the name of a Publicize service such as "LinkedIn" */ ?>
2019-11-15 23:26:29 +01:00
< a class = " pub-service " data - service = " <?php echo esc_attr( $service_name ); ?> " title = " <?php echo esc_attr( sprintf( __( 'Connect and share your posts on %s', 'jetpack' ), $this->publicize ->get_service_label( $service_name ) ) ); ?> " rel = " noopener noreferrer " target = " _blank " href = " <?php echo esc_url( $this->publicize ->connect_url( $service_name ) ); ?> " >
< ? php echo esc_html ( $this -> publicize -> get_service_label ( $service_name ) ); ?>
</ a >
</ li >
< ? php endforeach ; ?>
</ ul >
< a href = " # " class = " hide-if-no-js button " id = " publicize-disconnected-form-hide " >< ? php esc_html_e ( 'OK' , 'jetpack' ); ?> </a>
2022-04-02 10:26:41 +02:00
</ div >
< ? php
2019-11-15 23:26:29 +01:00
return ob_get_clean ();
}
}