File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 4
4
5
5
class action_plugin_structpublish_migration extends DokuWiki_Action_Plugin
6
6
{
7
- const MIN_DB_STRUCT = 19 ;
7
+ public const MIN_DB_STRUCT = 19 ;
8
8
9
9
/** @var string */
10
10
protected $ table = 'data_structpublish ' ;
Original file line number Diff line number Diff line change 10
10
class Constants
11
11
{
12
12
// a page can be in one current status
13
- const STATUS_DRAFT = 'draft ' ;
14
- const STATUS_APPROVED = 'approved ' ;
15
- const STATUS_PUBLISHED = 'published ' ;
13
+ public const STATUS_DRAFT = 'draft ' ;
14
+ public const STATUS_APPROVED = 'approved ' ;
15
+ public const STATUS_PUBLISHED = 'published ' ;
16
16
17
17
// an action transitions a page from one status to another
18
- const ACTION_APPROVE = 'approve ' ;
19
- const ACTION_PUBLISH = 'publish ' ;
18
+ public const ACTION_APPROVE = 'approve ' ;
19
+ public const ACTION_PUBLISH = 'publish ' ;
20
20
21
21
/**
22
22
* Convenience function mapping transition actions to resulting status
You can’t perform that action at this time.
0 commit comments