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