cloudflare/Cloudflare-WordPress
Publicmirrored fromhttps://github.com/cloudflare/Cloudflare-WordPress
src/WordPress/PluginRoutes.php
21lines · modecode
| 1 | <?php |
| 2 | |
| 3 | namespace CF\WordPress; |
| 4 | |
| 5 | class PluginRoutes extends \CF\API\PluginRoutes |
| 6 | { |
| 7 | /** |
| 8 | * @param $routeList |
| 9 | * |
| 10 | * @return mixed |
| 11 | */ |
| 12 | public static function getRoutes($routeList) |
| 13 | { |
| 14 | foreach ($routeList as $routePath => $route) { |
| 15 | $route['class'] = '\CF\WordPress\PluginActions'; |
| 16 | $routeList[$routePath] = $route; |
| 17 | } |
| 18 | |
| 19 | return $routeList; |
| 20 | } |
| 21 | } |