| Total Complexity | 1 |
| Total Lines | 12 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 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 | ); |
||
| 28 |