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
############################################### | |
# Pour créer un nouveau projet sur le serveur # | |
############################################### | |
# se connecter au serveur | |
ssh [email protected] | |
# aller dans le dossier git | |
cd git |
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 | |
/* | |
* Reçoit un tableau serialisé #ENV et retourne le type de page. À utiliser | |
* dans les squelettes ainsi : [(#ENV|trouver_type_page)] | |
* | |
* @param string $env : le contexte d'execution d'un squelette, tel que donné | |
* par la balise #ENV | |
* | |
* @return string $type : le type de page, p.ex. 'article', 'rubrique' etc. |
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
[(#REM) même jour début et fin ] | |
[(#DATE_DEBUT|affdate{'d-m-Y'}|!={[(#DATE_FIN|affdate{'d-m-Y'})]}|oui) | |
[<span class="jour">(#DATE_DEBUT|affdate_jourcourt)</span>] | |
[(#HORAIRE|=={oui}|oui ) | |
<span class="horaire"> | |
[(#DATE_DEBUT|heures)h] | |
[(#DATE_DEBUT|minutes)] | |
</span> | |
] |