-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
voxels.php
executable file
·79 lines (67 loc) · 1.96 KB
/
voxels.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<?php
/**
* Tiny Pixel Collective supported WordPress 5 Blocks
*
* @link https://tinypixel.io
* @since 0.0.1
* @package voxels
*
* @wordpress-plugin
* Plugin Name: voxels
* Plugin URI: https://tinypixel.io/voxels
* Description: Tiny Pixel Collective supported WordPress 5 Blocks
* Version: 0.0.1
* Author: Tiny Pixel Collective, Kelly Mears <[email protected]>
* Author URI: https://tinypixel.io
* License: MIT
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
* Text Domain: voxels
* Domain Path: /languages
*/
namespace TPC\Voxels;
require __DIR__ . '/vendor/autoload.php';
/**
* Have to load and execute wpackio more-or-less
* immediately in order to properly hot load.
* @link https://wpack.io
*/
require __DIR__ . '/wpackio.php';
/**
* Current plugin version.
* https://semver.org
*/
define( 'voxels_VERSION', '0.0.1' );
define( 'voxels_PATH', plugin_dir_path( __FILE__ ));
/**
* The code that runs during plugin activation.
* This action is documented in includes/class-voxels-activator.php
*/
function activate_voxels() {
require_once voxels_PATH . 'includes/class-voxels-activator.php';
voxels_Activator::activate();
}
/**
* The code that runs during plugin deactivation.
* This action is documented in includes/class-voxels-deactivator.php
*/
function deactivate_voxels() {
require_once voxels_PATH . 'includes/class-voxels-deactivator.php';
voxels_Deactivator::deactivate();
}
register_activation_hook( __FILE__, 'activate_voxels' );
register_deactivation_hook( __FILE__, 'deactivate_voxels' );
/**
* The core plugin class that is used to define internationalization,
* admin-specific hooks, and public-facing site hooks.
*/
require voxels_PATH . 'includes/class-voxels.php';
/**
* Begins execution of the plugin.
*
* @since 0.0.1
*/
function run_voxels() {
$plugin = new voxels();
$plugin->run();
}
run_voxels();