PluginProbe
Fixed Bottom Menu / 1.13
Fixed Bottom Menu v1.13
trunk 1.00 1.01 1.02 1.03 1.04 1.12 1.13 1.14 1.15 1.16 1.17 1.18 1.19 1.20 1.21 1.22 1.23 1.24 1.25 1.26 1.27 1.28 1.29 1.30 All 41 releases
fixed-bottom-menu / fixedbottommenu.php

fixedbottommenu.php in Fixed Bottom Menu 1.13, at fixedbottommenu.php

51 lines 1.6 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Plugin Name: Fixed Bottom Menu
4 * Plugin URI: https://wordpress.org/plugins/fixed-bottom-menu/
5 * Description: Add fixed bottom menu.
6 * Version: 1.13
7 * Author: Katsushi Kawamori
8 * Author URI: https://riverforest-wp.info/
9 * License: GPL2
10 * License URI: https://www.gnu.org/licenses/gpl-2.0.html
11 * Text Domain: fixed-bottom-menu
12 *
13 * @package Fixed Bottom Menu
14 */
15
16 /*
17 Copyright (c) 2019- Katsushi Kawamori (email : dodesyoswift312@gmail.com)
18 This program is free software; you can redistribute it and/or modify
19 it under the terms of the GNU General Public License as published by
20 the Free Software Foundation; version 2 of the License.
21
22 This program is distributed in the hope that it will be useful,
23 but WITHOUT ANY WARRANTY; without even the implied warranty of
24 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 GNU General Public License for more details.
26
27 You should have received a copy of the GNU General Public License
28 along with this program; if not, write to the Free Software
29 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
30 */
31
32 add_action( 'plugins_loaded', 'fixed_bottom_menu_load_textdomain' );
33 /** ==================================================
34 * i18n
35 *
36 * @since 1.00
37 */
38 function fixed_bottom_menu_load_textdomain() {
39 load_plugin_textdomain( 'fixed-bottom-menu' );
40 }
41
42 if ( ! class_exists( 'FixedBottomMenu' ) ) {
43 require_once( dirname( __FILE__ ) . '/lib/class-fixedbottommenu.php' );
44 }
45
46 if ( ! class_exists( 'FixedBottomMenuAdmin' ) ) {
47 require_once( dirname( __FILE__ ) . '/lib/class-fixedbottommenuadmin.php' );
48 }
49
50
51