need to run : drush ev 'drupal_flush_all_caches();' drush cr and restart nginx and php-fpm before loading the website
32 lines
807 B
YAML
32 lines
807 B
YAML
# @Author: Bachir Soussi Chiadmi <bach>
|
|
# @Date: 13-12-2017
|
|
# @Email: bachir@figureslibres.io
|
|
# @Filename: edlp_home.routing.yml
|
|
# @Last modified by: bach
|
|
# @Last modified time: 20-12-2017
|
|
# @License: GPL-V3
|
|
|
|
edlp_home.home:
|
|
path: '/home'
|
|
defaults:
|
|
_controller: '\Drupal\edlp_home\Controller\HomeController::home'
|
|
_title: 'Home'
|
|
requirements:
|
|
_permission: 'access content'
|
|
|
|
edlp_home.home_mobile:
|
|
path: '/home_m'
|
|
defaults:
|
|
_controller: '\Drupal\edlp_home\Controller\HomeController::home_mobile'
|
|
_title: 'Home'
|
|
requirements:
|
|
_permission: 'access content'
|
|
|
|
edlp_home.home_mobileajax:
|
|
path: '/home_m/ajax'
|
|
defaults:
|
|
_controller: '\Drupal\edlp_home\Controller\HomeController::home_mobilejson'
|
|
_title: 'Home'
|
|
requirements:
|
|
_permission: 'access content'
|