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


PHP Forum::getForumTitle方法代碼示例

本文整理匯總了PHP中Forum::getForumTitle方法的典型用法代碼示例。如果您正苦於以下問題:PHP Forum::getForumTitle方法的具體用法?PHP Forum::getForumTitle怎麽用?PHP Forum::getForumTitle使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Forum的用法示例。


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

示例1: htmlspecialchars

  </head>

  <body>

	<?php 
require "inc/templates/navbar.php";
?>

    <div class="container">
	  <ol class="breadcrumb">
	    <li><a href="/forum">Home</a></li>
		<li><a href="/forum/view_forum/?fid=<?php 
echo htmlspecialchars($topic->forum_id);
?>
"><?php 
echo htmlspecialchars($forum->getForumTitle($topic->forum_id));
?>
</a></li>
	    <li class="active"><?php 
echo htmlspecialchars($topic->topic_title);
?>
</li>
	  </ol>
	<?php 
if (Session::exists('success_post')) {
    echo '<center>' . Session::flash('success_post') . '</center>';
}
if (Session::exists('failure_post')) {
    echo '<center>' . Session::flash('failure_post') . '</center>';
}
// Can the user post a reply?
開發者ID:daddysboy2001,項目名稱:NamelessMC,代碼行數:31,代碼來源:view_topic.php

示例2: htmlspecialchars

	}
	</style>
	
  </head>

  <body>
	<?php 
// Load navbar
$smarty->display('styles/templates/' . $template . '/navbar.tpl');
// Generate content for template
if (Session::exists('failure_post')) {
    $smarty->assign('SESSION', Session::flash('failure_post'));
} else {
    $smarty->assign('SESSION', '');
}
$creating_topic_in = $forum_language['creating_topic_in_'] . htmlspecialchars($forum->getForumTitle($fid));
$smarty->assign('CREATING_TOPIC_IN', $creating_topic_in);
// Get labels available
$labels = '<h4 style="display:inline;">';
$labels_query = $queries->getWhere('forums_topic_labels', array('id', '<>', 0));
$available_label_ids = array();
foreach ($labels_query as $label) {
    $forum_ids = explode(',', $label->fids);
    if (in_array($fid, $forum_ids)) {
        $available_label_ids[] = $label->id;
    }
}
foreach ($available_label_ids as $label) {
    $query = $queries->getWhere('forums_topic_labels', array('id', '=', $label));
    $labels .= '<input type="radio" name="topic_label" value="' . $query[0]->id . '"> <span class="label label-' . htmlspecialchars($query[0]->label) . '">' . htmlspecialchars($query[0]->name) . '</span>&nbsp;&nbsp;';
}
開發者ID:NamelessMC,項目名稱:Nameless,代碼行數:31,代碼來源:new_topic.php

示例3: htmlspecialchars

		right: 0;  
		margin: auto;
	}
	</style>
	
  </head>

  <body>

	<?php 
require "inc/templates/navbar.php";
?>

    <div class="container">
      <h4>New topic in forum "<?php 
echo htmlspecialchars($forum->getForumTitle($fid));
?>
"</h4>
	  <?php 
if (Session::exists('failure_post')) {
    echo '<center>' . Session::flash('failure_post') . '</center>';
}
?>
	  <form action="" method="post">
		<input type="text" class="form-control input-lg" name="title" placeholder="Thread title">
		<br />
		<textarea name="content" id="reply" rows="3"><?php 
echo htmlspecialchars(Input::get('content'));
?>
</textarea>
		<br />
開發者ID:daddysboy2001,項目名稱:NamelessMC,代碼行數:31,代碼來源:new_topic.php


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