當前位置: 首頁>>代碼示例>>PHP>>正文


PHP menu::add方法代碼示例

本文整理匯總了PHP中menu::add方法的典型用法代碼示例。如果您正苦於以下問題:PHP menu::add方法的具體用法?PHP menu::add怎麽用?PHP menu::add使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在menu的用法示例。


在下文中一共展示了menu::add方法的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::add方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。