Skip to content

Instantly share code, notes, and snippets.

@jonfalcon
Created February 5, 2013 15:24
Show Gist options
  • Save jonfalcon/4715112 to your computer and use it in GitHub Desktop.
Save jonfalcon/4715112 to your computer and use it in GitHub Desktop.
PHP: Wordpress Plugin Snippet
<?php
/**
* Plugin Name: Plugin
* Description: Description
* Author: Jon Falcon
* Version: 1.0
*/
// Copyright (C) 2013 Jon Falcon
// 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 3 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, see <http://www.gnu.org/licenses/>.
/**
* @todo : require needed classes or files
*/
/**
* Plugin Class
*
* Class Description
*
* @author : Jon Falcon
* @package : Plugin Name
* @version : 1.0
*/
class Plugin_Class {
/**
* Plugin Directory
* @var string
*/
private $dir = "";
/**
* Plugin URL
* @var string
*/
private $url = "";
/**
* constructor
*
* This is where we initalized our plugin and add the wordpress hooks
*/
function __construct(){
$this->$dir = basename(__FILE__);
$this->url = plugins_url("", __FILE__);
/**
* @todo : Hooks
*/
}
}
/* instantiate the plugin */
$plugin_class = new Plugin_CLass();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment