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


PHP Note::update方法代码示例

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


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

示例1: update_note

 public function update_note()
 {
     if (!isset($_POST['note_id'])) {
         error(__("Error"), __("No note ID specified.", "extend"));
     }
     $note = new Note($_POST['note_id']);
     if ($note->no_results) {
         error(__("Error"), __("Invalid note ID specified.", "extend"));
     }
     if (!$note->editable()) {
         show_403(__("Access Denied"), __("You do not have sufficient privileges to edit this note.", "extend"));
     }
     $files = array();
     foreach ($_FILES['attachment'] as $key => $val) {
         foreach ($val as $file => $attr) {
             $files[$file][$key] = $attr;
         }
     }
     foreach ($files as $attachment) {
         if ($attachment['error'] != 4) {
             $path = upload($attachment, null, "attachments");
             Attachment::add(basename($path), $path, "note", $note->id);
         }
     }
     $note->update($_POST['body']);
     Flash::notice(__("Note updated.", "extend"), $note->url(true));
 }
开发者ID:vito,项目名称:chyrp-site,代码行数:27,代码来源:controller.Extend.php

示例2: action_publish_post

 /**
  * Save our data to the database
  */
 public function action_publish_post($post, $form)
 {
     $this->action_form_publish($form, $post);
     if ($form->notes->value != NULL) {
         $note = new Note($form->note_key->value);
         $note->content = $form->notes->value;
         $note->update();
         // Utils::debug( $note, $note->update(), $this->get_notes() );
         $post->info->note_key = $note->key;
     }
     // exit;
 }
开发者ID:habari-extras,项目名称:simplynoted,代码行数:15,代码来源:simplynoted.plugin.php


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