| 1 |
<?php |
| 2 |
/* |
| 3 |
Plugin Name: Sign-up Sheets |
| 4 |
Plugin URI: https://www.fetchdesigns.com/sign-up-sheets-wordpress-plugin/ |
| 5 |
Description: An online sign-up sheet manager where your users/volunteers can sign up for tasks |
| 6 |
Version: 2.3.2 |
| 7 |
Requires PHP: 5.5 |
| 8 |
Requires at least: 5.5 |
| 9 |
Author: Fetch Designs |
| 10 |
Author URI: https://www.fetchdesigns.com/ |
| 11 |
Text Domain: sign-up-sheets |
| 12 |
Domain Path: /languages |
| 13 |
License: GPL2 |
| 14 |
*/ |
| 15 |
|
| 16 |
/* Copyright Fetch Designs |
| 17 |
|
| 18 |
This program is free software; you can redistribute it and/or modify |
| 19 |
it under the terms of the GNU General Public License, version 2, as |
| 20 |
published by the Free Software Foundation. |
| 21 |
|
| 22 |
This program is distributed in the hope that it will be useful, |
| 23 |
but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 24 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 25 |
GNU General Public License for more details. |
| 26 |
|
| 27 |
You should have received a copy of the GNU General Public License |
| 28 |
along with this program; if not, write to the Free Software |
| 29 |
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
| 30 |
*/ |
| 31 |
|
| 32 |
if (!defined('FDSUS_FREE_PLUGIN_DIR_PATH')) { |
| 33 |
define('FDSUS_FREE_PLUGIN_DIR_PATH', plugin_dir_path(__FILE__)); |
| 34 |
} |
| 35 |
|
| 36 |
if (!defined('FDSUS_FREE_PLUGIN_BASENAME')) { |
| 37 |
define('FDSUS_FREE_PLUGIN_BASENAME', plugin_basename(__FILE__)); |
| 38 |
} |
| 39 |
|
| 40 |
require_once dirname(__FILE__) . DIRECTORY_SEPARATOR . 'main.php'; |
| 41 |
|