| 1 |
<?php |
| 2 |
/** |
| 3 |
* Constants |
| 4 |
* |
| 5 |
* @package MagicLogin |
| 6 |
*/ |
| 7 |
|
| 8 |
namespace MagicLogin\Constants; |
| 9 |
|
| 10 |
const TOKEN_USER_META = 'magic_login_token'; |
| 11 |
const SETTING_OPTION = 'magic_login_settings'; |
| 12 |
const CRON_HOOK_NAME = 'magic_login_cleanup_expired_tokens'; |
| 13 |
|
| 14 |
|
| 15 |
// urls |
| 16 |
const DOCS_URL = 'https://handyplugins.co/docs-category/magic-login-pro/'; |
| 17 |
const BLOG_URL = 'https://handyplugins.co/blog/'; |
| 18 |
const FAQ_URL = 'https://handyplugins.co/magic-login-pro/#faq'; |
| 19 |
const SUPPORT_URL = 'https://wordpress.org/support/plugin/magic-login/'; |
| 20 |
const GITHUB_URL = 'https://github.com/HandyPlugins'; |
| 21 |
const TWITTER_URL = 'https://x.com/HandyPlugins'; |
| 22 |
|