在数据恢复中直接修改路径
This commit is contained in:
parent
b10eef0164
commit
178b938896
|
@ -8,6 +8,7 @@ class Admin_SysController extends Zend_Controller_Action
|
||||||
$this->messenger=$this->_helper->getHelper('FlashMessenger');
|
$this->messenger=$this->_helper->getHelper('FlashMessenger');
|
||||||
$this->view->messages = $this->messenger->getMessages();
|
$this->view->messages = $this->messenger->getMessages();
|
||||||
$this->_helper->layout->setLayout('administry');//新UI
|
$this->_helper->layout->setLayout('administry');//新UI
|
||||||
|
$this->view->theme = new Theme();
|
||||||
}
|
}
|
||||||
|
|
||||||
function postDispatch()
|
function postDispatch()
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
$this->headTitle('后台管理');
|
$this->headTitle('后台管理');
|
||||||
$this->headTitle()->setSeparator(' - ');
|
$this->headTitle()->setSeparator(' - ');
|
||||||
$this->headLink()->appendStylesheet('/css/admin.css');
|
$this->headLink()->appendStylesheet('/css/admin.css');
|
||||||
|
$this->theme->AppendPlus($this,'colorbox');
|
||||||
?>
|
?>
|
||||||
<div id="leftPanel">
|
<div id="leftPanel">
|
||||||
<?= $this->partial('sys/left.phtml'); ?>
|
<?= $this->partial('sys/left.phtml'); ?>
|
||||||
|
@ -23,6 +24,7 @@
|
||||||
<th>路径</th>
|
<th>路径</th>
|
||||||
<th>大小</th>
|
<th>大小</th>
|
||||||
<th>文件数</th>
|
<th>文件数</th>
|
||||||
|
<th>操作</th>
|
||||||
</tr></thead><tbody>
|
</tr></thead><tbody>
|
||||||
<?php
|
<?php
|
||||||
if (count($this->paginator)):
|
if (count($this->paginator)):
|
||||||
|
@ -36,6 +38,7 @@ if (count($this->paginator)):
|
||||||
<td><?php echo $item['path'];?></td>
|
<td><?php echo $item['path'];?></td>
|
||||||
<td><?php echo $item['filesize'];?></td>
|
<td><?php echo $item['filesize'];?></td>
|
||||||
<td><?php echo $item['filecount'];?></td>
|
<td><?php echo $item['filecount'];?></td>
|
||||||
|
<td><a href="/admin/data/dataset/ac/getdataset/uuid/<?php echo $item['uuid'];?>" class="iframe">数据路径</a></td>
|
||||||
</tr>
|
</tr>
|
||||||
<?php endforeach; endif; ?>
|
<?php endforeach; endif; ?>
|
||||||
</tbody></table>
|
</tbody></table>
|
||||||
|
@ -44,3 +47,10 @@ if (count($this->paginator)):
|
||||||
<?php if(!empty($this->activeID)) : ?>
|
<?php if(!empty($this->activeID)) : ?>
|
||||||
<script>$('#<?= $this->activeID?>').addClass("btn-primary");</script>
|
<script>$('#<?= $this->activeID?>').addClass("btn-primary");</script>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
<script>
|
||||||
|
$(".iframe").colorbox({iframe:true, width:"50%", height:"50%"});
|
||||||
|
$(".inline").colorbox({inline:true, width:"50%"});
|
||||||
|
function Alert(html){
|
||||||
|
$.colorbox({'innerWidth':'50%','html':'<h4 style="font-size:16px;font-weight:bold;">'+html+'</h4>'});
|
||||||
|
}
|
||||||
|
</script>
|
Loading…
Reference in New Issue