-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathrave-payment-forms.php
More file actions
37 lines (29 loc) · 833 Bytes
/
rave-payment-forms.php
File metadata and controls
37 lines (29 loc) · 833 Bytes
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
<?php
/*
Plugin Name: Rave Payment Forms
Plugin URI: http://flutterwave.com/
Description: Rave payment gateway forms.
Version: 0.0.1
Author: Bosun Olanrewaju
Author URI: http://twitter.com/bosunolanrewaju
Copyright: © 2016 Bosun Olanrewaju.
License: MIT License
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
if ( ! defined( 'FLW_PAY_PLUGIN_FILE' ) ) {
define( 'FLW_PAY_PLUGIN_FILE', __FILE__ );
}
// Plugin folder path
if ( ! defined( 'FLW_DIR_PATH' ) ) {
define( 'FLW_DIR_PATH', plugin_dir_path( __FILE__ ) );
}
//Plugin folder path
if ( ! defined( 'FLW_DIR_URL' ) ) {
define( 'FLW_DIR_URL', plugin_dir_url( __FILE__ ) );
}
require_once( FLW_DIR_PATH . 'includes/rave-base-class.php' );
global $flw_pay_class;
$flw_pay_class = FLW_Rave_Pay::get_instance();
?>