gyro/modules/staticpages/controller/base/routes/staticpageparameteizedroute.cls.php
Go to the documentation of this file.00001 <?php 00002 /** 00003 * This route is just to allow parameterized routes with stati cpages, which is deprecated 00004 */ 00005 class StaticPageParamterizedRoute extends ParameterizedRoute { 00006 public function weight_against_path($path) { 00007 return self::WEIGHT_NO_MATCH; 00008 } 00009 }