2009-03-06 03:20:46 +00:00
|
|
|
|
<?php
|
|
|
|
|
$this->headTitle($this->config->title->site);
|
|
|
|
|
$this->headTitle($this->config->title->data);
|
2013-11-10 08:34:18 +00:00
|
|
|
|
$this->headTitle('Download');
|
2009-03-06 03:20:46 +00:00
|
|
|
|
$this->headTitle()->setSeparator(' - ');
|
2013-11-10 08:34:18 +00:00
|
|
|
|
$this->breadcrumb('<a href="/">Home</a>');
|
2009-03-06 03:20:46 +00:00
|
|
|
|
$this->breadcrumb('<a href="/data">'.$this->config->title->data.'</a>');
|
2013-11-10 08:34:18 +00:00
|
|
|
|
$this->breadcrumb('Download');
|
2009-03-06 03:20:46 +00:00
|
|
|
|
$this->breadcrumb()->setSeparator(' > ');
|
|
|
|
|
?>
|
2013-05-26 12:08:28 +00:00
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="span3">
|
|
|
|
|
<div class="well sidebar-nav">
|
|
|
|
|
<?= $this->partial('account/left.phtml'); ?>
|
|
|
|
|
</div><!--/.well -->
|
|
|
|
|
</div><!--/span-->
|
|
|
|
|
<div class="span9">
|
2009-03-06 03:20:46 +00:00
|
|
|
|
<h1><?php echo $this->md['title']; ?>(<?php echo $this->md['filesize']; ?>MB)</h1>
|
2013-06-23 08:37:52 +00:00
|
|
|
|
<fieldset><legend>FTP URL</legend>
|
2009-03-06 03:20:46 +00:00
|
|
|
|
<ul>
|
2013-05-26 12:08:28 +00:00
|
|
|
|
<?php if ($this->ftpurl) : ?>
|
|
|
|
|
<li><a href="<?php echo $this->ftpurl; ?>"><?php echo $this->ftpurl; ?></a></li>
|
|
|
|
|
<?php endif;?>
|
2009-03-06 03:20:46 +00:00
|
|
|
|
</ul>
|
|
|
|
|
</fieldset>
|
2013-05-26 12:08:28 +00:00
|
|
|
|
|
2013-06-23 08:37:52 +00:00
|
|
|
|
<fieldset><legend>FTP Usage</legend>
|
2013-11-10 08:34:18 +00:00
|
|
|
|
Your FTP account: <ul><li>Username: <?php echo $this->username; ?></li>
|
2013-06-23 08:37:52 +00:00
|
|
|
|
<li>Password:<?php echo $this->userpass; ?></li>
|
|
|
|
|
<li>Active Time:<?php echo $this->ftptime; ?></li>
|
2009-12-25 11:57:59 +00:00
|
|
|
|
</ul>
|
|
|
|
|
</fieldset>
|
2013-05-26 12:08:28 +00:00
|
|
|
|
</div>
|
2009-03-06 03:20:46 +00:00
|
|
|
|
</div>
|