adding zend project folders into old campcaster.

This commit is contained in:
naomiaro 2010-12-07 14:19:27 -05:00
parent 56abfaf28e
commit 7ef0c18b26
4045 changed files with 1054952 additions and 0 deletions

View file

@ -0,0 +1 @@
<?php echo $this->partialLoop('library/libraryTablePartial.phtml', $this->files) ?>

View file

@ -0,0 +1,22 @@
<?php
if($this->files) {
?>
<table id="library_display">
<tr>
<th><span class="title">Title</span></th>
<th><span class="artist">Artist</span></th>
<th><span class="album">Album</span></th>
<th><span class="track">Track</span></th>
<th><span class="length">Length</span></th>
</tr>
<?php
echo $this->partialLoop('library/libraryTablePartial.phtml', $this->files);
?>
</table>
<?php
}
else {
echo "No Results";
}
?>

View file

@ -0,0 +1,3 @@
<ul id="myMenu" class="contextMenu">
<?php echo $this->partialLoop('library/contextMenuPartial.phtml', $this->menu) ?>
</ul>

View file

@ -0,0 +1 @@
<li><a href="<?php echo $this->action ?>"><?php echo $this->text ?></a></li>

View file

@ -0,0 +1 @@
<br /><br /><center>View script for controller <b>Library</b> and script/action name <b>delete</b></center>

View file

@ -0,0 +1,8 @@
<?php // libraryTablePartial.phtml ?>
<tr id="<?php echo $this->id ?>">
<td><?php echo $this->track_title ?></td>
<td><?php echo $this->artist_name ?></td>
<td><?php echo $this->album_title ?></td>
<td><?php echo $this->track_number ?></td>
<td><?php echo $this->length ?></td>
</tr>

View file

@ -0,0 +1 @@
<br /><br /><center>View script for controller <b>Library</b> and script/action name <b>search</b></center>