-
Notifications
You must be signed in to change notification settings - Fork 214
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FEATURE] Implement enum-precursor option name constants
- Loading branch information
1 parent
c068901
commit 6539943
Showing
52 changed files
with
256 additions
and
203 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?php | ||
declare(strict_types=1); | ||
namespace FluidTYPO3\Flux\Enum; | ||
|
||
class ExtensionOption | ||
{ | ||
public const OPTION_DEBUG_MODE = 'debugMode'; | ||
public const OPTION_DOKTYPES = 'doktypes'; | ||
public const OPTION_HANDLE_ERRORS = 'handleErrors'; | ||
public const OPTION_AUTOLOAD = 'autoload'; | ||
public const OPTION_PLUG_AND_PLAY = 'plugAndPlay'; | ||
public const OPTION_PLUG_AND_PLAY_DIRECTORY = 'plugAndPlayDirectory'; | ||
public const OPTION_PAGE_INTEGRATION = 'pageIntegration'; | ||
public const OPTION_FLEXFORM_TO_IRRE = 'flexFormToIrre'; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?php | ||
declare(strict_types=1); | ||
namespace FluidTYPO3\Flux\Enum; | ||
|
||
class FormOption | ||
{ | ||
public const STATIC = 'static'; | ||
public const SORTING = 'sorting'; | ||
public const GROUP = 'group'; | ||
public const ICON = 'icon'; | ||
public const TEMPLATE_FILE = 'templateFile'; | ||
public const TEMPLATE_FILE_RELATIVE = 'templateFileRelative'; | ||
public const RECORD = 'record'; | ||
public const RECORD_FIELD = 'recordField'; | ||
public const RECORD_TABLE = 'recordTable'; | ||
public const TRANSFORM = 'transform'; | ||
public const HIDE_NATIVE_FIELDS = 'hideNativeFields'; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<?php | ||
declare(strict_types=1); | ||
namespace FluidTYPO3\Flux\Enum; | ||
|
||
class InlineFieldControls | ||
{ | ||
public const INFO = 'info'; | ||
public const NEW = 'new'; | ||
public const DRAGDROP = 'dragdrop'; | ||
public const SORT = 'sort'; | ||
public const HIDE = 'hide'; | ||
public const DELETE = 'delete'; | ||
public const LOCALIZE = 'localize'; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<?php | ||
declare(strict_types=1); | ||
namespace FluidTYPO3\Flux\Enum; | ||
|
||
class InlineFieldNewRecordButtonPosition | ||
{ | ||
public const TOP = 'top'; | ||
public const BOTTOM = 'bottom'; | ||
public const BOTH = 'both'; | ||
public const NONE = 'none'; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?php | ||
declare(strict_types=1); | ||
namespace FluidTYPO3\Flux\Enum; | ||
|
||
class PreviewOption | ||
{ | ||
const PREVIEW = 'preview'; | ||
const MODE = 'mode'; | ||
const MODE_APPEND = 'append'; | ||
const MODE_PREPEND = 'prepend'; | ||
const MODE_NONE = 'none'; | ||
const TOGGLE = 'toggle'; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.