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