📄 tpl_public.php
字号:
<!-- tpl_public.php -->
<?php global $UPL; ?>
<?php /* Show this if there are errors */ if ( count ( $errors ) ) : ?>
<div class="rounded red">
<p style="margin-bottom:10px;">The following files were not uploaded because of the indicated errors:</p>
<ul class="ls_menu2">
<?php while ( list ( , $error ) = each ( $errors ) ) : ?>
<li><?=$error?></li>
<?php endwhile; ?>
</ul>
</div>
<?php endif; ?>
<?php /* Show this if there is at least one file uploaded */ if ( count ( $uploaded ) ) : ?>
<div style="background-color:#F5FFE6;border-bottom: 1px solid #DCE6CF; padding: 10px 7px 10px 10px; margin-top: 5px; -moz-border-radius:6px;">
<h1>Uploaded files</h1>
<p>
<a href="<?=$view_url?>">View uploaded files.</a><br />
This is the URL to View the files you uploaded. If you wish to share these files with your friends, send them this URL.
<!--<br /><br />
<a href="<?=$manage_url?>">Edit uploaded files.</a><br/>
This is the URL to Edit the files you uploaded. Save or Bookmark this link if you wish to edit them later.
-->
<br /><br />
To copy the URL:<br />
If you are on Internet Explorer, right click on the link and select Copy Shortcut.<br />
On Firefox, right click and select Copy Link Location.
</p>
</div>
<?php endif; ?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -