18 lines
328 B
PHP
18 lines
328 B
PHP
<?php
|
|
namespace ktk\MusicServe;
|
|
|
|
class Player {
|
|
static public function onInit() {
|
|
}
|
|
static public function onProcess() {
|
|
}
|
|
static public function onRender() {
|
|
echo '<div id="ktk_MusicServe_Player">',PHP_EOL;
|
|
echo "Player goes here";
|
|
echo '</div>',PHP_EOL;
|
|
}
|
|
static public function onClose() {
|
|
}
|
|
}
|
|
?>
|