PluginProbe ʕ •ᴥ•ʔ
Firebase Authentication / 1.3.6
Firebase Authentication v1.3.6
1.7.0 trunk 1.0.0 1.1.1 1.1.2 1.1.3 1.1.4 1.2.0 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.3.7 1.4.0 1.4.1 1.4.2 1.4.3 1.4.4 1.4.5 1.4.6 1.4.8 1.5.0 1.5.1 1.5.2 1.5.3 1.5.4 1.5.5 1.5.6 1.5.7 1.5.8 1.5.9 1.6.0 1.6.1 1.6.2 1.6.3 1.6.4 1.6.5 1.6.6 1.6.7 1.6.8 1.6.9
firebase-authentication / admin / partials / config / class-mo-firebase-authentication-advsettings.php
firebase-authentication / admin / partials / config Last commit date
class-mo-firebase-authentication-advsettings.php 5 years ago class-mo-firebase-authentication-config.php 5 years ago class-mo-firebase-authentication-hooks.php 5 years ago class-mo-firebase-authentication-licensing_plans.php 5 years ago
class-mo-firebase-authentication-advsettings.php
80 lines
1 <?php
2
3
4 class Mo_Firebase_Authentication_Admin_AdvSettings {
5
6 public static function mo_firebase_authentication_advsettings() {
7 ?>
8 <div class="row">
9 <div class="col-md-12">
10 <div class="mo_firebase_auth_card" style="width:90%">
11 <form name="integration_form" id="mo_firebase_auth_integration" method="post">
12 <input type="hidden" name="option" value="mo_firebase_auth_integration">
13 <h6><b>Sync WordPress and Firebase users </b><small style="color: #FF0000"><a href="admin.php?page=mo_firebase_authentication&tab=licensing_plans">[PREMIUM]</a></small></h6><br>
14
15 <div style="display:inline-block"><label class="mo_firebase_auth_switch">
16 <input value="1" name="mo_enable_firebase_auto_register" type="checkbox" id="mo_enable_firebase_auto_register" disabled>
17 <span class="mo_firebase_auth_slider round"></span>
18 <input type="hidden" name="option" value="">
19 </label>
20 </div>
21 <strong>Auto register users into Firebase</strong>
22 <br>
23 <h8>Enabling this option will create new user in Firebase project when a user registers in WordPress site.</h8>
24 </form>
25 </div>
26 </div>
27 </div>
28 <div class="row">
29 <div class="col-md-12">
30 <div class="mo_firebase_auth_card" style="width:90%">
31 <form name="integration_form" id="mo_firebase_auth_integration" method="post">
32 <input type="hidden" name="option" value="mo_firebase_auth_integration">
33 <h6><b>Login & Registeration Form Integration </b><small style="color: #FF0000"><a href="admin.php?page=mo_firebase_authentication&tab=licensing_plans">[PREMIUM]</a></small></h6><br>
34 <h8>Select below if you want to allow users to login using firebase credentials with third party or custom login/registration page.</h8><br><br>
35 <input type="checkbox" name = "mo_firebase_auth_woocommerce_intigration" id = "mo_firebase_auth_woocommerce_intigration" value= "1" onclick="mo_firebase_auth_manageWCDiv();" disabled>
36 <img src="<?php echo dirname(plugin_dir_url( __FILE__ ));?>/../images/woocommerce-circle.png" width="50px">WooCommerce
37 <br><br>
38 <input type="checkbox" name = "mo_firebase_auth_buddypress_intigration"value="1" disabled>
39 <img src="<?php echo dirname(plugin_dir_url( __FILE__ ));?>/../images/buddypress.png" width="50px"> BuddyPress
40 <br><br>
41 <input type="checkbox" name = "mo_firebase_auth_custom_form_intigration"value="1" disabled>Custom Login Form&emsp;<div class="mo-firebase-auth-tooltip">&#x1F6C8;<div class="mo-firebase-auth-tooltip-text mo-tt-right">Select if you have any custom login or registeration form or using any other third party plugin to create these forms.</div> </div>
42 <br>
43 <p style="font-size: 15px;margin-left: 10px;">You can select this option if you have any custom login or registeration form or using any other third party plugin to create these forms.</p>
44 <br><br>
45 <input type="submit" style="text-align:center;"class="btn btn-primary" style="width:120px;height:40px" name="integration_settings" value=" Save Settings" id = "mo_auth_integration_save_settings_button" disabled><br>
46 </form>
47 </div>
48 </div>
49 </div>
50 <div class="row">
51 <div class="col-md-12">
52 <div class="mo_firebase_auth_card" style="width:90%">
53 <form name="integration_form" id="mo_firebase_auth_integration" method="post">
54 <input type="hidden" name="option" value="mo_firebase_auth_integration">
55 <h6><b>Firebase Authentication methods </b><small style="color: #FF0000"> <a href="admin.php?page=mo_firebase_authentication&tab=licensing_plans">[ENTERPRISE]</a></small></h6><br>
56 <h8>Select any one method to Login into your site using one of the Firebase Authentication method. </h8><br><br>
57 <!-- <input type="radio" id="emailPassword" value="emailPassword" disabled>
58 <label for="male">Email and Password</label><br> -->
59 <input type="checkbox" id="google" value="google" disabled>
60 <label for="female">Google</label><br>
61 <input type="checkbox" id="facebook" value="facebook" disabled>
62 <label for="other">Facebook</label><br>
63 <input type="checkbox" id="github" value="github" disabled>
64 <label for="other">GitHub</label><br>
65 <input type="checkbox" id="twitter" value="twitter" disabled>
66 <label for="other">Twitter</label><br>
67 <input type="checkbox" id="microsoft" value="microsoft" disabled>
68 <label for="other">Microsoft</label><br>
69 <input type="checkbox" id="yahoo" value="yahoo" disabled>
70 <label for="other">Yahoo</label><br>
71 <input type="checkbox" id="phone" value="phone" disabled>
72 <label for="other">Phone</label><br><br>
73 <input type="submit" style="text-align:center;"class="btn btn-primary" style="width:120px;height:40px" name="authentication_settings" value=" Save Settings" id = "mo_auth_authentication_save_settings_button" disabled><br>
74 </form>
75 </div>
76 </div>
77 </div>
78 <?php
79 }
80 }