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


PHP Notify::notifyGenreNewBook方法代碼示例

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


在下文中一共展示了Notify::notifyGenreNewBook方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: add_genre

 function add_genre()
 {
     global $current_user;
     $this->ca();
     if (is_numeric($_POST['id_genre'])) {
         $id_genre = (int) $_POST['id_genre'];
     } else {
         $id_genre = Database::sql2single('SELECT `id` FROM `genre` WHERE `name`=' . Database::escape($_POST['id_genre']));
     }
     $id_book = (int) $_POST['id'];
     if ($id_genre && $id_book) {
         $query = 'SELECT `id`,`name`,`title` FROM `genre` WHERE id=' . $id_genre . ' AND `id_parent`>0';
         $result = Database::sql2row($query);
         if (!isset($result['id'])) {
             $this->data['success'] = 0;
             $this->data['error'] = 'Нет такого жанра';
             return;
         }
         $query = 'INSERT INTO `book_genre` SET `id_book`=' . $id_book . ' , `id_genre`=' . $id_genre;
         $r = Database::query($query, false);
         if ($r) {
             $this->data['success'] = 1;
             $this->data['item_id'] = $id_genre;
             $this->data['name'] = $result['name'];
             $this->data['title'] = $result['title'];
             BookLog::addLog(array('id_genre' => $id_genre), array('id_genre' => 0), $id_book);
             BookLog::saveLog($id_book, BookLog::TargetType_book, $current_user->id, BiberLog::BiberLogType_bookEditGenre);
             $search = Search::getInstance();
             /* @var $search Search */
             $search->updateBook(new Book($id_book));
             Notify::notifyGenreNewBook($id_genre, $id_book);
         } else {
             $this->data['error'] = 'Жанр уже есть в списке жанров';
         }
         return;
     }
     $this->data['item_id'] = $id_genre;
     $this->data['success'] = 0;
 }
開發者ID:rasstroen,項目名稱:metro,代碼行數:39,代碼來源:Jbooks_module.php


注:本文中的Notify::notifyGenreNewBook方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。