mirror of
https://github.com/kennethreitz-archive/wp-coreylib.git
synced 2026-06-05 23:50:19 +00:00
25 lines
583 B
PHP
25 lines
583 B
PHP
<?php
|
|
|
|
/*
|
|
Plugin Name: Coreylib
|
|
Plugin URI: http://github.com/kennethreitz/coreylib-wordpress-plugin
|
|
Description: Coreylib for WordPress
|
|
Version: 0.6
|
|
Author: Kenneth Reitz
|
|
Author URI: http://kennethreitz.com/
|
|
Min WP Version: 2.0
|
|
Max WP Version: 3.5
|
|
License: MIT License - http://www.opensource.org/licenses/mit-license.php
|
|
|
|
Original coding by Aaron Collegeman.
|
|
|
|
*/
|
|
|
|
try {
|
|
// Include coreylib, yo.
|
|
require_once(dirname(__FILE__).DIRECTORY_SEPARATOR.'lib'.DIRECTORY_SEPARATOR.'coreylib.php');
|
|
clAPI::configure('debug', false);
|
|
} catch (Exception $e) {
|
|
// Just in case... :)
|
|
}
|