PluginProbe
Sign-up Sheets / trunk
Sign-up Sheets vtrunk
trunk 1.0.10 1.0.11 1.0.12 1.0.13 1.0.14 2.2 2.2.0.1 2.2.1 2.2.10 2.2.11 2.2.11.1 2.2.12 2.2.13 2.2.14 2.2.2 2.2.3 2.2.4 2.2.5 2.2.6 2.2.7 2.2.8 2.2.9 2.3.0 2.3.0.1 All 32 releases
sign-up-sheets / sign-up-sheets.php

sign-up-sheets.php in Sign-up Sheets trunk, at sign-up-sheets.php

43 lines 1.4 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /*
3 Plugin Name: Sign-up Sheets
4 Plugin URI: https://www.fetchdesigns.com/sign-up-sheets-wordpress-plugin/
5 Description: Create online sign-up sheets for volunteers, events, and group scheduling.
6 Version: 2.3.4
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('ABSPATH')) exit; // Exit if accessed directly
33
34 if (!defined('FDSUS_FREE_PLUGIN_DIR_PATH')) {
35 define('FDSUS_FREE_PLUGIN_DIR_PATH', plugin_dir_path(__FILE__));
36 }
37
38 if (!defined('FDSUS_FREE_PLUGIN_BASENAME')) {
39 define('FDSUS_FREE_PLUGIN_BASENAME', plugin_basename(__FILE__));
40 }
41
42 require_once dirname(__FILE__) . DIRECTORY_SEPARATOR . 'main.php';
43