本文整理汇总了PHP中bb_get_footer函数的典型用法代码示例。如果您正苦于以下问题:PHP bb_get_footer函数的具体用法?PHP bb_get_footer怎么用?PHP bb_get_footer使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了bb_get_footer函数的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: terms_of_service_get
function terms_of_service_get()
{
bb_send_headers();
bb_get_header();
?>
<h3 class="bbcrumb"><a href="<?php
bb_option('uri');
?>
"><?php
bb_option('name');
?>
</a> » <?php
_e('Terms of Service');
?>
</h3>
<div class="indent">
<h2 id="register"><?php
_e('Terms of Service');
?>
</h2>
<div id="terms_of_service" style="padding:0.5em 1em 1em 1em; margin:0em 3em; background: #eee; color: #000;">
<?php
@readfile(rtrim(dirname(__FILE__), ' /\\') . '/terms-of-service.html');
echo '</div></div>';
bb_get_footer();
exit;
}
示例2: _e
}
?>
</ol>
<?php
} else {
if ($page) {
?>
<p><?php
_e('No more topics posted.');
?>
</p>
<?php
} else {
?>
<p><?php
_e('No topics posted yet.');
?>
</p>
<?php
}
}
?>
</div>
<?php
profile_pages(array('before' => '<div class="nav">', 'after' => '</div>'));
?>
<?php
bb_get_footer();
示例3: bb_attachments_init
function bb_attachments_init()
{
global $bbdb, $bb_attachments;
if (isset($_GET['bb_attachments_diagnostic']) || isset($_GET['bb_attachments_debug'])) {
include 'debug.php';
}
if (isset($_GET['bbat_delete'])) {
bb_attachments_delete();
}
if (isset($_GET['bb_attachments'])) {
if (isset($_GET['bbat'])) {
if (isset($_GET['inline'])) {
bb_attachments_inline();
} else {
bb_attachments_download();
}
} else {
if (bb_attachments_location() != 'edit.php') {
bb_repermalink();
bb_send_headers();
bb_get_header();
bb_attachments($post_id);
bb_get_footer();
exit;
}
}
}
if ($bb_attachments['style']) {
add_action('bb_head', 'bb_attachments_add_css');
}
// add css if present (including Kakumei 0.9.0.2 LI fix!)
if ($bb_attachments['title'] && !is_topic() && !is_bb_feed()) {
add_filter('topic_title', 'bb_attachments_title', 200);
}
if (isset($_GET["new"]) || is_topic() || is_forum()) {
add_action('bb_topic.php', 'bb_attachments_cache');
add_filter('post_text', 'bb_attachments_post_footer', 4);
add_filter('post_edit_uri', 'bb_attachments_link');
if (bb_current_user_can($bb_attachments['role']['upload'])) {
add_action('post_edit_form', 'bb_attachments');
// auto-insert on post edit form
if ($bb_attachments['upload_on_new']) {
add_action('post_form', 'bb_attachments_upload_form');
// auto-insert on new post form
add_action('pre_post_form', 'bb_attachments_enctype');
// multipart workaround on new post form
// insane bbPress workaround - adds multipart enctype to the new post form via uri patch
function bb_attachments_enctype()
{
global $topic, $forum;
if (is_topic() && bb_current_user_can('write_post', $topic->topic_id) || !is_topic() && bb_current_user_can('write_topic', $forum->forum_id)) {
add_filter('bb_get_uri', 'bb_attachments_uri_10', 999, 3);
add_filter('bb_get_option_uri', 'bb_attachments_uri', 999);
add_action('post_form', 'bb_attachments_remove_uri', 999);
add_action('post_post_form', 'bb_attachments_remove_uri', 999);
}
}
function bb_attachments_uri_10($uri, $resource = '', $context = '')
{
if (strpos($uri, "bb-post.php") !== false && $context && defined('BB_URI_CONTEXT_FORM_ACTION') && $context == BB_URI_CONTEXT_FORM_ACTION) {
bb_attachments_remove_uri();
return $uri . '" enctype="multipart/form-data" hack="';
}
return $uri;
}
function bb_attachments_uri($uri)
{
// if (strpos($uri,'bb-post.php')===false) {return $uri;}
bb_attachments_remove_uri();
return $uri . 'bb-post.php" enctype="multipart/form-data" hack="';
}
function bb_attachments_remove_uri($x = "")
{
remove_filter('bb_get_option_uri', 'bb_attachments_uri', 999);
remove_filter('bb_get_uri', 'bb_attachments_uri_10', 999);
}
}
}
}
// end else
}
示例4: recaptcha_bbpress_verify
function recaptcha_bbpress_verify()
{
if (recaptcha_bbpress_register_page()) {
if (bb_get_option('recaptcha_bbpress_public_key') && bb_get_option('recaptcha_bbpress_private_key')) {
if ($_POST["recaptcha_response_field"] || $_POST) {
$privatekey = bb_get_option('recaptcha_bbpress_private_key');
$resp = null;
$resp = recaptcha_check_answer($privatekey, $_SERVER["REMOTE_ADDR"], $_POST["recaptcha_challenge_field"], $_POST["recaptcha_response_field"]);
if (!$resp->is_valid) {
bb_get_header();
echo "<h2>Error</h2><p>You failed to complete the form correctly, please return to the previous page and try again.</p>";
bb_get_footer();
exit;
}
}
} else {
echo "The public & private keys aren't set at the moment! ";
}
}
}