Override the page file extension

Sometimes you'll need your plugin to override the users choice of page extension. For example our Contact Form plugin does this.

The following example will override the users default extension (usually .html) and replace it with .php

//Our pages have to end in .php so we override the user choice by implementing this method
- (NSString*)overrideFileExtension
{
	return @"php";
}