BigCoke233/noter

Typecho 前台删除文章

BigCoke233 opened this issue · 0 comments

什么操作都进后台做太麻烦,实现一个简单的前台删文功能吧~

<?php Typecho_Widget::widget('Widget_Security')->to($security); ?>
<a href="<?php $security->index('/action/contents-post-edit?do=delete&cid='.$this->cid); ?>">删除文章</a>

直接删掉太反人类,做个简单的确定功能。

<?php Typecho_Widget::widget('Widget_Security')->to($security); ?>
<a href="<?php $security->index('/action/contents-post-edit?do=delete&cid='.$this->cid); ?>" onclick="javascript:return p_del()">删除文章</a>
<script>
function p_del() {
    var msg = "您真的确定要删除吗?";
    if (confirm(msg)==true){
        return true;
    }else{
        return false;
    }
}
</script>

以上代码来自 QQ 爹


对其做一些修改,删除后自动跳转到首页,并且只有登陆后才能看见。

<?php if($this->user->hasLogin()):?>
<?php Typecho_Widget::widget('Widget_Security')->to($security); ?>
<a href="<?php $security->index('/action/contents-post-edit?do=delete&cid='.$this->cid); ?>" onclick="javascript:return p_del()">删除文章</a>
<script>
function p_del() {
    var msg = "您真的确定要删除吗?";
    if (confirm(msg)==true){
        return true;
        window.location.href="<?php $this->options->SiteUrl(); ?>"; 
    }else{
        return false;
    }
}
</script>
<?php endif; ?>