<?php

function __()
{
}
function _x()
{
}
function add_filter()
{
}
function esc_attr()
{
}
function apply_filters()
{
}
function get_option()
{
}
function is_lighttpd_before_150()
{
}
function add_action()
{
}
function did_action()
{
}
function do_action_ref_array()
{
}
function get_bloginfo()
{
}
function is_admin()
{
    return true;
}
function site_url()
{
}
function admin_url()
{
}
function home_url()
{
}
function includes_url()
{
}
function wp_guess_url()
{
}
function get_file($path)
{
    $path = realpath($path);
    if (!$path || !@is_file($path)) {
        return '';
    }
    return @file_get_contents($path);
}