2010-12-07 20:19:27 +01:00
|
|
|
<?php echo $this->doctype() ?>
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
|
|
<head>
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
2011-02-03 23:51:35 +01:00
|
|
|
<?php echo $this->headTitle() ?>
|
2010-12-07 20:19:27 +01:00
|
|
|
<?php echo $this->headLink() ?>
|
2013-01-04 17:40:32 +01:00
|
|
|
<?php echo $this->headScript() ?>
|
2012-01-30 22:28:27 +01:00
|
|
|
<?php echo isset($this->google_analytics)?$this->google_analytics:"" ?>
|
2012-10-19 20:42:01 +02:00
|
|
|
<?php $baseUrl = Application_Common_OsPath::getBaseDir(); ?>
|
2010-12-07 20:19:27 +01:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
2012-05-22 12:40:08 +02:00
|
|
|
<?php echo $this->partial('partialviews/trialBox.phtml', array("is_trial"=>$this->isTrial(), "trial_remain"=> $this->trialRemaining())) ?>
|
2011-01-31 05:05:49 +01:00
|
|
|
<div id="Panel">
|
|
|
|
<div class="logo"></div>
|
2012-03-08 23:42:38 +01:00
|
|
|
<?php echo $this->versionNotify();
|
|
|
|
$sss = $this->SourceSwitchStatus();
|
|
|
|
$scs = $this->SourceConnectionStatus();
|
|
|
|
?>
|
2012-05-22 12:40:08 +02:00
|
|
|
<?php echo $this->partial('partialviews/header.phtml', array("live_dj_switch"=>$sss['live_dj'], "live_dj_connection"=>$scs['live_dj'], "master_dj_switch"=>$sss['master_dj'], "master_dj_connection"=>$scs['master_dj'],
|
2012-03-15 19:33:59 +01:00
|
|
|
"scheduled_play_switch"=>$sss['scheduled_play'])) ?>
|
2011-01-27 03:43:56 +01:00
|
|
|
<?php $partial = array('menu.phtml', 'default');
|
2012-04-03 20:15:15 +02:00
|
|
|
$this->navigation()->menu()->setPartial($partial); ?>
|
|
|
|
<div class="personal-block solo">
|
|
|
|
<ul>
|
2012-12-10 22:55:44 +01:00
|
|
|
<li>
|
2013-01-29 21:17:29 +01:00
|
|
|
<a id="current-user" href=<?php echo $baseUrl . "User/edit-user"?>><span class="name"><?php echo $this->escape($this->loggedInAs()); ?></span></a> | <a href=<?php echo $baseUrl . "Login/logout"?>><?php echo _("Logout")?></a>
|
2012-12-10 22:55:44 +01:00
|
|
|
</li>
|
2012-04-03 20:15:15 +02:00
|
|
|
</ul>
|
|
|
|
</div>
|
2011-01-27 03:43:56 +01:00
|
|
|
|
|
|
|
<?php echo $this->navigation()->menu() ?>
|
2011-01-31 05:05:49 +01:00
|
|
|
</div>
|
2012-05-22 12:40:08 +02:00
|
|
|
|
2011-01-28 06:23:39 +01:00
|
|
|
<div class="wrapper" id="content"><?php echo $this->layout()->content ?></div>
|
2013-04-16 20:37:08 +02:00
|
|
|
|
|
|
|
<script id="tmpl-pl-cues" type="text/template">
|
|
|
|
<div class="waveform-cues">
|
|
|
|
<div class="playlist-tracks"></div>
|
|
|
|
<form class="form-inline">
|
|
|
|
<span class="btn_play ui-state-default">Play</span>
|
|
|
|
<span class="btn_stop ui-state-default">Stop</span>
|
|
|
|
<select class="time_format">
|
|
|
|
<option value="seconds">seconds</option>
|
|
|
|
<option value="thousandths">thousandths</option>
|
|
|
|
<option value="hh:mm:ss">hh:mm:ss</option>
|
|
|
|
<option value="hh:mm:ss.uu">hh:mm:ss + hundredths</option>
|
|
|
|
<option value="hh:mm:ss.uuu">hh:mm:ss + milliseconds</option>
|
|
|
|
</select>
|
|
|
|
<input type="text" class="audio_start input-small">
|
|
|
|
<input type="text" class="audio_end input-small">
|
|
|
|
<input type="text" class="audio_pos input-small">
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<script id="tmpl-pl-fades" type="text/template">
|
|
|
|
<div class="waveform-fades">
|
|
|
|
<div class="playlist-tracks"></div>
|
2013-04-16 23:24:30 +02:00
|
|
|
<div>
|
|
|
|
<span class="btn_play ui-state-default">Play</span>
|
|
|
|
<span class="btn_stop ui-state-default">Stop</span>
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<span class="btn_select ui-state-default" data-state="select">Select</span>
|
|
|
|
<span class="btn_shift ui-state-default" data-state="shift">Shift</span>
|
|
|
|
</div>
|
2013-04-16 20:37:08 +02:00
|
|
|
</div>
|
|
|
|
</script>
|
2010-12-07 20:19:27 +01:00
|
|
|
</body>
|
|
|
|
</html>
|