联系官方销售客服

1835022288

028-61286886

求助 版主:官方研发技术组
重写Content类,按手册来的,怎么不生效呢
类型:迅睿CMS 更新时间:2022-04-30 09:24:43

重写Content类,按手册来的,怎么不生效呢?

<?php namespace Phpcmf\Model\Demo;


// 模块内容模型类


class Content extends \Phpcmf\Model\Content {


    // 内容发布之前

    public function _content_post_before($id, $data, $old) {

        if (!$id) {

            // 这个判断表示新增内容

            $data[1]['hits'] = rand(100, 10000); // 随机100~1000间的数量

        }

        return $data;

    }


image

    

   保存内容后,}