PluginProbe
Floating Button – Easily Create Sticky, Fixed & Floating Buttons / 6.0.12
Floating Button – Easily Create Sticky, Fixed & Floating Buttons v6.0.12
trunk 2.0.2 3.0 4.0 4.1.2 4.3 5.0 5.0.1 5.1 5.1.1 5.2 5.3 5.3.1 6.0 6.0.1 6.0.10 6.0.11 6.0.12 6.0.13 6.0.2 6.0.3 6.0.4 6.0.5 6.0.6 6.0.7 All 31 releases
floating-button / includes / pages / 1.list.php

1.list.php in Floating Button – Easily Create Sticky, Fixed & Floating Buttons 6.0.12, at includes/pages/1.list.php

66 lines 2.4 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /*
3 * Page Name: List
4 */
5
6 use FloatingButton\Dashboard\ListTable;
7 use FloatingButton\WOW_Plugin;
8
9 defined( 'ABSPATH' ) || exit;
10
11 $list_table = new ListTable();
12 $list_table->prepare_items();
13 // phpcs:ignore WordPress.Security.NonceVerification.Recommended
14 $table_page = isset( $_REQUEST['page'] ) ? sanitize_text_field( wp_unslash( $_REQUEST['page'] ) ) : '';
15
16 $wp_plugins = [
17 [
18 'free' => 'https://wordpress.org/plugins/modal-window/',
19 'pro' => 'https://wow-estore.com/item/wow-modal-windows-pro/',
20 'icon' => 'modal-windows.png',
21 'title' => 'Modal Windows',
22 'content' => 'Designed to ease the process of creating and setting the modal windows on the WordPress site.'
23 ],
24 [
25 'free' => 'https://wordpress.org/plugins/mwp-herd-effect/',
26 'pro' => 'https://wow-estore.com/item/wow-herd-effects-pro/',
27 'icon' => 'herd-effects.jpg',
28 'title' => 'Herd Effects',
29 'content' => 'Designed to create a “sense of queue” or “herd effect”, motivating the visitors of the page to perform any actions.'
30 ],
31 [
32 'free' => 'https://wordpress.org/plugins/counter-box/',
33 'title' => 'Counter Box',
34 'content' => 'Quickly and easily create countdowns, counters, and timers with a live preview.'
35 ],
36 [
37 'free' => 'https://wordpress.org/plugins/buttons/',
38 'title' => 'Buttons',
39 'content' => 'Easily create beautiful, customizable standard, floating, and social sharing buttons. Increase click-through rates and enhance your user experience.'
40 ],
41 [
42 'free' => 'https://wordpress.org/plugins/calculator-builder/',
43 'title' => 'Calculator Builder',
44 'content' => 'A simple way to create an online calculator.'
45 ],
46 ];
47 ?>
48
49 <div class="wowp-notice notice-info notice">
50 <strong>Works Great With:</strong>
51 <?php
52 foreach ( $wp_plugins as $plugin ) {
53 echo '<a href="' . esc_url( $plugin['free'] ) . '" target="_blank" class="has-tooltip on-bottom" data-tooltip="' . esc_attr( $plugin['content'] ) . '">' . esc_html( $plugin['title'] ) . '</a> <span class="wpie-separator">|</span> ';
54 } ?>
55 </div>
56
57 <form method="post" class="wowp-list">
58 <?php
59 $list_table->search_box( esc_attr__( 'Search', 'floating-button' ), WOW_Plugin::PREFIX );
60 $list_table->display();
61 ?>
62 <input type="hidden" name="page" value="<?php echo esc_attr( $table_page ); ?>"/>
63 <?php wp_nonce_field( WOW_Plugin::PREFIX . '_nonce', WOW_Plugin::PREFIX . '_list_action' ); ?>
64 </form>
65 <?php
66