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
| --- | |
| markmap: | |
| colorFreezeLevel: 2 | |
| --- | |
| # EadStock Creators (Business Rules) | |
| ## Core Structure (Cursos) | |
| - **Conceito Principal** | |
| - Projetos = Cursos Completos |
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 | |
| /** | |
| * Plugin Name: Membership 2 - Change Reg/Prof Fields | |
| * Plugin URI: https://premium.wpmudev.org/ | |
| * Description: Adds Custom fields to Registration/Profile and removes Username | |
| * Version: 1.0.0 | |
| * Author: Konstantinos Xenos @ WPMUDEV | |
| * Author URI: https://premium.wpmudev.org/ | |
| * License: GPLv2 or later | |
| */ |
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
| # to generate your dhparam.pem file, run in the terminal | |
| openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048 |
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
| /var/www/html/app/Http/Controllers/AuthController.php:55: | |
| array (size=8) | |
| 'id' => int 1 | |
| 'nome' => string 'usuário teste' (length=14) | |
| 'email' => string '[email protected]' (length=16) | |
| 'ativo' => int 1 | |
| 'created_at' => string '2020-02-05 14:54:44' (length=19) | |
| 'updated_at' => string '2020-02-05 14:54:44' (length=19) | |
| 'sistemas' => | |
| array (size=2) |
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
| /var/www/html/app/Http/Controllers/AuthController.php:55: | |
| array (size=2) | |
| 0 => | |
| array (size=9) | |
| 'id' => int 1 | |
| 'slug' => string 'accounts' (length=8) | |
| 'nome' => string 'Eadstock Accounts' (length=17) | |
| 'descricao' => string 'Gerenciador de contas de usuários' (length=34) | |
| 'subdominio' => string 'accounts.eadstock.com.br' (length=24) | |
| 'ativo' => int 1 |
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 | |
| namespace App; | |
| use Illuminate\Database\Eloquent\Model; | |
| class Sistema extends Model | |
| { | |
| public function users() | |
| { |
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 | |
| namespace App; | |
| use Illuminate\Database\Eloquent\Model; | |
| class PapelUsuario extends Model | |
| { | |
| protected $table = 'papel_usuarios'; | |
| public function users() |
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 | |
| namespace App; | |
| use Illuminate\Contracts\Auth\MustVerifyEmail; | |
| use Illuminate\Foundation\Auth\User as Authenticatable; | |
| use Illuminate\Notifications\Notifiable; | |
| use Tymon\JWTAuth\Contracts\JWTSubject; | |
| use Illuminate\Database\Eloquent\Model; |
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
| $(document).ready(function() { | |
| initHighlights(); | |
| }); | |
| var currentAnchor = null; | |
| var tooltipPointerPositions = { | |
| left: 46, | |
| width: 14 | |
| }; |
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
| function scroll(speed) { | |
| $('html').animate({ scrollTop: $(document).height() - $(window).height() }, speed, function() { | |
| window.print(); | |
| }); | |
| } | |
| $(document).ready(function(){ | |
| scroll(2000); | |
| }); |
NewerOlder