PluginProbe
FileBird – WordPress Media Library Folders & File Manager / 5.6
FileBird – WordPress Media Library Folders & File Manager v5.6
6.5.8 6.5.7 6.5.5 6.5.4 trunk 4.3.1 5.1.6 5.3 5.3.2 5.4.3 5.4.4 5.4.5 5.5 5.5.3 5.5.5 5.5.8 5.5.8.1 5.6 5.6.1 5.6.2 5.6.3 5.6.4 6.2.3 6.2.5 6.3 All 36 releases
filebird / includes / Classes / Feedback.php

Feedback.php in FileBird – WordPress Media Library Folders & File Manager 5.6, at includes/Classes/Feedback.php

25 lines 515 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 namespace FileBird\Classes;
3
4 defined( 'ABSPATH' ) || exit;
5
6 class Feedback {
7
8 public function __construct() {
9 add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_filebird_feedback' ) );
10 }
11
12 public function enqueue_filebird_feedback() {
13 if ( ! in_array( get_current_screen()->id, array( 'plugins', 'plugins-network' ), true ) ) {
14 return;
15 }
16
17 add_action( 'admin_footer', array( $this, 'form_feedback' ) );
18 }
19
20 public function form_feedback() {
21 echo '<div id="fbv-feedback"></div>';
22 }
23 }
24
25