当前位置: 首页>>代码示例>>PHP>>正文


PHP menu::set_value方法代码示例

本文整理汇总了PHP中menu::set_value方法的典型用法代码示例。如果您正苦于以下问题:PHP menu::set_value方法的具体用法?PHP menu::set_value怎么用?PHP menu::set_value使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在menu的用法示例。


在下文中一共展示了menu::set_value方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: add_nav

function add_nav()
{
    global $smarty, $lang;
    $type = post('type');
    $word = post('word');
    $link = post('link');
    $obj = new menu();
    $obj->set_value('men_type', $type);
    $obj->set_value('men_name', $word);
    $obj->set_value('men_url', $link);
    $obj->add();
    $smarty->assign('info_text', '添加导航成功');
    $smarty->assign('link_text', $lang['return_list']);
    $smarty->assign('link_href', url(array('channel' => 'super', 'mod' => 'nav_list')));
}
开发者ID:jechiy,项目名称:xiu-cms,代码行数:15,代码来源:deal.php

示例2: do_add_channel

function do_add_channel($original, $cha_code, $cha_name, $word_1, $word_2)
{
    //判断频道是否已存在
    $obj = new channel();
    $obj->set_where('');
    $obj->set_where("cha_code = '{$cha_code}'");
    $channel = $obj->get_one();
    if (count($channel)) {
        return 0;
    }
    //添加频道记录
    $cha_original = get_id('channel', 'cha_code', $original);
    $obj = new channel();
    $obj->set_value('cha_code', $cha_code);
    $obj->set_value('cha_name', $cha_name);
    $obj->set_value('cha_original', $cha_original);
    $obj->set_value('cha_lang', S_LANG);
    $obj->add();
    $obj = new varia();
    //添加前台导航(导航管理)
    if ($original == 'about') {
        $obj->set_value('var_name', 'nav_stage_' . $cha_code);
        $obj->set_value('var_value', $cha_name);
        $obj->add();
    }
    //添加后台导航(导航管理)
    $obj->clear_value();
    $obj->set_value('var_name', 'nav_admin_' . $cha_code);
    $obj->set_value('var_value', $cha_name);
    $obj->add();
    //添加后台导航菜单
    $obj = new menu();
    $obj->set_value('men_type', 'admin_header');
    $obj->set_value('men_name', $cha_name);
    $obj->set_value('men_url', $cha_code . '/mod-sheet/');
    $obj->add();
    $obj->clear_value();
    $obj->set_value('men_type', 'admin_' . $cha_code);
    $obj->set_value('men_name', $cha_name . '列表');
    $obj->set_value('men_url', $cha_code . '/mod-sheet/');
    $obj->add();
    $obj->clear_value();
    $obj->set_value('men_type', 'admin_' . $cha_code);
    $obj->set_value('men_name', '添加' . $cha_name);
    $obj->set_value('men_url', $cha_code . '/mod-add/');
    $obj->add();
    if ($original == 'article' || $original == 'goods') {
        $obj->clear_value();
        $obj->set_value('men_type', 'admin_' . $cha_code);
        $obj->set_value('men_name', $cha_name . '分类');
        $obj->set_value('men_url', $cha_code . '/mod-cat_list/');
        $obj->add();
    }
    if ($original == 'goods') {
        $obj->clear_value();
        $obj->set_value('men_type', 'admin_' . $cha_code);
        $obj->set_value('men_name', $cha_name . '属性');
        $obj->set_value('men_url', $cha_code . '/mod-att_list/');
        $obj->add();
    }
    //添加前台导航菜单
    $obj = new menu();
    $obj->set_value('men_lang', S_LANG);
    $obj->set_value('men_type', 'header');
    $obj->set_value('men_name', $cha_name);
    $obj->set_value('men_url', $cha_code . '/');
    $obj->add();
    //添加属性
    if ($original == 'download') {
        $obj = new att_art();
        $obj->set_where('');
        $obj->set_where("att_channel_id = {$cha_original}");
        $list = $obj->get_list();
        $channel_id = get_id('channel', 'cha_code', $cha_code);
        for ($i = 0; $i < count($list); $i++) {
            $obj->clear_value();
            $obj->set_value('att_channel_id', $channel_id);
            $obj->set_value('att_lang', $list[$i]['att_lang']);
            $obj->set_value('att_code', $list[$i]['att_code']);
            $obj->set_value('att_name', $list[$i]['att_name']);
            $obj->add();
        }
    }
    //创建语言包
    $path = 'languages/' . S_LANG . '/admin/';
    if (file_exists($path . $original . '.txt')) {
        $str = file_get_contents($path . $original . '.txt');
        $str = str_replace($word_1, $word_2, $str);
        file_put_contents($path . $cha_code . '.txt', $str);
    }
    $path = 'languages/' . S_LANG . '/index/';
    if (file_exists($path . $original . '.txt')) {
        $str = file_get_contents($path . $original . '.txt');
        $str = str_replace($word_1, $word_2, $str);
        file_put_contents($path . $cha_code . '.txt', $str);
    }
    //修改伪静态文件
    $path = 'admin/module/basic/htaccess.txt';
    if (file_exists($path)) {
        $str = file_get_contents($path);
//.........这里部分代码省略.........
开发者ID:jechiy,项目名称:xiu-cms,代码行数:101,代码来源:function.php


注:本文中的menu::set_value方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。