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 | |
| if (!class_exists('WP_AddPage')): | |
| class WP_AddPage { | |
| private $rule = null; | |
| private $title = null; | |
| private $callback = null; | |
| private $template = null; | |
| private $filter = false; |
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 | |
| if (!class_exists('WP_AddRewriteRules')): | |
| class WP_AddRewriteRules{ | |
| private $rule = null; | |
| private $query = null; | |
| private $callback = null; | |
| function __construct($rule, $query, $callback) | |
| { |
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 | |
| namespace Holy\Tests; | |
| use Holy\Loader; | |
| /** | |
| * LoaderTest | |
| * | |
| * @author k.holy74@gmail.com | |
| */ |
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/bash | |
| # Installation: | |
| # 1. Save this script to /some/bin/ssh-background | |
| # 2. chmod 755 /some/bin/ssh-background | |
| # 3. alias ssh=/some/bin/ssh-background | |
| # 4. Configure your host colors below. | |
| set_color() { | |
| local HEX_FG=$1 | |
| local HEX_BG=$2 |
NewerOlder