8 lines
207 B
PHTML
8 lines
207 B
PHTML
<?php
|
|
if (count($this->playlistcontents)) {
|
|
echo $this->partialLoop('playlist/playlistEditorTable.phtml', $this->playlistcontents);
|
|
}
|
|
else {
|
|
echo '<div class="pl_empty">Empty playlist</div>';
|
|
}
|
|
?>
|