$ keytool -genkey -v -keystore debug.keystore -storepass android -alias androiddebugkey -keypass android -keyalg RSA -keysize 2048 -validity 10000 -dname "C=US, O=Android, CN=Android Debug"
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| app.run(function ($rootScope, $location, AuthenticationModel) { | |
| // Register listener to watch route changes. | |
| $rootScope.$on('$routeChangeStart', function (event, next, current) { | |
| if (!AuthenticationModel.isSignedIn() && next.requireAuthentication === true) { | |
| $location.path('/signin'); | |
| } | |
| }); | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| $teste = new WP_User(3); | |
| $key = get_password_reset_key($teste); | |
| print_r(check_password_reset_key($key, 'userlogin')); | |
| ?> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| INITIALISATION | |
| ============== | |
| load wp-config.php | |
| set up default constants | |
| load wp-content/advanced-cache.php if it exists | |
| load wp-content/db.php if it exists | |
| connect to mysql, select db | |
| load object cache (object-cache.php if it exists, or wp-include/cache.php if not) | |
| load wp-content/sunrise.php if it exists (multisite only) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| if ( ! defined( 'ABSPATH' ) ) { | |
| exit; // Exit if accessed directly | |
| } | |
| /** | |
| * Login | |
| */ | |
| class Custom_CPF_Login { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| rest_avatar_sizes | |
| rest_prepare_attachment | |
| rest_pre_insert_comment | |
| rest_comment_type_trashable | |
| comment_text |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .waves-effect { | |
| position: relative; | |
| cursor: pointer; | |
| display: inline-block; | |
| overflow: hidden; | |
| user-select: none; | |
| transition: all 0.3s ease-out; | |
| } | |
| .waves-effect .waves-ripple { | |
| position: absolute; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| add_action('admin_footer', 'funcao_texto' ); | |
| function funcao_texto(){ | |
| ?> | |
| <script> | |
| jQuery(document).ready(function(){ | |
| jQuery(document).find('#postbox-container-1 .inside').append('Texto aqui'); | |
| }); | |
| </script> | |
| <?php | |
| } |
NewerOlder