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
| IM HEAD | |
| ############ | |
| <script> | |
| var elricco = {}; | |
| elricco.funcs = []; | |
| </script> | |
| MODULAUSGABE | |
| ############ | |
| <?php if (!rex::isBackend()): ?> |
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 | |
| return Symfony\CS\Config\Config::create() | |
| ->level(Symfony\CS\FixerInterface::SYMFONY_LEVEL) | |
| ->fixers([ | |
| 'short_array_syntax', | |
| 'ordered_use', | |
| ]) | |
| ; |
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 | |
| class EmailTestCase extends PHPUnit_Framework_TestCase { | |
| /** | |
| * @var \Guzzle\Http\Client | |
| */ | |
| private $mailcatcher; | |
| public function setUp() | |
| { |
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 | |
| $nav = new advanced_rex_navigation(); | |
| $main_navigation = $nav->get(0,3,FALSE,TRUE,'main'); | |
| // 'main' ist der name des navigationstyps | |
| // bitte anpassen je nach einstellung im meta-info-addon | |
| /* weitere setter methoden: | |
| $nav->setClasses(array('menu_item')); | |
| $nav->setSeperator('/'); |
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
| /* | |
| * object.watch polyfill | |
| * | |
| * 2012-04-03 | |
| * | |
| * By Eli Grey, http://eligrey.com | |
| * Public Domain. | |
| * NO WARRANTY EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK. | |
| */ |