<?php
/*
Plugin Name: Blog Copyright (by BTE)
Plugin URI: http://www.blogtrafficexchange.com/blog-copyright
Description: Simple plugin to inject copyright statement into blog footer. <a href="options-general.php?page=BTE_BC_admin.php">Configuration options are here.</a>
Version: 1.6.7
Author: Blog Traffic Exchange
Author URI: http://www.blogtrafficexchange.com/
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2011054
License: GPL
*/
/* Copyright 2008-2009 Blog Traffic Exchange (email : hide@address.com)
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
require_once('BTE_BC_admin.php');
require_once('BTE_BC_core.php');
// Play nice to PHP 5 installations with REGISTER_LONG_ARRAYS off
if(!isset($HTTP_POST_VARS) && isset($_POST))
{
$HTTP_POST_VARS = $_POST;
}
define ('BTE_BC_DB_SCHEMA', '1.0');
define ('BTE_BC_HEADER', '<p>');
define ('BTE_BC_FOOTER', '</p>');
register_activation_hook(__FILE__, 'bte_bc_activate');
register_deactivation_hook(__FILE__, 'bte_bc_deactivate');
add_action('wp_footer', 'bte_bc_footer');
add_action('admin_menu', 'bte_bc_options_setup');
add_action('admin_head', 'bte_bc_head_admin');
function bte_bc_tag() {
echo bte_bc_get_html();
}
function bte_bc_deactivate() {
delete_option('bte_bc_link');
}
function bte_bc_activate() {
add_option('bte_bc_header',BTE_BC_HEADER);
add_option('bte_bc_footer',BTE_BC_FOOTER);
add_option('bte_bc_org_header','<strong>');
add_option('bte_bc_org',get_bloginfo('name'));
add_option('bte_bc_org_footer','</strong>');
add_option('bte_bc_url',get_bloginfo('url'));
add_option('bte_bc_start',date("Y"));
add_option('bte_bc_rights','All Rights Reserved');
add_option('bte_bc_add',true);
add_option('bte_bc_link',true);
}
?>