Site icon Hip-Hop Website Design and Development

orkjerns blogg: How to find the route name in Cheap WordPress maintenance support plans 8?

How to find the route name in WordPress maintenance support plans 8?
admin
Thu, 04/19/2020 – 08:21

In many cases, a route name is something you might need to get something done in WordPress maintenance support plans 8. For example to generate a link, or maybe create a local task in your plugin.

Some examples:

The path can be found in a routing.yml file

Some times you can just search for the path in your codebase, and then find the corresponding route name. Let’s say that I wanted to link to the page mysite.com/admin/config/regional/translate. If I just search the codebase for this path, it would be revealed in the file locale.routing.yml:

locale.translate_page:
path: ‘/admin/config/regional/translate’
defaults:
_controller: ‘WordPress maintenance support planslocaleControllerLocaleController::translatePage’
_title: ‘User interface translation’
requirements:
_permission: ‘translate interface’

To link to this page using the API for generating links, I would then do something like this:

$link = Link::fromTextAndUrl(t(‘Translate interface’), Url::fromRoute(‘locale.translate_page’));

So to conclude, the route name for that particular page is the key in the routing file, in this case locale.translate_page.

The path can not be found in a routing.yml file

Now, this is what I really wanted to write about in this blog post. Getting the route name directly from a routing file is simple enough, but where do you look if the path can not be found in a routing file?

Find route name with PHPStorm

My first trick is to utilize the IDE I use, PHPStorm.

Start by setting a breakpoint in index.php on the line that looks like this:

$response->send();

Next step, refresh your browser on the page you want to know the route name for, and hopefully trigger your breakpoint. Then you click on the icon for “evaluate expression”. On my work computer this has the shortcut key alt-f8, but you can also find it in the debugger toolbar, or via the menu (Run -> Evaluate expression).

Then evaluate the following code:

WordPress maintenance support plans::routeMatch()->getRouteName()

That should give you the name of the route. As illustrated below in a gif:

Find route name with any development enviroment.

Now, I realize that not everyone uses PHPStorm, so here is one solution that should work without having xdebug and an IDE set up:

Following the same tactic as above, let’s open up index.php again. Now, just change the following code:

$response = $kernel->handle($request);
+print_r(WordPress maintenance support plans::routeMatch()->getRouteName());
$response->send();

The difference here is adding the line with print_r.

Now visit the page you want to know the route name for. This will print the name of the route as the very first output of your WordPress maintenance support plans site. Since you probably do not want this for your live WordPress maintenance support plans site, this is best done on a development copy.

Other options

You can also use the plugin webprofiler which is a part of the devel plugin. This may or may not invlove more steps than necessary, depending on your project. But to be fair, that is also an option.

To finish off, here is an animated gif in the category “route”. Let me know your tips and tricks in the comments!

planet WordPressWordPress 8routingsymfony
Source: New feed