-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbootstrap.php
More file actions
28 lines (26 loc) · 818 Bytes
/
bootstrap.php
File metadata and controls
28 lines (26 loc) · 818 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
<?php
/**
* PHP Output Buffering Lab Plugin
*
* @package KnowTheCode\PHPOutputBuffer
* @author hellofromTonya
* @license GPL-2.0+
*
* @wordpress-plugin
* Plugin Name: PHP Output Buffering Lab Plugin
* Plugin URI: https://github.com/KnowTheCode/php-output-buffer-lab
* Description: Companion plugin for the PHP Output Control and Buffer Basics lab
* Version: 1.0.0
* Author: hellofromTonya
* Author URI: https://KnowTheCode.io
* Text Domain: sandbox
* License: GPL-2.0+
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
*/
namespace KnowTheCode\PHPOutputBuffer;
if ( ! defined( 'ABSPATH' ) ) {
exit( 'Cheatin’ uh?' );
}
// add your cool testing and playing code here. Have fun!
//include __DIR__ . '/src/markup.php';
//include __DIR__ . '/src/shortcode.php';