database changes for name, searching for playlist for a show.

This commit is contained in:
naomiaro 2011-01-10 13:24:21 -05:00
parent 8d58f8fddb
commit c1c4c4e598
130 changed files with 699 additions and 367 deletions

View file

@ -0,0 +1,8 @@
<li class="ui-widget-content">
<div><?php echo $this->name ?></div>
<div><?php echo $this->description ?></div>
<div><?php echo $this->length ?></div>
<?php if($this->state === "edited") : ?>
<div>edited by: <?php echo $this->login ?></div>
<?php endif ?>
</li>

View file

@ -0,0 +1,5 @@
<?php
if(count($this->playlists) > 0) {
echo $this->partialLoop('schedule/find-playlists-partial.phtml', $this->playlists);
}
?>

View file

@ -1 +1,9 @@
<br /><br /><center>View script for controller <b>Schedule</b> and script/action name <b>scheduleShow</b></center>
<div id="schedule_playlist_dialog">
<input id="schedule_playlist_search" type="text"></input>
<ul id="schedule_playlist_choice">
<?php
echo $this->partialLoop('schedule/find-playlists-partial.phtml', $this->playlists);
?>
</ul>
<ul id="schedule_playlist_chosen"></ul>
</div>