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/error/denied.phtml
Normal file
1
application/views/scripts/error/denied.phtml
Normal file
|
@ -0,0 +1 @@
|
|||
<br /><br /><center>View script for controller <b>Error</b> and script/action name <b>denied</b></center>
|
28
application/views/scripts/error/error.phtml
Normal file
28
application/views/scripts/error/error.phtml
Normal file
|
@ -0,0 +1,28 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<title>Zend Framework Default Application</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>An error occurred</h1>
|
||||
<h2><?php echo $this->message ?></h2>
|
||||
|
||||
<?php if (isset($this->exception)): ?>
|
||||
|
||||
<h3>Exception information:</h3>
|
||||
<p>
|
||||
<b>Message:</b> <?php echo $this->exception->getMessage() ?>
|
||||
</p>
|
||||
|
||||
<h3>Stack trace:</h3>
|
||||
<pre><?php echo $this->exception->getTraceAsString() ?>
|
||||
</pre>
|
||||
|
||||
<h3>Request Parameters:</h3>
|
||||
<pre><?php echo var_export($this->request->getParams(), true) ?>
|
||||
</pre>
|
||||
<?php endif ?>
|
||||
|
||||
</body>
|
||||
</html>
|
1
application/views/scripts/index/display.phtml
Normal file
1
application/views/scripts/index/display.phtml
Normal file
|
@ -0,0 +1 @@
|
|||
<br /><br /><center>View script for controller <b>Index</b> and script/action name <b>display</b></center>
|
0
application/views/scripts/index/index.phtml
Normal file
0
application/views/scripts/index/index.phtml
Normal file
1
application/views/scripts/index/main.phtml
Normal file
1
application/views/scripts/index/main.phtml
Normal file
|
@ -0,0 +1 @@
|
|||
<br /><br /><center>View script for controller <b>Index</b> and script/action name <b>main</b></center>
|
1
application/views/scripts/index/newfield.phtml
Normal file
1
application/views/scripts/index/newfield.phtml
Normal file
|
@ -0,0 +1 @@
|
|||
<br /><br /><center>View script for controller <b>Index</b> and script/action name <b>newfield</b></center>
|
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>
|
3
application/views/scripts/login/index.phtml
Normal file
3
application/views/scripts/login/index.phtml
Normal file
|
@ -0,0 +1,3 @@
|
|||
<?php
|
||||
echo $this->form;
|
||||
echo $this->errorMessage;
|
1
application/views/scripts/login/logout.phtml
Normal file
1
application/views/scripts/login/logout.phtml
Normal file
|
@ -0,0 +1 @@
|
|||
<br /><br /><center>View script for controller <b>Login</b> and script/action name <b>logout</b></center>
|
1
application/views/scripts/playlist/add-item.phtml
Normal file
1
application/views/scripts/playlist/add-item.phtml
Normal file
|
@ -0,0 +1 @@
|
|||
<br /><br /><center>View script for controller <b>Playlist</b> and script/action name <b>addItem</b></center>
|
1
application/views/scripts/playlist/delete-active.phtml
Normal file
1
application/views/scripts/playlist/delete-active.phtml
Normal file
|
@ -0,0 +1 @@
|
|||
<br /><br /><center>View script for controller <b>Playlist</b> and script/action name <b>deleteActive</b></center>
|
|
@ -0,0 +1,8 @@
|
|||
<?php
|
||||
if (count($this->playlistcontents)) {
|
||||
echo $this->partialLoop('playlist/playlistEditorTable.phtml', $this->playlistcontents);
|
||||
}
|
||||
else {
|
||||
echo '<div class="pl_empty">Empty playlist</div>';
|
||||
}
|
||||
?>
|
1
application/views/scripts/playlist/delete-item.phtml
Normal file
1
application/views/scripts/playlist/delete-item.phtml
Normal file
|
@ -0,0 +1 @@
|
|||
<br /><br /><center>View script for controller <b>Playlist</b> and script/action name <b>deleteItem</b></center>
|
1
application/views/scripts/playlist/delete.phtml
Normal file
1
application/views/scripts/playlist/delete.phtml
Normal file
|
@ -0,0 +1 @@
|
|||
<br /><br /><center>View script for controller <b>Playlist</b> and script/action name <b>delete</b></center>
|
35
application/views/scripts/playlist/edit.phtml
Normal file
35
application/views/scripts/playlist/edit.phtml
Normal file
|
@ -0,0 +1,35 @@
|
|||
<form name="PL">
|
||||
<div class="pl_head">
|
||||
<span class="pl_input"><input type="checkbox" name="all"></span>
|
||||
<span class="pl_title">Title</span>
|
||||
<span class="pl_artist">Creator</span>
|
||||
<span class="pl_length">Length</span>
|
||||
<span class="pl_cue_in">Cue In</span>
|
||||
<span class="pl_cue_out">Cue Out</span>
|
||||
<span class="pl_playlength">Playlength</span>
|
||||
</div>
|
||||
<div class="pl_main">
|
||||
<ul id="pl_sortable">
|
||||
<?php
|
||||
if (count($this->playlistcontents)) {
|
||||
echo $this->partialLoop('playlist/playlistEditorTable.phtml', $this->playlistcontents);
|
||||
}
|
||||
else {
|
||||
echo '<li class="pl_empty">Empty playlist</li>';
|
||||
}
|
||||
?>
|
||||
</ul>
|
||||
</div>
|
||||
</form>
|
||||
<div class="pl_footer">
|
||||
<span id="pl_remove_selected">Remove Selected</span>
|
||||
<span id="pl_delete">
|
||||
<a href="<?php echo $this->url(
|
||||
array(
|
||||
'controller' => 'Playlist',
|
||||
'action' => 'delete-active'
|
||||
),
|
||||
'default',
|
||||
true) ?>">Delete Playlist</a>
|
||||
</span>
|
||||
</div>
|
15
application/views/scripts/playlist/index.phtml
Normal file
15
application/views/scripts/playlist/index.phtml
Normal file
|
@ -0,0 +1,15 @@
|
|||
<div><a href="<?php echo $this->url(
|
||||
array(
|
||||
'controller' => 'Playlist',
|
||||
'action' => 'new'
|
||||
),
|
||||
'default',
|
||||
true) ?>"> New Playlist</a></div>
|
||||
|
||||
<div><a href="<?php echo $this->url(
|
||||
array(
|
||||
'controller' => 'Playlist',
|
||||
'action' => 'edit'
|
||||
),
|
||||
'default',
|
||||
true) ?>"> Edit Playlist</a></div>
|
4
application/views/scripts/playlist/metadata.phtml
Normal file
4
application/views/scripts/playlist/metadata.phtml
Normal file
|
@ -0,0 +1,4 @@
|
|||
<?php
|
||||
|
||||
$this->form->setAction($this->url());
|
||||
echo $this->form;
|
8
application/views/scripts/playlist/move-item.ajax.phtml
Normal file
8
application/views/scripts/playlist/move-item.ajax.phtml
Normal file
|
@ -0,0 +1,8 @@
|
|||
<?php
|
||||
if (count($this->playlistcontents)) {
|
||||
echo $this->partialLoop('playlist/playlistEditorTable.phtml', $this->playlistcontents);
|
||||
}
|
||||
else {
|
||||
echo '<div class="pl_empty">Empty playlist</div>';
|
||||
}
|
||||
?>
|
1
application/views/scripts/playlist/move-item.phtml
Normal file
1
application/views/scripts/playlist/move-item.phtml
Normal file
|
@ -0,0 +1 @@
|
|||
<br /><br /><center>View script for controller <b>Playlist</b> and script/action name <b>moveItem</b></center>
|
1
application/views/scripts/playlist/new.phtml
Normal file
1
application/views/scripts/playlist/new.phtml
Normal file
|
@ -0,0 +1 @@
|
|||
<br /><br /><center>View script for controller <b>Playlist</b> and script/action name <b>new</b></center>
|
31
application/views/scripts/playlist/playlistEditorTable.phtml
Normal file
31
application/views/scripts/playlist/playlistEditorTable.phtml
Normal file
|
@ -0,0 +1,31 @@
|
|||
<?php // playlistEditorTable.phtml ?>
|
||||
|
||||
<li class="pl_row" id="pl_<?php echo $this->partialCounter-1 ?>">
|
||||
<div class="pl_fade_in">
|
||||
<span>Fade in: </span><span class="pl_time"><?php echo $this->fadein ?></span>
|
||||
</div>
|
||||
<span class="pl_input">
|
||||
<input type="checkbox" class="checkbox" name="<?php echo $this->partialCounter-1 ?>"/>
|
||||
</span>
|
||||
<span class="pl_title">
|
||||
<?php echo $this->CcFiles['track_title'] ?>
|
||||
</span>
|
||||
<span class="pl_artist">
|
||||
<?php echo $this->CcFiles['artist_name'] ?>
|
||||
</span>
|
||||
<span class="pl_length" >
|
||||
<?php echo $this->CcFiles['length'] ?>
|
||||
</span>
|
||||
<span class="pl_cue_in pl_time">
|
||||
<?php echo $this->cuein ?>
|
||||
</span>
|
||||
<span class="pl_cue_out pl_time">
|
||||
<?php echo $this->cueout ?>
|
||||
</span>
|
||||
<span class="pl_playlength">
|
||||
<?php echo $this->cliplength ?>
|
||||
</span>
|
||||
<div class="pl_fade_out">
|
||||
<span>Fade out: </span><span class="pl_time"><?php echo $this->fadeout ?></span>
|
||||
</div>
|
||||
</li>
|
1
application/views/scripts/playlist/set-cue.phtml
Normal file
1
application/views/scripts/playlist/set-cue.phtml
Normal file
|
@ -0,0 +1 @@
|
|||
<br /><br /><center>View script for controller <b>Playlist</b> and script/action name <b>setCue</b></center>
|
1
application/views/scripts/playlist/set-fade.phtml
Normal file
1
application/views/scripts/playlist/set-fade.phtml
Normal file
|
@ -0,0 +1 @@
|
|||
<br /><br /><center>View script for controller <b>Playlist</b> and script/action name <b>setFade</b></center>
|
1
application/views/scripts/plupload/index.phtml
Normal file
1
application/views/scripts/plupload/index.phtml
Normal file
|
@ -0,0 +1 @@
|
|||
<br /><br /><center>View script for controller <b>Plupload</b> and script/action name <b>index</b></center>
|
6
application/views/scripts/plupload/plupload.phtml
Normal file
6
application/views/scripts/plupload/plupload.phtml
Normal file
|
@ -0,0 +1,6 @@
|
|||
<form id="plupload_form">
|
||||
<div id="plupload_files"></div>
|
||||
</form>
|
||||
<div id="plupload_error">
|
||||
<table></table>
|
||||
</div>
|
1
application/views/scripts/plupload/upload.phtml
Normal file
1
application/views/scripts/plupload/upload.phtml
Normal file
|
@ -0,0 +1 @@
|
|||
<br /><br /><center>View script for controller <b>Library</b> and script/action name <b>upload</b></center>
|
1
application/views/scripts/schedule/add-show-dialog.phtml
Normal file
1
application/views/scripts/schedule/add-show-dialog.phtml
Normal file
|
@ -0,0 +1 @@
|
|||
<br /><br /><center>View script for controller <b>Schedule</b> and script/action name <b>addShowDialog</b></center>
|
1
application/views/scripts/schedule/event-feed.phtml
Normal file
1
application/views/scripts/schedule/event-feed.phtml
Normal file
|
@ -0,0 +1 @@
|
|||
<br /><br /><center>View script for controller <b>Schedule</b> and script/action name <b>eventFeed</b></center>
|
2
application/views/scripts/schedule/index.phtml
Normal file
2
application/views/scripts/schedule/index.phtml
Normal file
|
@ -0,0 +1,2 @@
|
|||
<div><span id='schedule_add_show'>Add Show</span></div>
|
||||
<div id='schedule_calendar'></div>
|
29
application/views/scripts/search/display.phtml
Normal file
29
application/views/scripts/search/display.phtml
Normal file
|
@ -0,0 +1,29 @@
|
|||
<?php
|
||||
|
||||
$this->form->setAction($this->url());
|
||||
echo $this->form;
|
||||
?>
|
||||
<span id="search_add">Add</span>
|
||||
<span id="search_submit">Submit</span>
|
||||
|
||||
<?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 "<div>No Results</div>";
|
||||
}
|
||||
?>
|
1
application/views/scripts/search/index.phtml
Normal file
1
application/views/scripts/search/index.phtml
Normal file
|
@ -0,0 +1 @@
|
|||
<br /><br /><center>View script for controller <b>Forms</b> and script/action name <b>index</b></center>
|
1
application/views/scripts/search/newfield.ajax.phtml
Normal file
1
application/views/scripts/search/newfield.ajax.phtml
Normal file
|
@ -0,0 +1 @@
|
|||
<?php echo $this->field; ?>
|
1
application/views/scripts/search/newfield.phtml
Normal file
1
application/views/scripts/search/newfield.phtml
Normal file
|
@ -0,0 +1 @@
|
|||
<br /><br /><center>View script for controller <b>Forms</b> and script/action name <b>newfield</b></center>
|
Loading…
Add table
Add a link
Reference in a new issue