Beispiel #1
0
function playlist_new()
{
    kprintheader(get_lang(61));
    $kpl = new kp_playlist();
    ?>
	<form method="post" action="<?php 
    echo PHPSELF;
    ?>
">
	<input type="hidden" name="action" value="playlist_newsave"/>
	<table width="100%" border="0" cellpadding="2" cellspacing="0">
	<tr> 
		<td class="wtext"><?php 
    echo get_lang(62);
    ?>
</td>
		<td class="wtext"><input type="text" size="30" name="name" class="wtext"/></td>
	</tr>
	<tr> 
		<td class="wtext"><?php 
    echo get_lang(44);
    ?>
</td>
		<td class="wtext">
			<select name="public" style="width:100px" class="fatbuttom">
				<?php 
    echo $kpl->selectaccess();
    ?>
			</select>
		</td>
	</tr>
	<tr> 
		<td></td>
		<td>
			<input type="submit" value="<?php 
    echo get_lang(63);
    ?>
" class="fatbuttom"/>&nbsp;
			<input type="button" onclick="javascript: window.close();" value="<?php 
    echo get_lang(16);
    ?>
" class="fatbuttom"/>
		</td>
	</tr>
	</table>
	</form>
	<?php 
    kprintend();
}