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


PHP print_news_entry_from_row函數代碼示例

本文整理匯總了PHP中print_news_entry_from_row函數的典型用法代碼示例。如果您正苦於以下問題:PHP print_news_entry_from_row函數的具體用法?PHP print_news_entry_from_row怎麽用?PHP print_news_entry_from_row使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


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

示例1: print_news_string_by_news_id

function print_news_string_by_news_id($p_news_id)
{
    $row = news_get_row($p_news_id);
    # only show VS_PRIVATE posts to configured threshold and above
    if (VS_PRIVATE == $row['view_state'] && !access_has_project_level(config_get('private_news_threshold'))) {
        return;
    }
    print_news_entry_from_row($row);
}
開發者ID:nextgens,項目名稱:mantisbt,代碼行數:9,代碼來源:print_api.php

示例2: news_ensure_enabled

/**
 * MantisBT Core API's
 */
require_once 'core.php';
require_once 'news_api.php';
require_once 'print_api.php';
news_ensure_enabled();
form_security_validate('news_add');
access_ensure_project_level(config_get('manage_news_threshold'));
$f_view_state = gpc_get_int('view_state');
$f_headline = gpc_get_string('headline');
$f_announcement = gpc_get_bool('announcement');
$f_body = gpc_get_string('body');
$t_news_id = news_create(helper_get_current_project(), auth_get_current_user_id(), $f_view_state, $f_announcement, $f_headline, $f_body);
form_security_purge('news_add');
$t_news_row = news_get_row($t_news_id);
html_page_top();
?>

<br />
<div align="center">
<?php 
echo lang_get('operation_successful') . '<br />';
print_bracket_link('news_menu_page.php', lang_get('proceed'));
echo '<br /><br />';
print_news_entry_from_row($t_news_row);
?>
</div>

<?php 
html_page_bottom();
開發者ID:fur81,項目名稱:zofaxiopeu,代碼行數:31,代碼來源:news_add.php


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