PluginProbe
upPrev / 4.1.3
upPrev v4.1.3
4.1.4 3.3.20 3.3.21 3.3.22 3.3.23 3.3.24 3.3.25 3.3.26 3.3.27 3.3.28 3.3.29 3.3.3 3.3.30 3.3.4 3.3.5 3.3.6 3.3.7 3.3.8 3.3.9 3.4.0 3.4.0.1 3.4.1 3.4.2 4.0.0 4.0.1 All 50 releases
upprev / upprev.php

upprev.php in upPrev 4.1.3, at upprev.php

46 lines 1.4 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /*
3 Plugin Name: upPrev
4 Text Domain: upprev
5 Plugin URI: http://iworks.pl/iw_plugin/upprev/
6 Description: Display cool, animated fly-out or fade box with related content.
7 Version: 4.1.3
8 Author: Marcin Pietrzak
9 Author URI: http://iworks.pl/
10 License: GPLv3 or later
11 License URI: http://www.gnu.org/licenses/gpl-3.0.html
12
13 Copyright 2011-2026 Marcin Pietrzak (marcin@iworks.pl)
14
15 this program is free software; you can redistribute it and/or modify
16 it under the terms of the GNU General Public License, version 2, as
17 published by the Free Software Foundation.
18
19 This program is distributed in the hope that it will be useful,
20 but WITHOUT ANY WARRANTY; without even the implied warranty of
21 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 GNU General Public License for more details.
23
24 You should have received a copy of the GNU General Public License
25 along with this program; if not, write to the Free Software
26 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
27
28 */
29 defined( 'ABSPATH' ) || exit; // Exit if accessed directly
30 /**
31 * static options
32 */
33 define( 'IWORKS_UPPREV_VERSION', '4.1.3' );
34 define( 'IWORKS_UPPREV_PREFIX', 'iworks_upprev_' );
35
36 require_once dirname( __FILE__ ) . '/includes/common.php';
37
38 $iworks_upprev = new IworksUpprev();
39
40 /**
41 * install & uninstall
42 */
43 register_activation_hook( __FILE__, 'iworks_upprev_activate' );
44 register_deactivation_hook( __FILE__, 'iworks_upprev_deactivate' );
45
46