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


PHP Fave::insert方法代码示例

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


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

示例1: addNew

 static function addNew($user, $notice)
 {
     $fave = new Fave();
     $fave->user_id = $user->id;
     $fave->notice_id = $notice->id;
     if (!$fave->insert()) {
         common_log_db_error($fave, 'INSERT', __FILE__);
         return false;
     }
     return $fave;
 }
开发者ID:Br3nda,项目名称:laconica,代码行数:11,代码来源:Fave.php

示例2: addNew

 /**
  * Save a favorite record.
  * @fixme post-author notification should be moved here
  *
  * @param Profile $profile the local or remote user who likes
  * @param Notice $notice the notice that is liked
  * @return mixed false on failure, or Fave record on success
  */
 static function addNew(Profile $profile, Notice $notice)
 {
     $fave = null;
     if (Event::handle('StartFavorNotice', array($profile, $notice, &$fave))) {
         $fave = new Fave();
         $fave->user_id = $profile->id;
         $fave->notice_id = $notice->id;
         if (!$fave->insert()) {
             common_log_db_error($fave, 'INSERT', __FILE__);
             return false;
         }
         Event::handle('EndFavorNotice', array($profile, $notice));
     }
     return $fave;
 }
开发者ID:Br3nda,项目名称:StatusNet,代码行数:23,代码来源:Fave.php

示例3: addNew

 /**
  * Save a favorite record.
  * @fixme post-author notification should be moved here
  *
  * @param Profile $profile the local or remote user who likes
  * @param Notice $notice the notice that is liked
  * @return mixed false on failure, or Fave record on success
  */
 static function addNew(Profile $profile, Notice $notice)
 {
     $fave = null;
     if (Event::handle('StartFavorNotice', array($profile, $notice, &$fave))) {
         $fave = new Fave();
         $fave->user_id = $profile->id;
         $fave->notice_id = $notice->id;
         $fave->modified = common_sql_now();
         $fave->uri = self::newURI($fave->user_id, $fave->notice_id, $fave->modified);
         if (!$fave->insert()) {
             common_log_db_error($fave, 'INSERT', __FILE__);
             return false;
         }
         self::blow('fave:list-ids:notice_id:%d', $fave->notice_id);
         self::blow('popular');
         Event::handle('EndFavorNotice', array($profile, $notice));
     }
     return $fave;
 }
开发者ID:Grasia,项目名称:bolotweet,代码行数:27,代码来源:Fave.php


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