This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Plugin Name: Allow Admin Override of Party Limits for Restaurant Reservations | |
* Plugin URI: http://themeofthecrop.com | |
* Description: Allow the admin to set any party size when adding or editing bookings. | |
* Version: 0.0.1 | |
* Author: Theme of the Crop | |
* Author URI: http://themeofthecrop.com | |
* License: GNU General Public License v2.0 or later | |
* License URI: http://www.gnu.org/licenses/gpl-2.0.html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Plugin Name: Allow Admin Override of Scheduling Restrictions for Restaurant Reservations | |
* Plugin URI: http://themeofthecrop.com | |
* Description: Allow the admin to create a booking at any time. | |
* Version: 0.0.1 | |
* Author: Theme of the Crop | |
* Author URI: http://themeofthecrop.com | |
* License: GNU General Public License v2.0 or later | |
* License URI: http://www.gnu.org/licenses/gpl-2.0.html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Plugin Name: Disable double opt-in for MailChimp for Restaurant Reservations | |
* Plugin URI: http://themeofthecrop.com | |
* Description: Modify the subscription request sent to MailChimp so that users do not receive the double opt-in email confirmation from MailChimp. | |
* Version: 0.0.1 | |
* Author: Theme of the Crop | |
* Author URI: http://themeofthecrop.com | |
* License: GNU General Public License v2.0 or later | |
* License URI: http://www.gnu.org/licenses/gpl-2.0.html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Plugin Name: Block AOL bookings for Restaurant Reservations | |
* Plugin URI: http://themeofthecrop.com | |
* Description: Prevent bookings from being made with @aol.com email addresses. | |
* Version: 1.0 | |
* Author: Theme of the Crop | |
* Author URI: http://themeofthecrop.com | |
* License: GNU General Public License v2.0 or later | |
* License URI: http://www.gnu.org/licenses/gpl-2.0.html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Plugin Name: Show Shortcodes for Food and Drink Menu | |
* Plugin URI: http://themeofthecrop.com | |
* Description: Show the menu and menu item shortcodes in the admin lists. | |
* Version: 1.0 | |
* Author: Theme of the Crop | |
* Author URI: http://themeofthecrop.com | |
* License: GNU General Public License v2.0 or later | |
* License URI: http://www.gnu.org/licenses/gpl-2.0.html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Plugin Name: New Shortcode Name for Restaurant Reservations | |
* Plugin URI: http://themeofthecrop.com | |
* Description: Duplicate the [booking-form] shortcode with a [rtb-booking-form] shortcode. | |
* Version: 1.0 | |
* Author: Theme of the Crop | |
* Author URI: http://themeofthecrop.com | |
* License: GNU General Public License v2.0 or later | |
* License URI: http://www.gnu.org/licenses/gpl-2.0.html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class RemoveIncompleteFromActiveListPlugin extends GenericPlugin { | |
/** | |
* Initialize the plugin | |
*/ | |
public function init() { | |
HookRegistry::register ('TemplateManager::display', array($this, 'modifyTemplateData')); | |
} | |
/** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Plugin Name: Custom Logo Size for Email Templates for Restaurant Reservations | |
* Plugin URI: http://themeofthecrop.com | |
* Description: Use a custom logo size for the email templates addon for Restaurant Reservations. | |
* Version: 1.0 | |
* Author: Theme of the Crop | |
* Author URI: http://themeofthecrop.com | |
* License: GNU General Public License v2.0 or later | |
* License URI: http://www.gnu.org/licenses/gpl-2.0.html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// This tool is now available in the main development repositories for OJS, OMP and OPS. | |
// Run the following command from the root directory of any application to get usage | |
// instructions. | |
// | |
// php lib/pkp/tools/generateTestMetrics.php |