system/modules/slick/config/config.php line 24

Open in your IDE?
  1. <?php
  2. /**
  3.  * Slick carousel integration for Contao Open Source CMS
  4.  *
  5.  * Copyright (C) 2015 Rhyme.Digital
  6.  *
  7.  * @package    Slick
  8.  * @link       http://rhyme.digital
  9.  * @license    http://opensource.org/licenses/lgpl-3.0.html
  10.  */
  11. /**
  12.  * Slick Version
  13.  */
  14. define('SLICK_VERSION''1.8.1');
  15. /**
  16.  * Content Elements
  17.  */
  18. array_insert($GLOBALS['TL_CTE']['slider'], 0, array
  19. (
  20.         'slick_start'                 => 'Rhyme\ContentElement\SlickStart',
  21.         'slick_stop'                  => 'Rhyme\ContentElement\SlickStop',
  22. ));
  23. /**
  24.  * Wrappers for Elements
  25.  */
  26. $GLOBALS['TL_WRAPPERS']['start'][]     = 'slick_start';
  27. $GLOBALS['TL_WRAPPERS']['stop'][]     = 'slick_stop';