The LoremIpsum kitCommand help you generate blind text and placeholders for testing purposes.
The usage is simple, just use
~~ LoremIpsum ~~
to generate three paragraphs with a lorem ipsum text.
~~ LoremIpsum paragraph[5] ~~
The LoremIpsum kitCommand help you generate blind text and placeholders for testing purposes.
The usage is simple, just use
~~ LoremIpsum ~~
to generate three paragraphs with a lorem ipsum text.
~~ LoremIpsum paragraph[5] ~~
For a general help to the kitCommands, the usage and the general available parameters please refer the kitCommand help.
RAL | RGB | HEX | DE | EN | FR | ES | IT | NL | |
---|---|---|---|---|---|---|---|---|---|
RAL 1000 | 190-189-127 | #BEBD7F | Grünbeige | Green beige | Beige vert | Beige verdoso | Beige verdastro | Groenbeige | |
RAL 1001 | 194-176-120 | #C2B078 | Beige | Beige | Beige | Beige | Beige | Beige | |
RAL 1002 | 198-166-100 | #C6A664 | Sandgelb | Sand yellow | Jaune sable | Amarillo arena | Giallo sabbia | Zandgeel | |
RAL 1003 | 229-190-001 | #E5BE01 | Signalgelb | Signal yellow | Jaune de sécurité | Amarillo señales | Giallo segnale | Signaalgeel | |
RAL 1004 | 205-164-052 | #CDA434 | Goldgelb | Golden yellow | Jaune or | Amarillo oro | Giallo oro | Goudgeel | |
RAL 1005 | 169-131-007 | #A98307 | Honiggelb | Honey yellow | Jaune miel | Amarillo miel | Giallo miele | Honinggeel | |
RAL 1006 | 228-160-016 | #E4A010 | Maisgelb | Maize yellow | Jaune maïs | Amarillo maiz | Giallo polenta | Maisgeel | |
RAL 1007 | 220-156-000 | #DC9D00 | Narzissengelb | Daffodil yellow | Jaune narcisse | Amarillo narciso | Giallo narciso | Narcissengeel | |
RAL 1011 | 138-102-066 | #8A6642 | Braunbeige | Brown beige | Beige brun | Beige pardo | Beige marrone | Bruinbeige |
###Introduction
###Parameters
<h2>~~ sitemodified ~~</h2> | |
<p>Dieses kitCommand zeigt Ihnen Datum und Uhrzeit der letzten Veränderung der Website an.</p> | |
<p>Platzieren Sie <code>~~ sitemodified ~~</code> in einem beliebigen WYSIWYG Abschnitt oder in Ihrem Template (Designvorlage) an der gewünschten Stelle.</p> | |
<p><i>Für dieses kitCommand stehen keine ergänzenden Parameter zur Verfügung.</i></p> |
<h2>~~ sitemodified ~~</h2> | |
<p>This kitCommand show you the date and time the website was last modified.</p> | |
<p>Just place <code>~~ sitemodified ~~</code> anywhere at a WYSIWYG section or within your template.</p> | |
<p><i>For this kitCommand are no additional parameters available.</i></p> |
Hilfe zu kitCommands
Diese Hilfedatei ist noch nicht ins Deutsche übersetzt, bitte verwenden Sie die englischsprachige Hilfe###Introduction
###General Parameters
// in /account/logout.php replace line 50-57 with the following code: | |
if(INTRO_PAGE) { | |
// header('Location: '.WB_URL.PAGES_DIRECTORY.'/index.php'); | |
header('Location: '.WB_URL.PAGES_DIRECTORY.'/intro.php'); | |
} else { | |
header('Location: '.WB_URL.'/index.php'); | |
} |
// get all routing objects | |
$patterns = $app['routes']->getIterator(); // seems to be changed in Silex 1.1.0 !!! ... ->current()->all(); | |
// walk through the routing objects | |
foreach ($patterns as $pattern) { | |
$match = $pattern->getPattern(); | |
echo "$match<br />"; | |
} |