Version 2.1.0
This commit is contained in:
26
textreparser/plugins/mchat_messages.php
Normal file
26
textreparser/plugins/mchat_messages.php
Normal file
@@ -0,0 +1,26 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
*
|
||||
* @package phpBB Extension - mChat
|
||||
* @copyright (c) 2018 kasimi - https://kasimi.net
|
||||
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
||||
*
|
||||
*/
|
||||
|
||||
namespace dmzx\mchat\textreparser\plugins;
|
||||
|
||||
use phpbb\textreparser\row_based_plugin;
|
||||
|
||||
class mchat_messages extends row_based_plugin
|
||||
{
|
||||
public function get_columns()
|
||||
{
|
||||
return [
|
||||
'id' => 'message_id',
|
||||
'text' => 'message',
|
||||
'bbcode_uid' => 'bbcode_uid',
|
||||
'options' => 'bbcode_options',
|
||||
];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user