page_template filter without a plugin

After some digging I found a better function which allows you to directly modify the template listing

function page_templates( $templates ) {
    $templates['temp/template1.php'] = 'Full Width Template';
    return $templates;
}
add_filter( 'theme_page_templates', 'page_templates' );