Changeset 790738
- Timestamp:
- 10/20/2013 03:54:50 AM (12 years ago)
- Location:
- qr-code-login-by-tagauth/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (2 diffs)
-
tagauth.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
qr-code-login-by-tagauth/trunk/readme.txt
r789062 r790738 3 3 Donate link: http://www.inhao.com/ 4 4 Tags: apsense, qr code, qr scanner, login by qr code, tagauth, tag auth,tagbook,inhao 5 Requires at least: 1.05 Requires at least: 3.5 6 6 Tested up to: 3.6.1 7 7 Stable tag: 3.6.1 … … 55 55 == Changelog == 56 56 57 = 1.1 = 58 * Change the visibility of "Get QR Key". All users can see it. 59 57 60 = 1.0 = 58 61 * Initial release -
qr-code-login-by-tagauth/trunk/tagauth.php
r789136 r790738 4 4 Plugin Name: QR Code Login by TagAuth 5 5 Description: Use mobile to login your wordpress site by scanning QR Code. 6 Version: 1 6 Version: 1.1 7 7 Author: Inhao.com 8 8 Tags: QR Code Login, inhao, tagbook, scan qr code, login wp by qrcode, apsense … … 20 20 add_action('admin_menu', 'tagauth_admin_menu'); 21 21 } 22 else23 {24 add_action('admin_menu', 'tagauth_user_menu');25 }26 22 27 23 function tagauth_admin_menu() { 28 add_dashboard_page('Get QR Key', 'Get QR Key', ' manage_options', 'get_qr_key', 'get_qr_key');24 add_dashboard_page('Get QR Key', 'Get QR Key', 'read', 'get_qr_key', 'get_qr_key'); 29 25 add_options_page('', 'TagAuth', 'manage_options', __FILE__, 'TagAuth_Settings', '', 6); 30 26 } 31 27 32 28 function tagauth_user_menu() { 33 add_dashboard_page('Get QR Key', 'Get QR Key', ' manage_options', 'get_qr_key', 'get_qr_key');29 add_dashboard_page('Get QR Key', 'Get QR Key', 'read', 'get_qr_key', 'get_qr_key'); 34 30 } 35 31
Note: See TracChangeset
for help on using the changeset viewer.