1: <?php
2:
3: namespace LaravelUi5\Core\Ui5\Enums;
4:
5: /**
6: * Defines the scopes of GenericTile enabling the developer to implement different "flavors" of tiles.
7: *
8: * @see https://sdk.openui5.org/api/sap.m.GenericTileScope
9: */
10: enum GenericTileScope: string
11: {
12: /**
13: * More action scope (Only the More icon is added to the tile)
14: */
15: case ActionMore = 'ActionMore';
16:
17: /**
18: * Remove action scope (Only the Remove icon is added to the tile)
19: */
20: case ActionRemove = 'ActionRemove';
21:
22: /**
23: * Action scope (Possible footer and Error State information is overlaid,
24: * "Remove" and "More" icons are added to the tile).
25: */
26: case Actions = 'Actions';
27:
28: /**
29: * Default scope (The default scope of the tile, no action icons are rendered).
30: */
31: case Display = 'Display';
32: }
33: