1 | <?php |
||
21 | abstract class bbcodes_migration_base extends container_aware_migration |
||
22 | { |
||
23 | /** |
||
24 | * @var array An array of bbcodes data to install |
||
25 | */ |
||
26 | protected static $bbcode_data; |
||
27 | |||
28 | /** |
||
29 | * Get the bbcodes installer object |
||
30 | * |
||
31 | * @return \vse\abbc3\core\bbcodes_installer |
||
32 | */ |
||
33 | public function get_bbcodes_installer() |
||
46 | |||
47 | /** |
||
48 | * Wrapper for installing bbcodes in migrations |
||
49 | */ |
||
50 | public function install_abbc3_bbcodes() |
||
54 | |||
55 | /** |
||
56 | * Wrapper for deleting bbcodes in migrations |
||
57 | */ |
||
58 | public function delete_abbc3_bbcodes() |
||
62 | } |
||
63 |