adding zend project folders into old campcaster.
This commit is contained in:
parent
56abfaf28e
commit
7ef0c18b26
4045 changed files with 1054952 additions and 0 deletions
1
application/views/scripts/library/contents.ajax.phtml
Normal file
1
application/views/scripts/library/contents.ajax.phtml
Normal file
|
@ -0,0 +1 @@
|
|||
<?php echo $this->partialLoop('library/libraryTablePartial.phtml', $this->files) ?>
|
22
application/views/scripts/library/contents.phtml
Normal file
22
application/views/scripts/library/contents.phtml
Normal 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";
|
||||
}
|
||||
?>
|
||||
|
3
application/views/scripts/library/context-menu.phtml
Normal file
3
application/views/scripts/library/context-menu.phtml
Normal file
|
@ -0,0 +1,3 @@
|
|||
<ul id="myMenu" class="contextMenu">
|
||||
<?php echo $this->partialLoop('library/contextMenuPartial.phtml', $this->menu) ?>
|
||||
</ul>
|
|
@ -0,0 +1 @@
|
|||
<li><a href="<?php echo $this->action ?>"><?php echo $this->text ?></a></li>
|
1
application/views/scripts/library/delete.phtml
Normal file
1
application/views/scripts/library/delete.phtml
Normal file
|
@ -0,0 +1 @@
|
|||
<br /><br /><center>View script for controller <b>Library</b> and script/action name <b>delete</b></center>
|
0
application/views/scripts/library/index.phtml
Normal file
0
application/views/scripts/library/index.phtml
Normal 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>
|
1
application/views/scripts/library/search.phtml
Normal file
1
application/views/scripts/library/search.phtml
Normal file
|
@ -0,0 +1 @@
|
|||
<br /><br /><center>View script for controller <b>Library</b> and script/action name <b>search</b></center>
|
Loading…
Add table
Add a link
Reference in a new issue