Completed
Branch release-3.2.0 (10f575)
by Daniel
03:11
created

custom_block_text   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 6
c 0
b 0
f 0
dl 0
loc 12
rs 10
wmc 1
1
<?php
2
/**
3
*
4
* Board Rules extension for the phpBB Forum Software package.
5
*
6
* @copyright (c) 2015 phpBB Limited <https://www.phpbb.com>
7
* @license GNU General Public License, version 2 (GPL-2.0)
8
*
9
*/
10
11
namespace blitze\sitemaker\migrations\v30x\textreparser\plugins;
12
13
class custom_block_text extends \phpbb\textreparser\row_based_plugin
14
{
15
	/**
16
	* {@inheritdoc}
17
	*/
18
	public function get_columns()
19
	{
20
		return array(
21
			'id'			=> 'block_id',
22
			'text'			=> 'block_content',
23
			'bbcode_uid'	=> 'bbcode_uid',
24
			'options'		=> 'bbcode_options',
25
		);
26
	}
27
}
28