63 lines
2.9 KiB
PHTML
63 lines
2.9 KiB
PHTML
<?php
|
|
if (isset($this->obj)) {
|
|
$contents = $this->obj->getContents();
|
|
$count = count($contents);
|
|
}
|
|
?>
|
|
<button id="spl_new" class="ui-button ui-widget ui-state-default" role="button" aria-disabled="false">New</button>
|
|
<?php if (isset($this->obj)) : ?>
|
|
<button id="spl_delete" class="ui-button ui-widget ui-state-default" role="button" aria-disabled="false">Delete</button>
|
|
<a href="#" id="spl_crossfade" class="ui-button ui-button-icon-only ui-widget ui-state-default crossfade-main-button" style="display:<?php echo $count > 0 ?"block;":"none;"?>">
|
|
<span class="ui-icon crossfade-main-icon"></span><span class="ui-button-text">Playlist crossfade</span>
|
|
</a>
|
|
<?php endif; ?>
|
|
|
|
<?php if (isset($this->obj)) : ?>
|
|
<button class="ui-button ui-state-default sp-save" title='Save playlist' type="button" id="save_button">Save</button>
|
|
<input id="obj_id" type="hidden" value="<?php echo $this->obj->getId(); ?>"></input>
|
|
<input id="obj_lastMod" type="hidden" value="<?php echo $this->obj->getLastModified('U'); ?>"></input>
|
|
<input id='obj_type' type='hidden' value='playlist'></input>
|
|
<div class="playlist_title">
|
|
<h3 id="obj_name">
|
|
<a id="playlist_name_display" contenteditable="true"><?php echo $this->obj->getName(); ?></a>
|
|
</h3>
|
|
<h4 id="obj_length"><?php echo $this->length; ?></h4>
|
|
</div>
|
|
<div id='sp-success' class='success' style='display:none'></div>
|
|
|
|
<fieldset class="toggle closed" id="fieldset-metadate_change">
|
|
<legend style="cursor: pointer;"><span class="ui-icon ui-icon-triangle-2-n-s"></span>View / edit description</legend>
|
|
<dl class="zend_form">
|
|
<dt id="description-label"><label for="description">Description</label></dt>
|
|
<dd id="description-element">
|
|
<textarea cols="80" rows="24" id="description" name="description"><?php echo $this->obj->getDescription(); ?></textarea>
|
|
</dd>
|
|
</dl>
|
|
</fieldset>
|
|
|
|
<?php //echo $this->form; ?>
|
|
|
|
<div id="crossfade_main" class="crossfade-main clearfix" style="display:none;">
|
|
<span class="ui-icon ui-icon-closethick sp-closethick-center"></span>
|
|
<dl id="spl_editor-main" class="inline-list">
|
|
<dt>Fade in (s):</dt>
|
|
<dd><span contenteditable="true" class="spl_text_input spl_main_fade_in">00</span></dd>
|
|
<dd class="edit-error"></dd>
|
|
<dt>Fade out (s):</dt>
|
|
<dd><span contenteditable="true" class="spl_text_input spl_main_fade_out">00</span></dd>
|
|
<dd class="edit-error"></dd>
|
|
</dl>
|
|
</div>
|
|
|
|
<div class="clear"></div>
|
|
<div class="" style="clear:both; float:none; width:100%;">
|
|
<ul id="spl_sortable">
|
|
<?php $this->contents = $contents;
|
|
echo $this->render('playlist/update.phtml') ?>
|
|
</ul>
|
|
</div>
|
|
|
|
<?php else : ?>
|
|
<div>No open playlist</div>
|
|
<?php endif; ?>
|