Merge pull request #99 from PietroCarrara/api-messages
Add warning and ban messages to the API
This commit is contained in:
commit
9033f6dc99
|
@ -113,7 +113,7 @@ class Api {
|
||||||
if (isset($config['poster_ids']) && $config['poster_ids']) $apiPost['id'] = poster_id($post->ip, $post->thread, $board['uri']);
|
if (isset($config['poster_ids']) && $config['poster_ids']) $apiPost['id'] = poster_id($post->ip, $post->thread, $board['uri']);
|
||||||
if ($threadsPage) return $apiPost;
|
if ($threadsPage) return $apiPost;
|
||||||
|
|
||||||
// Handle country field
|
// Handle special fields
|
||||||
if (isset($post->body_nomarkup) && ($this->config['country_flags'] || $this->config['user_flag'])) {
|
if (isset($post->body_nomarkup) && ($this->config['country_flags'] || $this->config['user_flag'])) {
|
||||||
$modifiers = extract_modifiers($post->body_nomarkup);
|
$modifiers = extract_modifiers($post->body_nomarkup);
|
||||||
if (isset($modifiers['flag']) && isset($modifiers['flag alt']) && preg_match('/^[1-9a-z_-]{2,}$/', $modifiers['flag'])) {
|
if (isset($modifiers['flag']) && isset($modifiers['flag alt']) && preg_match('/^[1-9a-z_-]{2,}$/', $modifiers['flag'])) {
|
||||||
|
@ -123,6 +123,12 @@ class Api {
|
||||||
$apiPost['country_name'] = $modifiers['flag alt'];
|
$apiPost['country_name'] = $modifiers['flag alt'];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if (isset($modifiers['warning message'])) {
|
||||||
|
$apiPost['warning_msg'] = $modifiers['warning message'];
|
||||||
|
}
|
||||||
|
if (isset($modifiers['ban message'])) {
|
||||||
|
$apiPost['ban_msg'] = $modifiers['ban message'];
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($config['slugify'] && !$post->thread) {
|
if ($config['slugify'] && !$post->thread) {
|
||||||
|
|
Loading…
Reference in New Issue