Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added customisation hooks to the authorize template #196

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 12 additions & 10 deletions theme/oauth1-authorize.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@
$url = site_url( 'wp-login.php?action=oauth1_authorize', 'login_post' );
$url = add_query_arg( 'oauth_token', $token_key, $url );

// Filterable Prefs
$pref_show_avatar = apply_filters( 'json_oauth1.theme.authorize.show_avatar', true, $consumer );
$pref_title = apply_filters( 'json_oauth1.theme.authorize.title', sprintf( __('Connect %1$s'), $consumer->post_title ), $consumer );
$pref_description = apply_filters( 'json_oauth1.theme.authorize.description', sprintf( __( '<strong>%1$s</strong>,<br/> "%2$s" would like to connect to %3$s.' ), $current_user->user_login, $consumer->post_title, get_bloginfo( 'name' ) ), $consumer );

?>

<style>
Expand Down Expand Up @@ -55,23 +60,20 @@

<form name="oauth1_authorize_form" id="oauth1_authorize_form" action="<?php echo esc_url( $url ); ?>" method="post">

<h2 class="login-title"><?php echo esc_html( sprintf( __('Connect %1$s'), $consumer->post_title ) ) ?></h2>
<h2 class="login-title"><?php echo esc_html( $pref_title ) ?></h2>

<?php do_action( 'json_oauth1.theme.authorize.before_login_info', $consumer ); ?>

<div class="login-info">

<?php echo get_avatar( $current_user->ID, '78' ); ?>
<?php if ( $pref_show_avatar ): ?><?php echo get_avatar( $current_user->ID, '78' ); ?><?php endif; ?>

<p><?php
printf(
__( 'Howdy <strong>%1$s</strong>,<br/> "%2$s" would like to connect to %3$s.' ),
$current_user->user_login,
$consumer->post_title,
get_bloginfo( 'name' )
)
?></p>
<p><?php echo $pref_description; ?></p>

</div>

<?php do_action( 'json_oauth1.theme.authorize.after_login_info', $consumer ); ?>

<?php
/**
* Fires inside the lostpassword <form> tags, before the hidden fields.
Expand Down