本文整理匯總了PHP中lms_steam::get_annotation_data方法的典型用法代碼示例。如果您正苦於以下問題:PHP lms_steam::get_annotation_data方法的具體用法?PHP lms_steam::get_annotation_data怎麽用?PHP lms_steam::get_annotation_data使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類lms_steam
的用法示例。
在下文中一共展示了lms_steam::get_annotation_data方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: RssChannel
<?php
require_once "../../../etc/koala.conf.php";
require_once PATH_LIB . "format_handling.inc.php";
//lms_steam::connect(); //http_auth function is used instead
require_once PATH_LIB . "http_auth_handling.inc.php";
if (http_auth()) {
if (!($discussion = steam_factory::get_object($GLOBALS["STEAM"]->get_id(), $_GET["id"]))) {
include PATH_PUBLIC . "bad_link.php";
exit;
}
$rss_channel = new RssChannel($discussion->get_name(), PATH_URL . "forums/" . $_GET["id"] . "/", "");
$rss_channel->generate_http_header();
print $rss_channel->generate_xml_header();
$object = steam_factory::get_object($GLOBALS["STEAM"]->get_id(), $_GET["id"]);
if (is_object($object) && !$object instanceof steam_messageboard) {
$discussion = lms_steam::get_annotation_data($object);
print $rss_channel->generate_item($discussion["OBJ_NAME"] . " " . gettext("by") . " " . $discussion["OBJ_CREATOR"], "", BBCode($discussion["CONTENT"]), $discussion["OBJ_CREATOR"], $discussion["OBJ_CREATION_TIME"], "", PATH_URL . "forums/" . $_GET["id"] . "/#comment" . $discussion["OBJ_ID"]);
}
$cache = get_cache_function($_GET["id"], 600);
$discussions = $cache->call("lms_steam::get_annotations", $_GET["id"]);
foreach ($discussions as $discussion) {
print $rss_channel->generate_item(gettext("Post by ") . $discussion["OBJ_CREATOR"], "", BBCode($discussion["CONTENT"]), $discussion["OBJ_CREATOR"], $discussion["OBJ_CREATION_TIME"], "", PATH_URL . "forums/" . $_GET["id"] . "/#comment" . $discussion["OBJ_ID"]);
}
print $rss_channel->generate_xml_footer();
} else {
$rss_channel = new PodcastRSS("Access denied", PATH_SERVER . $_SERVER["REQUEST_URI"], "You are not allowed to access this RSS Feed. Please check your username and password");
$rss_channel->generate_http_header();
$rss_channel->generate_xml_header(TRUE);
exit;
}