// Get all layers
map.getStyle().layers
We can make this file beautiful and searchable if this error is corrected: Illegal quoting in line 2.
This file contains 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
phase;level;numero;critere;rgaa;wcag | |
DEV;-1,0;1.1;Structurer la zone d’entête principale avec <header role="banner">;9.2, 12.6;1.3.1(A), 2.4.1 (A), 4.1.2 (A) | |
DEV;-1,0;1.2;Identifier le moteur de recherche avec role="search";12.6;1.3.1(A), 2.4.1 (A), 4.1.2 (A) | |
DEV;-1,0;1.3;Structurer la zone de contenu principal avec <main role="main">;9.2, 12.6;1.3.1(A), 2.4.1 (A), 4.1.2 (A) | |
DEV;-1,0;1.4;Structurer les informations relatives au site avec <footer role="contentinfo">;9.2, 12.6;1.3.1(A), 2.4.1 (A), 4.1.2 (A) | |
DEV;-1,0;1.5;Structurer les menus de navigation principaux et secondaires avec <nav role="navigation">;9.2, 12.6;1.3.1(A), 2.4.1 (A), 4.1.2 (A) | |
DEV;-1,0;1.6;Structurer les menus de navigation avec des listes;9.3;1.3.1 (A) | |
MAQ,DEV;-1,0,1;1.7;Mettre en place une hiérarchie de titres logique et exhaustive avec les balises <h1> à <h6>;9.1;1.3.1 (A), 2.4.1 (A), 2.4.6 (AA), 4.1.2 (A) | |
DEV;-1,0,1;2.1;Renseigner un <title> précis sur chaque page;8.5, 8.6;2.4.2 (A) | |
DEV;-1,0;3.1;Renseigner la langue principale de la pa |
This file contains 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
/** | |
* @fileOverview The service | |
* | |
* @use | |
* | |
* const User = require('./user.model') | |
* const UserService = require('./user.service') | |
* module.exports = UserService(User) | |
* | |
* @requires ... |
This file contains 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
/*doc | |
--- | |
title: Breadcrumb | |
component: | |
notes: | |
- Note 1 | |
- Note 2 | |
see: | |
- link1 |
This file contains 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 | |
// Programmatically create files. | |
use Drupal\file\Entity\File; | |
$file = File::create([ | |
'uid' => 1, | |
'filename' => 'logo.svg', | |
'uri' => 'public://page/logo.svg', | |
'status' => 1, | |
]); |
This file contains 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
<div class="team__item" itemprop="employee"> | |
<div class="team__inner" itemscope="" itemtype="http://schema.org/Person"> | |
<div class="team__content"> | |
<div class="team__content_back"> | |
<h3 itemprop="name">Name</h3> | |
<p itemprop="jobTitle">JobTitle</p> | |
</div> | |
</div> | |
</div> |
This file contains 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
// ---- | |
// Sass (v3.3.4) | |
// Compass (v1.0.0.alpha.18) | |
// ---- | |
@function array-value($list, $key) { | |
@each $item in $list { | |
@if ($key == nth($item, 1)) { | |
@return nth($item, 2); |
This file contains 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 | |
// UPDATE::AxelRoche | |
$var_modal = array( | |
'id' => $_product->getId(), | |
'title' => $_product->getName(), | |
'price' => $_product->getPrice(), | |
'image' => $_product->getImageUrl(), | |
'qty' => 1, | |
); |
NewerOlder