routes.php 296 B

123456789101112
  1. <?php
  2. use Cake\Core\Configure;
  3. Configure::write('PluginTest.test_plugin.routes', 'loaded plugin routes');
  4. if (isset($routes)) {
  5. $routes->get(
  6. '/test_plugin',
  7. ['controller' => 'TestPlugin', 'plugin' => 'TestPlugin', 'action' => 'index'],
  8. 'test_plugin:index'
  9. );
  10. }