forked from wp-plugins/s3-secure-url
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paths3-secure-url.php
65 lines (55 loc) · 2.17 KB
/
s3-secure-url.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<?php
/**
* S3 Secure URL WordPress plugin
*
* @package S3_Secure_URL
* @author Max Kostinevich <[email protected]>
* @license GPL-2.0+
* @link http://maxkostinevich.com
* @copyright 2015 Max Kostinevich
*
* @wordpress-plugin
* Plugin Name: S3 Secure URL
* Plugin URI: https://github.com/BlaineMoore/s3-secure-url
* Description: Create temporary secure URLs to protected Amazon S3 files.
* Version: 1.2.0
* Author: Max Kostinevich (updates by Blaine Moore)
* Author URI: https://github.com/BlaineMoore/s3-secure-url
* Text Domain: s3-secure-url-locale
* License: GPL-2.0+
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
* Domain Path: /languages
* GitHub Plugin URI: BlaineMoore/s3-secure-url
*/
// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
die;
}
/*----------------------------------------------------------------------------*
* Public-Facing Functionality
*----------------------------------------------------------------------------*/
require_once( plugin_dir_path( __FILE__ ) . 'public/class-s3-secure-url.php' );
/*
* Register hooks that are fired when the plugin is activated or deactivated.
* When the plugin is deleted, the uninstall.php file is loaded.
*/
register_activation_hook( __FILE__, array( 'S3_Secure_URL', 'activate' ) );
register_deactivation_hook( __FILE__, array( 'S3_Secure_URL', 'deactivate' ) );
add_action( 'plugins_loaded', array( 'S3_Secure_URL', 'get_instance' ) );
/*----------------------------------------------------------------------------*
* Dashboard and Administrative Functionality
*----------------------------------------------------------------------------*/
/*
* If you want to include Ajax within the dashboard, change the following
* conditional to:
*
* if ( is_admin() ) {
* ...
* }
*
* The code below is intended to to give the lightest footprint possible.
*/
if ( is_admin() && ( ! defined( 'DOING_AJAX' ) || ! DOING_AJAX ) ) {
require_once( plugin_dir_path( __FILE__ ) . 'admin/class-s3-secure-url-admin.php' );
add_action( 'plugins_loaded', array( 'S3_Secure_URL_Admin', 'get_instance' ) );
}