This commit is contained in:
Corey McKrill 2019-09-27 17:41:19 -07:00
parent 1db9ec9203
commit 697a4b2329
No known key found for this signature in database
GPG key ID: C2C0746F7BF17E38
12 changed files with 943 additions and 0 deletions

27
plugins/wporg-5ftf/index.php Executable file
View file

@ -0,0 +1,27 @@
<?php
/**
* Plugin Name: Five For The Future
* Plugin URI: https://wordpress.org
* Description:
* Author: WordPress.org
* Author URI: https://wordpress.org
* Version: 1.0.0
*/
namespace WordPressDotOrg\FiveForTheFuture;
defined( 'WPINC' ) || die();
define( __NAMESPACE__ . '\PATH', plugin_dir_path( __FILE__ ) );
define( __NAMESPACE__ . '\URL', plugin_dir_url( __FILE__ ) );
/**
*
*/
function load() {
require_once PATH . 'includes/company.php';
require_once PATH . 'includes/company-meta.php';
require_once PATH . 'includes/shortcodes.php';
require_once PATH . 'includes/pledge-form.php';
}
add_action( 'plugins_loaded', __NAMESPACE__ . '\load' );