You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
410 B
PHP
15 lines
410 B
PHP
<?php
|
|
namespace Isekai\AIReview;
|
|
|
|
use JobQueueGroup;
|
|
use MediaWiki\MediaWikiServices;
|
|
use Title;
|
|
|
|
class Hooks {
|
|
public static function onModerationPending($fields, $mod_id){
|
|
//加入审核队列
|
|
$title = Title::newFromText($fields['mod_title']);
|
|
$job = new AIReviewJob($title, ['mod_id' => $mod_id]);
|
|
MediaWikiServices::getInstance()->getJobQueueGroup()->push($job);
|
|
}
|
|
} |