Zeile 24 | Zeile 24 |
---|
/** * Get info on a tool *
|
/** * Get info on a tool *
|
* @param int Tool ID * @param mixed Thread IDs * @param mixed Post IDs * @return mixed Returns tool data (tid, type, name, description) in an array, otherwise boolean false.
| * @param int $tool_id Tool ID * @return array|bool Returns tool data (tid, type, name, description) in an array, otherwise boolean false.
|
*/ function tool_info($tool_id) {
| */ function tool_info($tool_id) {
|
Zeile 49 | Zeile 47 |
---|
/** * Execute Custom Moderation Tool *
|
/** * Execute Custom Moderation Tool *
|
* @param int Tool ID * @param mixed Thread ID(s) * @param mixed Post IDs
| * @param int $tool_id Tool ID * @param int|array Thread ID(s) * @param int|array Post ID(s)
|
* @return string 'forum' or 'default' indicating where to redirect */ function execute($tool_id, $tids=0, $pids=0)
| * @return string 'forum' or 'default' indicating where to redirect */ function execute($tool_id, $tids=0, $pids=0)
|
Zeile 81 | Zeile 79 |
---|
$thread_options = my_unserialize($tool['threadoptions']);
// If the tool type is a post tool, then execute the post moderation
|
$thread_options = my_unserialize($tool['threadoptions']);
// If the tool type is a post tool, then execute the post moderation
|
| $deleted_thread = 0;
|
if($tool['type'] == 'p') { $deleted_thread = $this->execute_post_moderation($post_options, $pids, $tids);
| if($tool['type'] == 'p') { $deleted_thread = $this->execute_post_moderation($post_options, $pids, $tids);
|
Zeile 99 | Zeile 98 |
---|
/** * Execute Inline Post Moderation *
|
/** * Execute Inline Post Moderation *
|
* @param array Moderation information * @param mixed Post IDs * @param array Thread IDs (in order of dateline ascending)
| * @param array $post_options Moderation information * @param array $pids Post IDs * @param array|int $tid Thread IDs (in order of dateline ascending). Only the first one will be used
|
* @return boolean true */ function execute_post_moderation($post_options, $pids, $tid)
| * @return boolean true */ function execute_post_moderation($post_options, $pids, $tid)
|
Zeile 140 | Zeile 139 |
---|
$this->delete_thread($delete_tid); mark_reports($delete_tid, "thread"); }
|
$this->delete_thread($delete_tid); mark_reports($delete_tid, "thread"); }
|
// return 1 here so the code in execute() above knows to redirect to the forum return 1;
| // return true here so the code in execute() above knows to redirect to the forum return true;
|
} } else
| } } else
|
Zeile 266 | Zeile 265 |
---|
/** * Execute Normal and Inline Thread Moderation *
|
/** * Execute Normal and Inline Thread Moderation *
|
* @param array Moderation information * @param mixed Thread IDs
| * @param array $thread_options Moderation information * @param array Thread IDs. Only the first one will be used, but it needs to be an array
|
* @return boolean true */ function execute_thread_moderation($thread_options, $tids)
| * @return boolean true */ function execute_thread_moderation($thread_options, $tids)
|
Zeile 396 | Zeile 395 |
---|
$posthandler = new PostDataHandler("insert");
if(empty($thread_options['replysubject']))
|
$posthandler = new PostDataHandler("insert");
if(empty($thread_options['replysubject']))
|
{ $new_subject = 'RE: '.$thread['subject']; } else { $new_subject = str_ireplace('{username}', $mybb->user['username'], $thread_options['replysubject']); $new_subject = str_ireplace('{subject}', $thread['subject'], $new_subject); }
| { $new_subject = 'RE: '.$thread['subject']; } else { $new_subject = str_ireplace('{username}', $mybb->user['username'], $thread_options['replysubject']); $new_subject = str_ireplace('{subject}', $thread['subject'], $new_subject); }
|
|
|
// Set the post data that came from the input to the $post array. $post = array( "tid" => $thread['tid'], "replyto" => $thread['firstpost'], "fid" => $thread['fid'], "subject" => $new_subject,
| // Set the post data that came from the input to the $post array. $post = array( "tid" => $thread['tid'], "replyto" => $thread['firstpost'], "fid" => $thread['fid'], "subject" => $new_subject,
|
"uid" => $mybb->user['uid'], "username" => $mybb->user['username'], "message" => $thread_options['addreply'],
| "uid" => $mybb->user['uid'], "username" => $mybb->user['username'], "message" => $thread_options['addreply'],
|