/**
 * Get all the settings for a View
 *
 * @uses  GravityView_View_Data::get_default_args() Parses the settings with the plugin defaults as backups.
 * @param  int $post_id View ID
 * @return array          Associative array of settings with plugin defaults used if not set by the View
 */
function gravityview_get_template_settings($post_id)
{
    return GVCommon::get_template_settings($post_id);
}