Branding.php 716 Bytes
<?php
class Branding {
    public static function make() {
        add_actions('Branding_Actions');
    }
}

class Branding_Actions {
    public static function admin_print_styles() {
        _enqueue_style('branding-style', TzTools::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() {
        include('views/footer.php');
    }

    public static function login_head() {
        echo '<link rel="stylesheet" type="text/css" href="' . TzTools::tools_url('css/tz_login.css', __FILE__) . '" />';
    }
}

    Branding::make();

?>