• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

PHP getLabelCounters函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了PHP中getLabelCounters函数的典型用法代码示例。如果您正苦于以下问题:PHP getLabelCounters函数的具体用法?PHP getLabelCounters怎么用?PHP getLabelCounters使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。



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

示例1: getVirtualFeeds

function getVirtualFeeds($msg)
{
    global $link;
    $error_code = 0;
    $login_o = $msg->getParam(0);
    $pass_o = $msg->getParam(1);
    $login = $login_o->scalarval();
    $pass = $pass_o->scalarval();
    $user_id = authenticate_user($link, $login, $pass);
    $counters_ret = array();
    if (authenticate_user($link, $login, $pass)) {
        $counters = getLabelCounters($link, true);
        foreach (array_keys($counters) as $id) {
            $line_struct = new xmlrpcval(array("id" => new xmlrpcval($id, "int"), "title" => new xmlrpcval($counters[$id]["description"]), "unread" => new xmlrpcval($counters[$id]["counter"], "int")), "struct");
            array_push($counters_ret, $line_struct);
        }
        $reply = new xmlrpcval($counters_ret, "array");
    } else {
        $reply_msg = "Login failed.";
        $error_code = 1;
    }
    if ($error_code != 0) {
        return new xmlrpcresp(0, $error_code, $reply_msg);
    } else {
        return new xmlrpcresp($reply);
    }
}
开发者ID:wangroot,项目名称:Tiny-Tiny-RSS,代码行数:27,代码来源:xml-rpc.php


示例2: api_get_feeds

 static function api_get_feeds($cat_id, $unread_only, $limit, $offset, $include_nested = false)
 {
     $feeds = array();
     /* Labels */
     if ($cat_id == -4 || $cat_id == -2) {
         $counters = getLabelCounters(true);
         foreach (array_values($counters) as $cv) {
             $unread = $cv["counter"];
             if ($unread || !$unread_only) {
                 $row = array("id" => (int) $cv["id"], "title" => $cv["description"], "unread" => $cv["counter"], "cat_id" => -2);
                 array_push($feeds, $row);
             }
         }
     }
     /* Virtual feeds */
     if ($cat_id == -4 || $cat_id == -1) {
         foreach (array(-1, -2, -3, -4, -6, 0) as $i) {
             $unread = getFeedUnread($i);
             if ($unread || !$unread_only) {
                 $title = getFeedTitle($i);
                 $row = array("id" => $i, "title" => $title, "unread" => $unread, "cat_id" => -1);
                 array_push($feeds, $row);
             }
         }
     }
     /* Child cats */
     if ($include_nested && $cat_id) {
         $result = db_query("SELECT\n\t\t\t\t\tid, title FROM ttrss_feed_categories\n\t\t\t\t\tWHERE parent_cat = '{$cat_id}' AND owner_uid = " . $_SESSION["uid"] . " ORDER BY id, title");
         while ($line = db_fetch_assoc($result)) {
             $unread = getFeedUnread($line["id"], true) + getCategoryChildrenUnread($line["id"]);
             if ($unread || !$unread_only) {
                 $row = array("id" => (int) $line["id"], "title" => $line["title"], "unread" => $unread, "is_cat" => true);
                 array_push($feeds, $row);
             }
         }
     }
     /* Real feeds */
     if ($limit) {
         $limit_qpart = "LIMIT {$limit} OFFSET {$offset}";
     } else {
         $limit_qpart = "";
     }
     if ($cat_id == -4 || $cat_id == -3) {
         $result = db_query("SELECT\n\t\t\t\t\tid, feed_url, cat_id, title, order_id, " . SUBSTRING_FOR_DATE . "(last_updated,1,19) AS last_updated\n\t\t\t\t\t\tFROM ttrss_feeds WHERE owner_uid = " . $_SESSION["uid"] . " ORDER BY cat_id, title " . $limit_qpart);
     } else {
         if ($cat_id) {
             $cat_qpart = "cat_id = '{$cat_id}'";
         } else {
             $cat_qpart = "cat_id IS NULL";
         }
         $result = db_query("SELECT\n\t\t\t\t\tid, feed_url, cat_id, title, order_id, " . SUBSTRING_FOR_DATE . "(last_updated,1,19) AS last_updated\n\t\t\t\t\t\tFROM ttrss_feeds WHERE\n\t\t\t\t\t\t{$cat_qpart} AND owner_uid = " . $_SESSION["uid"] . " ORDER BY cat_id, title " . $limit_qpart);
     }
     while ($line = db_fetch_assoc($result)) {
         $unread = getFeedUnread($line["id"]);
         $has_icon = feed_has_icon($line['id']);
         if ($unread || !$unread_only) {
             $row = array("feed_url" => $line["feed_url"], "title" => $line["title"], "id" => (int) $line["id"], "unread" => (int) $unread, "has_icon" => $has_icon, "cat_id" => (int) $line["cat_id"], "last_updated" => (int) strtotime($line["last_updated"]), "order_id" => (int) $line["order_id"]);
             array_push($feeds, $row);
         }
     }
     return $feeds;
 }
开发者ID:Verisor,项目名称:tt-rss,代码行数:62,代码来源:api.php


示例3: getAllCounters

function getAllCounters()
{
    $data = getGlobalCounters();
    $data = array_merge($data, getVirtCounters());
    $data = array_merge($data, getLabelCounters());
    $data = array_merge($data, getFeedCounters());
    $data = array_merge($data, getCategoryCounters());
    return $data;
}
开发者ID:nota-ja,项目名称:tt-rss,代码行数:9,代码来源:functions.php


示例4: getAllCounters

function getAllCounters($link)
{
    $data = getGlobalCounters($link);
    $data = array_merge($data, getVirtCounters($link));
    $data = array_merge($data, getLabelCounters($link));
    $data = array_merge($data, getFeedCounters($link, $active_feed));
    $data = array_merge($data, getCategoryCounters($link));
    return $data;
}
开发者ID:rclsilver,项目名称:openshift-tt-rss,代码行数:9,代码来源:functions.php


示例5: getAllCounters

function getAllCounters($link, $omode = "flc", $active_feed = false)
{
    if (!$omode) {
        $omode = "flc";
    }
    getGlobalCounters($link);
    getVirtCounters($link);
    if (strchr($omode, "l")) {
        getLabelCounters($link);
    }
    if (strchr($omode, "f")) {
        getFeedCounters($link, $active_feed);
    }
    if (strchr($omode, "t")) {
        getTagCounters($link);
    }
    if (strchr($omode, "c")) {
        if (get_pref($link, 'ENABLE_FEED_CATS')) {
            getCategoryCounters($link);
        }
    }
}
开发者ID:wangroot,项目名称:Tiny-Tiny-RSS,代码行数:22,代码来源:functions.php


示例6: db_query

 } else {
     $result = db_query($link, "SELECT \n\t\t\t\t\tid, feed_url, cat_id, title, " . SUBSTRING_FOR_DATE . "(last_updated,1,19) AS last_updated\n\t\t\t\t\t\tFROM ttrss_feeds WHERE \n\t\t\t\t\t\tcat_id = '{$cat_id}' AND owner_uid = " . $_SESSION["uid"] . "ORDER BY cat_id, title " . $limit_qpart);
 }
 $feeds = array();
 while ($line = db_fetch_assoc($result)) {
     $unread = getFeedUnread($link, $line["id"]);
     $icon_path = "../" . ICONS_DIR . "/" . $line["id"] . ".ico";
     $has_icon = file_exists($icon_path) && filesize($icon_path) > 0;
     if ($unread || !$unread_only) {
         $row = array("feed_url" => $line["feed_url"], "title" => $line["title"], "id" => (int) $line["id"], "unread" => (int) $unread, "has_icon" => $has_icon, "cat_id" => (int) $line["cat_id"], "last_updated" => strtotime($line["last_updated"]));
         array_push($feeds, $row);
     }
 }
 /* Labels */
 if (!$cat_id || $cat_id == -2) {
     $counters = getLabelCounters($link, true);
     foreach (array_keys($counters) as $id) {
         $unread = $counters[$id]["counter"];
         if ($unread || !$unread_only) {
             $row = array("id" => $id, "title" => $counters[$id]["description"], "unread" => $counters[$id]["counter"], "cat_id" => -2);
             array_push($feeds, $row);
         }
     }
 }
 /* Virtual feeds */
 if (!$cat_id || $cat_id == -1) {
     foreach (array(-1, -2, -3, -4, 0) as $i) {
         $unread = getFeedUnread($link, $i);
         if ($unread || !$unread_only) {
             $title = getFeedTitle($link, $i);
             $row = array("id" => $i, "title" => $title, "unread" => $unread, "cat_id" => -1);
开发者ID:buggithubs,项目名称:Tiny-Tiny-RSS,代码行数:31,代码来源:index.php



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


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
PHP getLang函数代码示例发布时间:2022-05-15
下一篇:
PHP getLabel函数代码示例发布时间:2022-05-15
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap