PluginProbe
Vimeography: Vimeo Video Gallery WordPress Plugin / 2.2
Vimeography: Vimeo Video Gallery WordPress Plugin v2.2
2.4.9 2.4.8 trunk 0.5.1 0.5.2 0.5.3 0.5.4 0.5.5 0.5.6 0.5.7 0.6 0.6.1 0.6.2 0.6.3 0.6.4 0.6.5 0.6.6 0.6.7 0.6.8 0.6.8.1 0.6.9 0.6.9.1 0.6.9.2 0.7 0.8 All 103 releases
vimeography / lib / admin / plugins.php

plugins.php in Vimeography: Vimeo Video Gallery WordPress Plugin 2.2, at lib/admin/plugins.php

31 lines 812 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 // Exit if accessed directly
4 if ( ! defined( 'ABSPATH' ) ) exit;
5
6 class Vimeography_Admin_Plugins {
7
8 public function __construct() {
9 add_filter( 'plugin_action_links', array($this, 'vimeography_filter_plugin_actions'), 10, 2 );
10 }
11
12 /**
13 * Add Settings link to "installed plugins" admin page.
14 *
15 * @access public
16 * @param array $links
17 * @param string $file
18 * @return array $links
19 */
20 public function vimeography_filter_plugin_actions($links, $file) {
21 if ( $file == VIMEOGRAPHY_BASENAME ) {
22 $settings_link = '<a href="admin.php?page=vimeography-edit-galleries">' . __('Settings', 'vimeography') . '</a>';
23 if ( ! in_array( $settings_link, $links ) ) {
24 array_unshift( $links, $settings_link ); // before other links
25 }
26 }
27 return $links;
28 }
29
30 }
31