forked from typecho-fans/plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Action.php
23 lines (22 loc) · 876 Bytes
/
Action.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?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);
}
}