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


PHP content::CreateParentMenu方法代码示例

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


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

示例1: db

 function upgrade_1_22()
 {
     global $sql, $sql2, $tp, $aa;
     $upgrade = TRUE;
     $sqlc = new db();
     $sqld = new db();
     //convert preferences for core default preferences
     if ($sqlc->db_Select("core", "*", "e107_name='pcontent' ")) {
         $row = $sqlc->db_Fetch();
         $tmp = e107::unserialize($row['e107_value']);
         //$tmp = $eArrayStorage->ReadxxxArray($row['e107_value']);
         //replace the id value for the content_pref
         $content_pref = array();
         foreach ($tmp as $k => $v) {
             if (substr($k, -2) == "_0") {
                 $k = str_replace("_0", "", $k);
             }
             if (strpos($k, "content_") === 0) {
                 $content_pref[$k] = $tp->toDB($v);
             }
         }
         if (!isset($content_pref['content_admin_subheading'])) {
             //add new options to the preferences
             $content_pref = $this->upgrade_1_22_prefs($content_pref);
             $tmp1 = e107::serialize($content_pref, true);
             //$tmp1 = $eArrayStorage->WritexxxArray($content_pref);
             $sqld->db_Update("core", "e107_value = '{$tmp1}' WHERE e107_name = 'pcontent' ");
         } else {
             $upgrade = FALSE;
         }
     }
     //convert preferences for all main parents
     if ($sqlc->db_Select("pcontent", "content_id, content_heading, content_pref", "LEFT(content_parent, 1) = '0' ")) {
         while ($row = $sqlc->db_Fetch()) {
             $id = $row['content_id'];
             $tmp = e107::unserialize($row['content_pref']);
             //$tmp = $eArrayStorage->ReadxxxArray($row['content_pref']);
             //replace the id value for the content_pref
             $l = strlen($id);
             $content_pref = array();
             foreach ($tmp as $k => $v) {
                 if (substr($k, -($l + 1)) == "_" . $id) {
                     $k = str_replace("_" . $id, "", $k);
                 }
                 if (strpos($k, "content_") === 0) {
                     $content_pref[$k] = $tp->toDB($v);
                 }
             }
             //add new options to the preferences
             if (!isset($content_pref['content_admin_subheading'])) {
                 $content_pref = $this->upgrade_1_22_prefs($content_pref);
                 $tmp1 = e107::serialize($content_pref, true);
                 //$tmp1 = $eArrayStorage->WritexxxArray($content_pref);
                 $sqld->db_Update("pcontent", "content_pref='{$tmp1}' WHERE content_id='{$id}' ");
             } else {
                 $upgrade = FALSE;
             }
             //update menus
             $plugintable = "pcontent";
             $plugindir = e_PLUGIN . "content/";
             if (!is_object($aa)) {
                 require_once $plugindir . "handlers/content_class.php";
                 $aa = new content();
             }
             if ($row['content_parent'] == 0) {
                 //remove menu
                 @unlink(e_PLUGIN . "content/menus/content_" . $row['content_heading'] . "_menu.php");
                 //create menu
                 $aa->CreateParentMenu($id);
             }
         }
     }
     if ($upgrade === TRUE) {
         return CONTENT_ADMIN_CONVERSION_LAN_66 . "<br />";
     }
 }
开发者ID:Jimmi08,项目名称:content,代码行数:76,代码来源:content_convert_class.php

示例2: foreach

        $e107cache->clear($plugintable);
        $message = CONTENT_ADMIN_ITEM_LAN_3;
    }
}
if (isset($delete) && $delete == 'submitted') {
    if ($sql->db_Delete($plugintable, "content_id='{$del_id}' ")) {
        $e107cache->clear($plugintable);
        $message = CONTENT_ADMIN_SUBMIT_LAN_8;
    }
}
//update options
if (isset($_POST['updateoptions'])) {
    $content_pref = $aa->UpdateContentPref($_POST['options_type']);
    $message = CONTENT_ADMIN_CAT_LAN_22 . "<br /><br />";
    if ($_POST['options_type'] != "0") {
        $message .= $aa->CreateParentMenu($_POST['options_type']);
    }
    $e107cache->clear($plugintable);
}
//update the inheritance of options
if (isset($_POST['updateinherit'])) {
    foreach ($_POST['id'] as $k => $v) {
        //get current
        $sql->db_Select($plugintable, "content_pref", "content_id='" . intval($k) . "' ");
        $row = $sql->db_Fetch();
        $content_pref = e107::unserialize($row['content_pref']);
        //$content_pref = $eArrayStorage->ReadxxxArray($row['content_pref']);
        //assign or remove inherit option
        if (isset($_POST['content_inherit']) && isset($_POST['content_inherit'][$k])) {
            $content_pref['content_inherit'] = "1";
        } else {
开发者ID:Jimmi08,项目名称:content,代码行数:31,代码来源:admin_content_config.php


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