| 1 | <?php |
||
| 13 | class v323_m12_table_bbcode extends bbcodes_migration_base |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * {@inheritdoc} |
||
| 17 | */ |
||
| 18 | public static function depends_on() |
||
| 25 | |||
| 26 | /** |
||
| 27 | * {@inheritdoc} |
||
| 28 | */ |
||
| 29 | public function update_data() |
||
| 35 | |||
| 36 | public function revert_data() |
||
| 42 | |||
| 43 | /** |
||
| 44 | * {@inheritdoc} |
||
| 45 | */ |
||
| 46 | protected static $bbcode_data = array( |
||
| 47 | 'pipes' => array( |
||
| 48 | 'bbcode_helpline' => 'ABBC3_PIPE_TABLES', |
||
| 49 | 'bbcode_match' => '[pipes]{TEXT}[/pipes]', |
||
| 50 | 'bbcode_tpl' => '{TEXT}', |
||
| 51 | 'bbcode_order' => 999, |
||
| 52 | ), |
||
| 53 | ); |
||
| 54 | } |
||
| 55 |