Created
June 15, 2017 21:08
-
-
Save RyanBayne/bc1802c1c0aa8620fe43b9a53f1114f6 to your computer and use it in GitHub Desktop.
Multitool Class File Template
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* CLASS DESCRIPTION | |
* | |
* @author Ryan Bayne | |
* @category Admin | |
* @package Multitool/Admin | |
* @version 1.0 | |
*/ | |
if ( ! defined( 'ABSPATH' ) ) { | |
exit; // Exit if accessed directly | |
} | |
if ( ! class_exists( 'Multitool_CLASSNAME' ) ) : | |
/** | |
* Multitool_CLASSNAME. | |
*/ | |
class Multitool_CLASSNAME { | |
} | |
endif; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment