-
Notifications
You must be signed in to change notification settings - Fork 344
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FEATURE] UI: move
UI\Component\Table\Storage
to UI\Storage
for g…
…eneric use. (#8818) * Moves the `UI\Component\Table\Storage` interface (and file) to `UI\Storage`.
- Loading branch information
Showing
3 changed files
with
11 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,10 +15,15 @@ | |
* https://github.com/ILIAS-eLearning | ||
*/ | ||
|
||
namespace ILIAS\UI\Component\Table; | ||
namespace ILIAS\UI; | ||
|
||
/** | ||
* @author Thibeau Fuhrer <[email protected]> | ||
* Storage is simple key/value store without further schema definition. | ||
* It's used to (mainly temporarily) keep parameters induced by a user interaction, | ||
* e.g. operating view controls. | ||
* Storage has no data-separation or id-handling on its own, so, recommandedly, | ||
* you will store the whole of your data at once in a suitable format | ||
* as a single value depending on a key unique to your view. | ||
*/ | ||
interface Storage extends \ArrayAccess | ||
{ | ||
|