Files
plugins/Attachment/Action.php
chorblack e75f275ef4
Some checks failed
定时更新GitHub源插件 / 自动更新GitHub插件 (push) Has been cancelled
Initial commit
2026-03-07 11:19:25 +08:00

24 lines
876 B
PHP

<?php
if (!defined('__TYPECHO_ROOT_DIR__')) exit;
class Attachment_Action extends Typecho_Widget implements Widget_Interface_Do
{
public function action()
{
$db = Typecho_Db::get();
$options = Typecho_Widget::widget('Widget_Options');
$domain = $options->plugin('Attachment')->domain;
$cid = intval($this->request->get("cid"));
$attach = $db->fetchRow($db->select()->from('table.contents')->where('type = \'attachment\' AND cid = ?', $cid));
if (empty($attach)) {
throw new Typecho_Widget_Exception(_t('附件文件不存在或无法读取,请与管理员联系。'));
}
$attach_text = unserialize($attach['text']);
$attach_url = Typecho_Common::url($attach_text['path'], ($domain ? $domain : $options->index));
if (isset($options->plugins['activated']['Stat'])) {
Stat_Plugin::viewStat($cid);
}
$this->response->redirect($attach_url);
}
}