Created
October 2, 2013 03:04
-
-
Save morganestes/6788575 to your computer and use it in GitHub Desktop.
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 | |
| /** | |
| * Plugin Name: Mdub Cheatahs | |
| * Plugin URI: https://gist.github.com/morganestes/6788575 | |
| * Description: Set standard settings to standardize settings sets. | |
| * Version: 0.1.0 | |
| * Author: Morgan Estes | |
| * Author URI: http://morganestes.me | |
| * License: GPLv3 | |
| */ | |
| namespace MorganEstes; | |
| class Cheatahs { | |
| public function __construct() { | |
| if ( ! defined( 'WISTIA_API_KEY' ) ) | |
| define( 'WISTIA_API_KEY', 'key goes here' ); | |
| if ( !defined( 'DISALLOW_FILE_EDIT' ) || false == DISALLOW_FILE_EDIT ) | |
| define( 'DISALLOW_FILE_EDIT', true ); | |
| } | |
| } | |
| $mdub = new Cheatahs(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment