@@ 238-240 (lines=3) @@ | ||
235 | $universalCallback = $module->id.'#'.$method; |
|
236 | $universalRoutes->merge($this->getParametrizedRoutes($module, $prefix, $method)); |
|
237 | break; |
|
238 | case self::CTR_BASE: // Add base controller action |
|
239 | $baseRoute = new Route($prefix . '/', $module->id.'#'.$method, $module->id . self::CTR_BASE); |
|
240 | break; |
|
241 | case self::CTR_CACHE_BASE: |
|
242 | $baseRoute = new Route($prefix . '/', $module->id.'#'.$method, $module->id . self::CTR_CACHE_BASE); |
|
243 | break; |
|
@@ 241-243 (lines=3) @@ | ||
238 | case self::CTR_BASE: // Add base controller action |
|
239 | $baseRoute = new Route($prefix . '/', $module->id.'#'.$method, $module->id . self::CTR_BASE); |
|
240 | break; |
|
241 | case self::CTR_CACHE_BASE: |
|
242 | $baseRoute = new Route($prefix . '/', $module->id.'#'.$method, $module->id . self::CTR_CACHE_BASE); |
|
243 | break; |
|
244 | case self::CTR_POST:// not implemented |
|
245 | case self::CTR_PUT:// not implemented |
|
246 | case self::CTR_DELETE:// not implemented |