This file contains hidden or 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: Restore WooCommerce Order Status Tooltip | |
| * Description: Restores the old tooltip functionality in WooCommerce to show order comments as it was before 9.1.0. | |
| * Version: 1.0 | |
| * Author: mino129 & ilyasfoo | |
| * Author URI: https://gist.github.com/ilyasfoo/2d614e01b2100f2b476e235bd4cdba06 | |
| * License: GPL-2.0+ | |
| * License URI: http://www.gnu.org/licenses/gpl-2.0.txt | |
| * |
This file contains hidden or 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: WooCommerce Calypso Bridge Helper | |
| * Plugin URI: https://woocommerce.com | |
| * Description: Utility to assist testing wc-calypso-bridge locally | |
| * Author: WooCommerce | |
| * Version: 0.1 | |
| */ | |
| if ( ! class_exists( 'Atomic_Plan_Manager' ) ) { |
This file contains hidden or 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
| #!/bin/sh | |
| # | |
| # Script to prepare and restore full and incremental backups created with innobackupex-runner. | |
| # | |
| # This script is provided as-is; no liability can be accepted for use. | |
| # | |
| INNOBACKUPEX=innobackupex-1.5.1 | |
| INNOBACKUPEXFULL=/usr/bin/$INNOBACKUPEX | |
| TMPFILE="/tmp/innobackupex-restore.$$.tmp" |