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 @@
<br /><br /><center>View script for controller <b>Error</b> and script/action name <b>denied</b></center>

View 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>

View file

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

View file

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

View file

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

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>

View file

@ -0,0 +1,3 @@
<?php
echo $this->form;
echo $this->errorMessage;

View file

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

View file

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

View file

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

View 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>';
}
?>

View file

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

View file

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

View 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>

View 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>

View file

@ -0,0 +1,4 @@
<?php
$this->form->setAction($this->url());
echo $this->form;

View 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>';
}
?>

View file

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

View file

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

View 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>

View file

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

View file

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

View file

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

View file

@ -0,0 +1,6 @@
<form id="plupload_form">
<div id="plupload_files"></div>
</form>
<div id="plupload_error">
<table></table>
</div>

View file

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

View file

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

View file

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

View file

@ -0,0 +1,2 @@
<div><span id='schedule_add_show'>Add Show</span></div>
<div id='schedule_calendar'></div>

View 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>";
}
?>

View file

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

View file

@ -0,0 +1 @@
<?php echo $this->field; ?>

View file

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