Plugin Directory

source: upprev/tags/4.1.2/upprev.php

Last change on this file was 3312352, checked in by iworks, 5 months ago

4.1.2

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