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


PHP RSS::refresh方法代码示例

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


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

示例1: metaWeblog_editPost

function metaWeblog_editPost()
{
    $params = func_get_args();
    $result = api_login($params[1], $params[2]);
    if ($result) {
        return $result;
    }
    $post = api_make_post($params[3], $params[4], $params[0]);
    $post->created = null;
    if (!$post) {
        return new XMLRPCFault(1, "Textcube editing error");
    }
    $ret = $post->update();
    // 기존 글의 파일들 지우기 (잘 찾아서)
    // 새로 업로드 된 파일들 옮기기
    api_update_attaches_with_replace($post->id);
    fireEvent('UpdatePostByBlogAPI', $id, $post);
    RSS::refresh();
    $post->close();
    if ($ret != false) {
        Setting::setBlogSettingGlobal('LatestEditedEntry', $post->id);
    }
    return $ret ? true : false;
}
开发者ID:Avantians,项目名称:Textcube,代码行数:24,代码来源:api.php

示例2: update

 function update()
 {
     // attachment & category is own your risk!
     if (!isset($this->id) || !Validator::number($this->id, 1)) {
         return $this->_error('id');
     }
     if (!($query = $this->_buildQuery())) {
         return false;
     }
     if (!($old = $query->getRow('category, visibility'))) {
         return $this->_error('id');
     }
     $bChangedCategory = $old['category'] != $this->category;
     if ($old['visibility'] == 3) {
         requireComponent('Eolin.API.Syndication');
         Syndication::leave($this->getLink());
     }
     if (!isset($this->modified)) {
         $query->setAttribute('modified', 'UNIX_TIMESTAMP()');
     }
     if (!$query->update()) {
         return $this->_error('update');
     }
     //		if ($bChangedCategory) {
     //			// TODO : Recalculate Category
     //		}
     if (isset($this->slogan)) {
         $this->saveSlogan();
     }
     $this->updateTags();
     if ($this->visibility == 'syndicated') {
         requireComponent('Eolin.API.Syndication');
         if (!Syndication::join($this->getLink())) {
             $query->resetAttributes();
             $query->setAttribute('visibility', 2);
             $this->visibility = 'public';
             $query->update();
         }
     }
     requireComponent('Textcube.Control.RSS');
     RSS::refresh();
     return true;
 }
开发者ID:ragi79,项目名称:Textcube,代码行数:43,代码来源:Textcube.Data.Post.php


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