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


PHP collection::update方法代码示例

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


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

示例1: show_results

} else {
    $bouton_ajouter = "<input type='button' class='bouton_small' onclick=\"document.location='{$base_url}&action=add&deb_rech='+this.form.f_user_input.value\" value='{$msg['163']}' />";
}
switch ($action) {
    case 'add':
        $collection_form = str_replace("!!deb_saisie!!", htmlentities(stripslashes($f_user_input), ENT_QUOTES, $charset), $collection_form);
        print $collection_form;
        break;
    case 'update':
        require_once "{$class_path}/editor.class.php";
        require_once "{$class_path}/collection.class.php";
        $value['name'] = $collection_nom;
        $value['parent'] = $ed_id;
        $value['issn'] = $issn;
        $collection = new collection();
        $collection->update($value);
        $sel_search_form = str_replace("!!bouton_ajouter!!", $bouton_ajouter, $sel_search_form);
        $sel_search_form = str_replace("!!deb_rech!!", htmlentities(stripslashes($f_user_input), ENT_QUOTES, $charset), $sel_search_form);
        print $sel_search_form;
        print $jscript;
        show_results($dbh, $collection_nom, 0, 0, $collection->id);
        break;
    default:
        $sel_search_form = str_replace("!!bouton_ajouter!!", $bouton_ajouter, $sel_search_form);
        $sel_search_form = str_replace("!!deb_rech!!", htmlentities(stripslashes($f_user_input), ENT_QUOTES, $charset), $sel_search_form);
        print $sel_search_form;
        print $jscript;
        show_results($dbh, $user_input, $nbr_lignes, $page);
        break;
}
function show_results($dbh, $user_input, $nbr_lignes = 0, $page = 0, $id = 0)
开发者ID:bouchra012,项目名称:PMB,代码行数:31,代码来源:collection.inc.php

示例2: array

     if (!$sup_result) {
         include './autorites/collections/collections_list.inc.php';
     } else {
         error_message($msg[132], $sup_result, 1, "./autorites.php?categ=collections&sub=collection_form&id={$id}");
     }
     break;
 case 'update':
     // mettre à jour collection id
     // mise à jour d'une collection
     $collection_nom = clean_string($collection_nom);
     if (!$collection_nom || !$ed_id) {
         error_message($msg[132], $mg['erreur_creation_collection'], 1, "");
     } else {
         $coll = array('name' => $collection_nom, 'parent' => $ed_id, 'collection_web' => $collection_web, 'issn' => $issn, 'comment' => $comment);
         $collection = new collection($id);
         $collection->update($coll);
         include './autorites/collections/collections_list.inc.php';
     }
     break;
 case 'collection_form':
     // création d'une collection
     if (!$id) {
         // affichage du form pour création
         $collection = new collection();
         $collection->show_form();
     } else {
         // affichage du form pour modification
         $collection = new collection($id);
         $collection->show_form();
     }
     break;
开发者ID:hogsim,项目名称:PMB,代码行数:31,代码来源:collections.inc.php


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