system/modules/pct_seo_helper/config/autoload.php line 21

Open in your IDE?
  1. <?php
  2. /**
  3.  * Contao Open Source CMS
  4.  *
  5.  * Copyright (c) 2005-2019 Leo Feyer
  6.  *
  7.  * @copyright    Tim Gatzky 2019, Premium-Contao-Themes
  8.  * @author        Tim Gatzky <info@tim-gatzky.de>
  9.  * @package     pct_seo_helper
  10.  * @link        https://contao.org, https://www.premium-contao-themes.com
  11.  * @license     http://www.gnu.org/licenses/lgpl-3.0.html LGPL
  12.  */
  13. /**
  14.  * Register the namespaces
  15.  */
  16. \Contao\ClassLoader::addNamespaces(array
  17. (
  18.     'PCT\SEO',
  19. ));
  20. /**
  21.  * Register the classes
  22.  */
  23. \Contao\ClassLoader::addClasses(array
  24. (
  25.     'PCT\SEO'                     => 'system/modules/pct_seo_helper/PCT/SEO.php',
  26.     'PCT\SEO\ContaoCallbacks'     => 'system/modules/pct_seo_helper/PCT/SEO/ContaoCallbacks.php',
  27. ));