📄 post_poll.php
字号:
<?php
class post_functions extends post
{
var $nav = array( );
var $title = "";
var $post = array( );
var $topic = array( );
var $upload = array( );
var $mod_topic = array( );
var $poll_count = 0;
var $poll_choices = "";
var $m_group = "";
function post_functions( $class )
{
global $ibforums;
global $std;
global $DB;
if ( !$ibforums->member['g_post_polls'] )
{
$std->error( array( 1, "no_start_polls" ) );
}
if ( !$class->forum['allow_poll'] )
{
$std->error( array( 1, "no_start_polls" ) );
}
$this->m_group = $ibforums->member['mgroup'];
if ( $class->forum['start_perms'] != "*" && !preg_match( "/(^|,){$this->m_group}(,|\$)/", $class->forum['start_perms'] ) )
{
$std->error( array( 1, "no_start_polls" ) );
}
}
function process( $class )
{
global $ibforums;
global $std;
global $DB;
global $print;
$this->post = $class->compile_post( );
if ( strlen( $ibforums->input['TopicTitle'] ) < 2 || !$ibforums->input['TopicTitle'] )
{
$class->obj['post_errors'] = "no_topic_title";
}
if ( 64 < strlen( $ibforums->input['TopicTitle'] ) )
{
$class->obj['post_errors'] = "topic_title_long";
}
$this->poll_choices = $ibforums->input['PollAnswers'];
$this->poll_choices = preg_replace( "/<br><br>/", "", $this->poll_choices );
$this->poll_choices = preg_replace( "/<br>/e", "\$this->regex_count_choices()", $this->poll_choices );
if ( 10 < $this->poll_count )
{
$class->obj['post_errors'] = "poll_to_many";
}
if ( $this->poll_count < 1 )
{
$class->obj['post_errors'] = "poll_not_enough";
}
if ( $class->obj['post_errors'] == "" )
{
$this->upload = $class->process_upload( );
}
if ( $class->obj['post_errors'] != "" || $class->obj['preview_post'] != "" )
{
$this->show_form( $class );
}
else
{
$this->add_new_poll( $class );
}
}
function add_new_poll( $class )
{
global $ibforums;
global $std;
global $DB;
global $print;
$poll_array = array( );
$count = 0;
$polls = explode( "<br>", $this->poll_choices );
foreach ( $polls as $polling )
{
if ( $polling == "" )
{
}
else
{
$poll_array[] = array(
$count,
$polling,
0
);
++$count;
}
}
if ( $ibforums->vars['etfilter_punct'] )
{
$ibforums->input['TopicTitle'] = preg_replace( "/\\?{1,}/", "?", $ibforums->input['TopicTitle'] );
$ibforums->input['TopicTitle'] = preg_replace( "/(!){1,}/", "!", $ibforums->input['TopicTitle'] );
}
if ( $ibforums->vars['etfilter_shout'] )
{
$ibforums->input['TopicTitle'] = ucwords( $ibforums->input['TopicTitle'] );
}
$ibforums->input['TopicTitle'] = $class->parser->bad_words( $ibforums->input['TopicTitle'] );
$ibforums->input['TopicDesc'] = $class->parser->bad_words( $ibforums->input['TopicDesc'] );
$this->topic = array(
"title" => $ibforums->input['TopicTitle'],
"description" => $ibforums->input['TopicDesc'],
"state" => "open",
"posts" => 0,
"starter_id" => $ibforums->member['id'],
"starter_name" => $ibforums->member['id'] ? $ibforums->member['name'] : $ibforums->input['UserName'],
"start_date" => time( ),
"last_poster_id" => $ibforums->member['id'],
"last_poster_name" => $ibforums->member['id'] ? $ibforums->member['name'] : $ibforums->input['UserName'],
"last_post" => time( ),
"icon_id" => $ibforums->input['iconid'],
"author_mode" => $ibforums->member['id'] ? 1 : 0,
"poll_state" => $ibforums->input['allow_disc'] == 0 ? "open" : "closed",
"last_vote" => 0,
"views" => 0,
"forum_id" => $class->forum['id'],
"approved" => $class->obj['moderate'] ? 0 : 1,
"pinned" => 0
);
$db_string = $DB->compile_db_insert_string( $this->topic );
$DB->query( "INSERT INTO ibf_topics (".$db_string['FIELD_NAMES'].") VALUES (".$db_string['FIELD_VALUES'].")" );
$this->post['topic_id'] = $DB->get_insert_id( );
$this->topic['tid'] = $this->post['topic_id'];
$this->post['attach_id'] = $this->upload['attach_id'];
$this->post['attach_type'] = $this->upload['attach_type'];
$this->post['attach_hits'] = $this->upload['attach_hits'];
$this->post['new_topic'] = 1;
$db_string = $DB->compile_db_insert_string( $this->post );
$DB->query( "INSERT INTO ibf_posts (".$db_string['FIELD_NAMES'].") VALUES (".$db_string['FIELD_VALUES'].")" );
$this->post['pid'] = $DB->get_insert_id( );
$db_string = $std->compile_db_string( array(
"tid" => $this->topic['tid'],
"forum_id" => $class->forum['id'],
"start_date" => time( ),
"choices" => addslashes( serialize( $poll_array ) ),
"starter_id" => $ibforums->member['id'],
"votes" => 0,
"poll_question" => $class->parser->bad_words( $ibforums->input['pollq'] )
) );
$DB->query( "INSERT INTO ibf_polls (".$db_string['FIELD_NAMES'].") VALUES (".$db_string['FIELD_VALUES'].")" );
if ( $class->obj['moderate'] )
{
$print->redirect_screen( $ibforums->lang['moderate_topic'], "act=SF&f={$class->forum['id']}" );
}
$class->forum['last_title'] = $this->topic['title'];
$class->forum['last_id'] = $this->topic['tid'];
$class->forum['last_post'] = time( );
$class->forum['last_poster_name'] = $ibforums->member['id'] ? $ibforums->member['name'] : $ibforums->input['UserName'];
$class->forum['last_poster_id'] = $ibforums->member['id'];
++$class->forum['topics'];
$DB->query( "UPDATE ibf_forums SET last_title='".$class->forum['last_title']."', "."last_id='".$class->forum['last_id']."', "."last_post='".$class->forum['last_post']."', "."last_poster_name='".$class->forum['last_poster_name']."', "."last_poster_id='".$class->forum['last_poster_id']."', "."topics='".$class->forum['topics']."' "."WHERE id='".$class->forum['id']."'" );
$DB->query( "SELECT COUNT(tid) as topic_cnt FROM ibf_topics" );
$stats = $DB->fetch_row( );
$DB->query( "UPDATE ibf_stats SET TOTAL_TOPICS='".$stats['topic_cnt']."'" );
$pcount = "";
if ( $ibforums->member['id'] )
{
if ( $class->forum['inc_postcount'] )
{
$pcount = "posts=posts+1, ";
}
if ( $ibforums->member['g_promotion'] != "-1&-1" )
{
list( $gid, $gposts ) = explode( "&", $ibforums->member['g_promotion'] );
if ( 0 < $gid && 0 < $gposts && $gposts <= $ibforums->member['posts'] + 1 )
{
$mgroup = "mgroup='{$gid}', ";
}
}
$ibforums->member['last_post'] = time( );
$DB->query( "UPDATE ibf_members SET ".$pcount.$mgroup."last_post='".$ibforums->member['last_post']."'"."WHERE id='".$ibforums->member['id']."'" );
}
$std->my_setcookie( "LPid", time( ) );
$std->boink_it( $class->base_url."&act=ST&f={$class->forum['id']}&t={$this->topic['tid']}" );
}
function show_form( $class )
{
global $ibforums;
global $std;
global $DB;
global $print;
global $HTTP_POST_VARS;
$raw_post = isset( $HTTP_POST_VARS['Post'] ) ? $HTTP_POST_VARS['Post'] : "";
$topic_title = isset( $HTTP_POST_VARS['TopicTitle'] ) ? str_replace( "'", "'", stripslashes( $HTTP_POST_VARS['TopicTitle'] ) ) : "";
$topic_desc = isset( $HTTP_POST_VARS['TopicDesc'] ) ? str_replace( "'", "'", stripslashes( $HTTP_POST_VARS['TopicDesc'] ) ) : "";
$poll = isset( $HTTP_POST_VARS['PollAnswers'] ) ? str_replace( "'", "'", stripslashes( $HTTP_POST_VARS['PollAnswers'] ) ) : "";
if ( isset( $raw_post ) )
{
$raw_post = preg_replace( "/<textarea>/", "<textarea>", $raw_post );
$raw_post = str_replace( "\$", "$", $raw_post );
$raw_post = str_replace( "<%", "<%", $raw_post );
$raw_post = stripslashes( $raw_post );
}
if ( $class->obj['post_errors'] )
{
$class->output .= $class->html->errors( $ibforums->lang[$class->obj['post_errors']] );
}
if ( $class->obj['preview_post'] )
{
$class->output .= $class->html->preview( $class->parser->convert( array(
"TEXT" => $this->post['post'],
"CODE" => $class->forum['use_ibc'],
"SMILIES" => $ibforums->input['enableemo'],
"HTML" => $class->forum['use_html']
) ) );
}
$extra = "";
if ( $ibforums->vars['poll_tags'] )
{
$extra = $ibforums->lang['poll_tag_allowed'];
}
$class->output .= $class->html_start_form( array(
1 => array( "CODE", "11" ),
2 => array(
"f",
$class->forum['id']
)
) );
$class->output .= $class->html->table_structure( );
$topic_title = $class->html->topictitle_fields( array(
TITLE => $topic_title,
DESC => $topic_desc
) );
$start_table = $class->html->table_top( "{$ibforums->lang['top_txt_poll']}: {$class->forum['name']}" );
$name_fields = $class->html_name_field( );
$post_box = $class->html_post_body( $raw_post );
$mod_options = $class->mod_options( );
$poll_box = $class->html->poll_box( $poll, $extra );
$end_form = $class->html->endform( $ibforums->lang['submit_poll'] );
$post_icons = $class->html_post_icons( );
if ( $class->obj['can_upload'] )
{
$upload_field = $class->html->upload_field( $ibforums->member['g_attach_max'] * 1024 );
}
$class->output = preg_replace( "/<!--START TABLE-->/", "{$start_table}", $class->output );
$class->output = preg_replace( "/<!--NAME FIELDS-->/", "{$name_fields}", $class->output );
$class->output = preg_replace( "/<!--POST BOX-->/", "{$post_box}", $class->output );
$class->output = preg_replace( "/<!--POST ICONS-->/", "{$post_icons}", $class->output );
$class->output = preg_replace( "/<!--UPLOAD FIELD-->/", "{$upload_field}", $class->output );
$class->output = preg_replace( "/<!--END TABLE-->/", "{$end_form}", $class->output );
$class->output = preg_replace( "/<!--TOPIC TITLE-->/", "{$topic_title}", $class->output );
$class->output = preg_replace( "/<!--POLL BOX-->/", "{$poll_box}", $class->output );
$class->html_add_smilie_box( );
$this->nav = array(
"<a href='{$class->base_url}&act=SC&c={$class->forum['cat_id']}'>{$class->forum['cat_name']}</a>",
"<a href='{$class->base_url}&act=SF&f={$class->forum['id']}'>{$class->forum['name']}</a>"
);
$this->title = $ibforums->lang['posting_new_topic'];
$print->add_output( "{$class->output}" );
$print->do_output( array(
"TITLE" => $ibforums->vars['board_name']." -> ".$this->title,
"JS" => 1,
"NAV" => $this->nav
) );
}
function regex_count_choices( )
{
++$this->poll_count;
return "<br>";
}
}
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -