-
ARIA Authoring Practices Guide (APG)
https://www.w3.org/WAI/ARIA/apg/ -
Design System
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 | |
if (rex::isBackend()) { | |
// Ausgabe im Backend ohne Wrapper | |
echo 'item'; | |
return; | |
} | |
// Aktueller Slice | |
$slice = '<li>item</li>'; |
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 | |
if (!function_exists('pr')) { | |
function pr() | |
{ | |
array_map(function ($x) { | |
echo '<pre>'; print_r($x); echo '</pre>'; | |
}, func_get_args()); die; | |
} |
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 | |
/* | |
REDAXO 4.5 - Ctypes sortieren | |
Sortierung erfolgt mit vorangestellter Zahl beim Ctypenamen im Template. | |
Bspl: | |
01 - Inhalt | |
02 - rechte Spalte | |
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 | |
// -------------------------------- Einstellungen | |
$article_id = 2; // Artikel Id | |
$clang = false; // Sprachen Id --------- false = aktuelle Sprache | |
$ctype = 0; // Ctype Id ------------ 0 = alle Ctypes | |
$slices_amount = 2; // Anzahl der Slices --- 0 = alle Slices |
Locate the section for your github remote in the .git/config
file. It looks like this:
[remote "origin"]
fetch = +refs/heads/*:refs/remotes/origin/*
url = [email protected]:joyent/node.git
Now add the line fetch = +refs/pull/*/head:refs/remotes/origin/pr/*
to this section. Obviously, change the github url to match your project's URL. It ends up looking like this: