| 123456789101112131415161718192021222324252627282930 | <?php if(!defined('__TYPECHO_ADMIN__')) exit; ?><?phpif (isset($post) || isset($page)) {    $cid = isset($post) ? $post->cid : $page->cid;    if ($cid) {        \Widget\Contents\Attachment\Related::alloc(['parentId' => $cid])->to($attachment);    } else {        \Widget\Contents\Attachment\Unattached::alloc()->to($attachment);    }}?><div id="upload-panel" class="p">    <div class="upload-area" draggable="true"><?php _e('拖放文件到这里<br>或者 %s选择文件上传%s', '<a href="###" class="upload-file">', '</a>'); ?></div>    <ul id="file-list">    <?php while ($attachment->next()): ?>        <li data-cid="<?php $attachment->cid(); ?>" data-url="<?php echo $attachment->attachment->url; ?>" data-image="<?php echo $attachment->attachment->isImage ? 1 : 0; ?>"><input type="hidden" name="attachment[]" value="<?php $attachment->cid(); ?>" />            <a class="insert" title="<?php _e('点击插入文件'); ?>" href="###"><?php $attachment->title(); ?></a>            <div class="info">                <?php echo number_format(ceil($attachment->attachment->size / 1024)); ?> Kb                <a class="file" target="_blank" href="<?php $options->adminUrl('media.php?cid=' . $attachment->cid); ?>" title="<?php _e('编辑'); ?>"><i class="i-edit"></i></a>                <a href="###" class="delete" title="<?php _e('删除'); ?>"><i class="i-delete"></i></a>            </div>        </li>    <?php endwhile; ?>    </ul></div>
 |