<?php
/*
+------------------------------------------------------
| Write2Left
| (c) timdorr
| http://www.write2left.com
| hide@address.com
| See License.txt for license info
|------------------------------------------------------
| Script: Export.php
| Description:
| Contains part of the interface's skin's default output parts
| Created Aug-4-2003
+------------------------------------------------------
*/
/* Class: Skin_Export
* Description:
* The generic skin parts class.
*/
class Skin_Export
{
function body_top()
{
return <<<EOF
<td class="main" valign="top">
<big><b>Export Log</b></big>
<br /><br />
EOF;
}
function body_bottom()
{
return <<<EOF
</td>
<td class="space"> </td>
</tr>
EOF;
}
function export_form()
{
return <<<EOF
<form action="?Action=Export&M=DoExport" method="post">
Format:<br />
<select name="type">
<option value="mt">Moveable Type</option>
</select>
<br /><br />
<input type="submit" value="Export" />
</form>
EOF;
}
}
?>