Don't know , and i think you can't use a plugin file to be used as a custom page template . Tough you're pluggin can create a file in the active template folder .
To create a page you can use $wpdb class and insert a new post or easyer with wp_insert_post and change post_type to "page" , have a look at the documentation of wpdb class too , it might be usefull in some cases .
Edit
There are 2 hooks that you can use to create / delete the file , check it out :
$filename = __FILE__;
register_activation_hook($filename, 'myPlugginActivation');
register_deactivation_hook($filename, 'myPlugginDeactivation');
function myPlugginActivation()
{
//create file here , this function will be called
//by wordpress on pluggin activation
}
function myPlugginDeactivation()
{
//delete file here , this function will be called
//by wordpress on pluggin deactivation
}
Edit
Save this file to test.php and place it inside you're pluggins dir , then you can go to wordpress wp-admin , plugins page and activate the "Test-File" pluggin , after that check you're active theme folder for a file called "myTheme.php" witch was writen by the pluggin at activation .
<?php
/*
Plugin Name: Test-File
Plugin URI: http://www.google.ro
Description: Test writing a file to the active pluggin directory
Version: 0.1
Author: Poelinca Dorin
*/
$plugginFile = __FILE__;
$themeDir = get_theme_root() . '/' . get_current_theme();
$customThemeFile = 'myTheme.php';
register_activation_hook($plugginFile, 'myActivation');
register_deactivation_hook($plugginFile, 'myDeactivation');
if ( !function_exists('myActivation') )
{
function myActivation()
{
global $themeDir;
global $customThemeFile;
$stringData = '<h1>Some test template</h1>';
$fh = fopen($themeDir . '/' . $customThemeFile, 'w') or die('cant open file');
fwrite($fh, $stringData);
fclose($fh);
}
}
if ( !function_exists('myDeactivation') )
{
function myDeactivation()
{
global $themeDir;
global $customThemeFile;
@unlink($themeDir . '/' . $customThemeFile);
}
}
?>
Now to be honest and with no offence in mind , if you can't handle php file writes don't start to build a wp plugin , spend atleast two months learning more about php and how it works , then play with allready built plugins just to make shure you know how wordpress works .
template_redirectand adjust the path to the template that's about to be called. In future, please consider posting your WordPress questions to wordpress.stackexchange.com – t31os Jan 10 '11 at 20:04