// Match Fixture
    function all_forms($atts) { 
      extract( shortcode_atts( array(
        'file' => ''
      ), $atts ) );
      
      if ($file!='')
        return @file_get_contents($file);
    } 
    // register shortcode
    add_shortcode('all_forms', 'all_forms');