Branding.php 878 Bytes
<?php
namespace Tz\WordPress\Tools\Branding;
use Tz\WordPress\Tools;


    call_user_func(function() {
        Tools\add_actions(__NAMESPACE__ . '\Actions');
    });

class Actions {

    public static function admin_print_styles() {
        _enqueue_style('branding-style', Tools\url('css/tenzing.css', __FILE__));
    }

    public static function admin_head() {
    
        
    
/*
        global $current_user;
        get_currentuserinfo();

        include('views/header.php');
*/
    }

    public static function admin_footer_text() {
        echo '&copy; 2010 Tenzing Communications Inc.';
    }
    
    public static function login_head() {
        echo '<link rel="stylesheet" type="text/css" href="' . Tools\url('css/tz_login.css', __FILE__) . '" />';
    }
    

}

    //Tools\add_actions(__NAMESPACE__ . '\Actions');

?>