GLPI version 9.5.0
⚠️ This documentation is written for a plugin calledperception
, you'll need to adapt function, array key, ... to you own plugin.
import { Directive, ElementRef, Input, OnChanges, Renderer2, SimpleChanges } from '@angular/core'; | |
@Directive({ | |
selector: '[appBtnLoading]' | |
}) | |
export class BtnLoadingDirective implements OnChanges { | |
@Input({required: true}) | |
appBtnLoading = false; | |
private readonly _LOADING_INDICATOR_ELEMENT!: HTMLElement; |
sass/ | |
| | |
|– base/ | |
| |– _reset.scss # Reset/normalize | |
| |– _typography.scss # Typography rules | |
| ... # Etc… | |
| | |
|– components/ | |
| |– _buttons.scss # Buttons | |
| |– _carousel.scss # Carousel |
{ | |
"$schema": "https://raw.githubusercontent.com/jsonresume/resume-schema/v1.0.0/schema.json", | |
"basics": { | |
"name": "Antoine DAUTRY", | |
"label": "Développeur Fullstack", | |
"picture": "https://media-exp1.licdn.com/dms/image/C4E03AQHJ7H8CEGXRzg/profile-displayphoto-shrink_800_800/0/1632729565334?e=1653523200&v=beta&t=5rDc9oIpEFIlfNar4EgpJbE9cprlYeZ7NnrqQ-z7wW8", | |
"email": "[email protected]", | |
"phone": "", | |
"website": "https://adautry.fr", | |
"summary": "", |
<div class="implantations"> | |
<mat-card class="implantations__item"> | |
<mat-card-title> | |
Centre de détention de Meulun <span class="implantations__badge implantations__badge-inactive">Inactif</span> | |
</mat-card-title> | |
<mat-card-content> | |
<p>10 quai de la courtille - 45000 Melun</p> | |
<button class="implantations__arrow"><mat-icon >chevron_right</mat-icon></button> | |
</mat-card-content> |
/** | |
* Blood theme for reveal.js | |
* Author: Antoine DAUTRY https://github.com/antoine1003 | |
* | |
* Designed to be used with highlight.js theme | |
* "monokai_sublime.css" available from | |
* https://github.com/isagalaev/highlight.js/ | |
* | |
* For other themes, change $codeBackground accordingly. | |
* |
Install XDebug extension on VSCode available here
In the root of your project create a .vscode
folder and inside create a lauch.json
. Put this code inside :
{
"version": "0.2.0",
<?php | |
namespace Deployer; | |
use Symfony\Component\Console\Input\InputArgument; | |
use Symfony\Component\Console\Input\InputOption; | |
use Symfony\Component\Dotenv\Dotenv; | |
require_once __DIR__.'/vendor/autoload.php'; | |
require 'recipe/symfony4.php'; |