Changeset 2829598
- Timestamp:
- 12/06/2022 08:51:27 PM (3 years ago)
- Location:
- hello-login/trunk
- Files:
-
- 5 edited
-
CHANGELOG.md (modified) (1 diff)
-
hello-login.php (modified) (2 diffs)
-
includes/hello-login-settings-page.php (modified) (3 diffs)
-
languages/hello-login.pot (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
hello-login/trunk/CHANGELOG.md
r2829541 r2829598 1 1 # Hellō Login Changelog 2 3 ## 1.0.10 4 5 * Improvement: show settings form in debug mode 2 6 3 7 ## 1.0.9 -
hello-login/trunk/hello-login.php
r2829541 r2829598 17 17 * Plugin URI: https://github.com/hellocoop/wordpress 18 18 * Description: Free and simple to setup plugin provides registration and login with the Hellō Wallet. Users choose from popular social login, email, or crypto wallet. Setup in 7 clicks, not 7 hours. 19 * Version: 1.0. 919 * Version: 1.0.10 20 20 * Requires at least: 4.9 21 21 * Requires PHP: 7.2 … … 85 85 * @var string 86 86 */ 87 const VERSION = '1.0. 9';87 const VERSION = '1.0.10'; 88 88 89 89 /** -
hello-login/trunk/includes/hello-login-settings-page.php
r2829541 r2829598 484 484 485 485 $api_url = rest_url( 'hello-login/v1/auth_url' ); 486 487 $debug = isset( $_GET['debug'] ); 488 $configured = ! empty( $this->settings->client_id ); 486 489 ?> 487 490 <div class="wrap"> 488 491 <h2><?php print esc_html( get_admin_page_title() ); ?></h2> 489 492 490 <?php if ( empty( $this->settings->client_id )) { ?>491 <p><h2>To use Hellō, you must configure your site. Hellō Quickstart will get you up and running in seconds. You will create a Hellō Wallet if you don't have one already </h2></p>493 <?php if ( ! $configured ) { ?> 494 <p><h2>To use Hellō, you must configure your site. Hellō Quickstart will get you up and running in seconds. You will create a Hellō Wallet if you don't have one already.</h2></p> 492 495 493 496 <form method="get" action="https://quickstart.hello.coop/"> … … 501 504 </form> 502 505 503 <?php } else { ?> 504 506 <?php } ?> 507 508 <?php if ( $configured || $debug ) { ?> 505 509 <?php if ( empty( get_user_meta( get_current_user_id(), 'hello-login-subject-identity', true ) ) ) { ?> 506 510 <p id="link-hello-wallet"><h2>You are logged in with a username and a password. Link your Hellō Wallet to use Hellō in the future.</h2></p> … … 535 539 <?php } ?> 536 540 537 <?php if ( isset( $_GET['debug'] )) { ?>541 <?php if ( $debug ) { ?> 538 542 <h4>Debug</h4> 539 <p>Hellō user id: <code><?php print esc_html( get_user_meta( get_current_user_id(), 'hello-login-subject-identity', true ) ) ?></code></p> 543 544 <p>Hellō user id: <code><?php print esc_html( get_user_meta( get_current_user_id(), 'hello-login-subject-identity', true ) ); ?></code></p> 545 546 <p>Settings:</p> 540 547 <pre> 541 <?php print esc_html( var_dump( $this->settings->get_values()) ); ?>548 <?php var_dump( $this->settings->get_values() ); ?> 542 549 </pre> 543 550 } -
hello-login/trunk/languages/hello-login.pot
r2829541 r2829598 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Hellō Login 1.0. 9\n"5 "Project-Id-Version: Hellō Login 1.0.10\n" 6 6 "Report-Msgid-Bugs-To: " 7 7 "https://github.com/hellocoop/wordpress/issues\n" -
hello-login/trunk/readme.txt
r2829541 r2829598 5 5 Requires at least: 4.9 6 6 Tested up to: 6.1 7 Stable tag: 1.0. 97 Stable tag: 1.0.10 8 8 Requires PHP: 7.2 9 9 License: GPLv2 or later … … 81 81 == Changelog == 82 82 83 = 1.0.10 = 84 85 * Improvement: show settings form in debug mode 86 83 87 = 1.0.9 = 84 88
Note: See TracChangeset
for help on using the changeset viewer.