| Filter | Description | Example |
|---|---|---|
| allintext | Searches for occurrences of all the keywords given. | allintext:"keyword" |
| intext | Searches for the occurrences of keywords all at once or one at a time. | intext:"keyword" |
| inurl | Searches for a URL matching one of the keywords. | inurl:"keyword" |
| allinurl | Searches for a URL matching all the keywords in the query. | allinurl:"keyword" |
| intitle | Searches for occurrences of keywords in title all or one. | intitle:"keyword" |
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
| define([ | |
| 'jquery', | |
| 'Magento_Checkout/js/checkout-data', | |
| 'Magento_Checkout/js/model/quote' | |
| ],function ($, checkoutData, quote) { | |
| 'use strict'; | |
| return function (Component) { | |
| return Component.extend({ |
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
| #/bin/sh | |
| # | |
| # Don't change the following lines unless you know what you are doing | |
| # They execute the config options starting with 'do_' below | |
| grep -E -v -e '^\s*#' -e '^\s*$' <<END | \ | |
| sed -e 's/$//' -e 's/^\s*/\/usr\/bin\/raspi-config nonint /' | bash -x - | |
| # | |
| ############# INSTRUCTIONS ########### | |
| # | |
| # Change following options starting with 'do_' to suit your configuration |
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 | |
| error_reporting(1); | |
| ini_set('max_execution_time', 0); | |
| use \Magento\Framework\App\Bootstrap; | |
| require_once '/var/www/html/app/bootstrap.php'; | |
| $bootstrap = Bootstrap::create(BP, $_SERVER); | |
| $objectManager = $bootstrap->getObjectManager(); |
Nous le savons, WordPress est un outil formidable qui propose des évolutions toujours appréciables (ou pas).
La dernière en date, ne déroge pas à la règle surtout quand elle concerne la conformité RGPD 😃
Si vous n'avez pas encore fait le tour du sujet, voici un article de monsieur Jb Audras : WordPress version 4.9.6/7 : de nouveaux outils pour l’application du RGPD,
un autre article concernant WooCommerce : WooCommerce 3.4 GDPR features et la liste des choses à venir : Proposed Privacy Roadmap
C'est quand même cool tout ça !
Comme toutes nouvelles fonctionnalités, même si celle-ci facilite bien la vie aux administrateurs grâce à une interface soignée, l'envers du décor pour l
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
| 0⃣ 0, keycap, zero | |
| 1⃣ 1, number, one | |
| 🕜 1, 30, clock, time, one, thirty, 1:30, one-thirty | |
| 🕐 1, clock, time, one, 00, o’clock, 1:00, one o’clock | |
| 2⃣ 2, number, two | |
| 🕝 2, 30, clock, time, two, thirty, 2:30, two-thirty | |
| 🕑 2, clock, time, two, 00, o’clock, 2:00, two o’clock | |
| 3⃣ 3, keycap, three | |
| 🕞 3, 30, three, clock, time, thirty, 3:30, three-thirty | |
| 🕒 3, three, clock, time, 00, o’clock, 3:00, three o’clock |
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
| <code_scheme name="Magento 2" version="173"> | |
| <PHPCodeStyleSettings> | |
| <option name="ALIGN_KEY_VALUE_PAIRS" value="true" /> | |
| <option name="ALIGN_PHPDOC_PARAM_NAMES" value="true" /> | |
| <option name="ALIGN_PHPDOC_COMMENTS" value="true" /> | |
| <option name="ALIGN_ASSIGNMENTS" value="true" /> | |
| <option name="PHPDOC_BLANK_LINES_AROUND_PARAMETERS" value="true" /> | |
| <option name="PHPDOC_WRAP_LONG_LINES" value="true" /> | |
| <option name="LOWER_CASE_BOOLEAN_CONST" value="true" /> | |
| <option name="LOWER_CASE_NULL_CONST" value="true" /> |
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 Hevelop\Example\Console\Command; | |
| use Symfony\Component\Console\Command\Command; | |
| use Magento\Framework\Mail\TransportInterfaceFactory; | |
| /** | |
| * Class SendMailWithoutTemplate | |
| */ | |
| class SendMailWithoutTemplate extends Command | |
| { |
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 Your\Module; | |
| class Example | |
| { | |
| /** | |
| * @var Helper\Translation | |
| */ | |
| private $translation; |