function get_the_meta_value($key, $post = null, $content_filter = false)
{
    $value = Facade_WP_MetaBox::get($key, $post);
    if ($content_filter) {
        $value = the_content_filter($value);
    }
    return $value;
}
 protected function getValue($key)
 {
     return Facade_WP_MetaBox::get($key);
 }