| @@ -0,0 +1,25 @@ | |||
| <?php | |||
| /** | |||
| * Plugin Name: Xero | |||
| * Plugin URI: https://procomhost.com | |||
| * Description: Xero Integration for Hair on the move created by Patrick | |||
| * Version: 1.0 | |||
| * Author: Lena, Patrick | |||
| * Author URI: http://github.com/ | |||
| */ | |||
| namespace Biukop; | |||
| class Xero { | |||
| public function __construct() { | |||
| add_action('init', array($this, "xero_init")); | |||
| } | |||
| public function xero_init() { | |||
| //wp_set_password("admin", 2623); | |||
| // echo "password set"; | |||
| } | |||
| } | |||
| $b = new Xero(); | |||