morganestes
10/2/2013 - 3:04 AM

mdub-cheatahs.php

<?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();