Skip to content

Commit

Permalink
UI: #41306
Browse files Browse the repository at this point in the history
During the backport of the Data Table (ILIAS-eLearning#6261)
we seem to have missed an interface.
  • Loading branch information
klees committed Apr 30, 2024
1 parent 32b6d54 commit 564be4e
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 1 deletion.
33 changes: 33 additions & 0 deletions src/UI/Component/Input/Field/FormInput.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<?php

declare(strict_types=1);

/**
* This file is part of ILIAS, a powerful learning management system
* published by ILIAS open source e-Learning e.V.
*
* ILIAS is licensed with the GPL-3.0,
* see https://www.gnu.org/licenses/gpl-3.0.en.html
* You should have received a copy of said license along with the
* source code, too.
*
* If this is not the case or you just want to try ILIAS, you'll find
* us at:
* https://www.ilias.de
* https://github.com/ILIAS-eLearning
*
*********************************************************************/

namespace ILIAS\UI\Component\Input\Field;

/**
* This is a legacy support of Component\Input\Field\Input
* that has been moved to Component\Input\Container\Form\FormInput.
*
* Please always hint to \ILIAS\UI\Component\Input\Container\Form\FormInput
*
* @deprecated removed in 9
*/
interface FormInput
{
}
2 changes: 1 addition & 1 deletion src/UI/Component/Input/Field/Input.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@
*
* @deprecated removed in 9
*/
interface Input
interface Input extends FormInput
{
}

0 comments on commit 564be4e

Please sign in to comment.