PluginProbe
FlyWP Helper – Page Cache, Page Optimization, Emails for FlyWP Server Control Panel / 0.3
FlyWP Helper – Page Cache, Page Optimization, Emails for FlyWP Server Control Panel v0.3
1.7.1 1.7.0 1.6.0 1.5.2 trunk 0.1 0.2.0 0.2.1 0.3 0.3.1 0.3.2 0.3.3 0.3.4 0.4 0.4.1 0.4.2 0.4.3 1.0 1.1 1.2 1.3.1 1.4.0 1.4.1 1.5.0 1.5.1 All 26 releases
flywp / includes / Admin / Plugins.php

Plugins.php in FlyWP Helper – Page Cache, Page Optimization, Emails for FlyWP Server Control Panel 0.3, at includes/Admin/Plugins.php

31 lines 555 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace FlyWP\Admin;
4
5 class Plugins {
6
7 /**
8 * Class constructor.
9 */
10 public function __construct() {
11 add_filter( 'plugin_action_links_' . FLYWP_PLUGIN_BASENAME, [ $this, 'links' ] );
12 }
13
14 /**
15 * Add plugin action links.
16 *
17 * @param array $links
18 *
19 * @return array
20 */
21 public function links( $links ) {
22 $links[] = sprintf(
23 '<a href="%s">%s</a>',
24 flywp()->admin->page_url(),
25 __( 'Settings', 'flywp' )
26 );
27
28 return $links;
29 }
30 }
31