home-code

示例❤源码

<?php
/*
 * user模板配置
/*/
$_ve_user = array(

    
//config配置
    
'c' => array(
        
'vmode' => 'dynamic'//dynamic,static,close
        
'stexp' => '2h'//hour(s)
    
),
    
    
//mod.home模型首页
    
'm' => 'user/list'// 个人话题列表
    
    //详情页
    #'d' => 'user/list',
    
    
'add' => 'user/add'// 发表话题
    
'edit' => 'user/detail-edit'// 编辑话题 : user.2019-81-8998.edit
    
'post' => 'user/detail-post'// 编辑帖子 : user.2019-81-8998.post

);

-End-