Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[PROPOSAL] deprecation of active record #9045

Open
wants to merge 1 commit into
base: trunk
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions components/ILIAS/ActiveRecord/class.ActiveRecord.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,11 @@
*********************************************************************/

/**
* Class ActiveRecord
* @author Fabian Schmid <[email protected]>
* @author Oskar Truffer <[email protected]>
* @experimental
* @description
* @version 2.0.7
* @depracated This service is now deprecated and will be removed with ILIAS 12 or 13 (depending on how quickly users
* can replace their implementations). The ActiveRecord was a simple way of handling database operations and object
* mapping in its day. However, the pattern is not very lightweight and has a very large overhead. It also leads to
* many database queries and high memory consumption. For several releases now, the “Repository Pattern” has been
* propagated as a better alternative.
*/
#[\AllowDynamicProperties]
abstract class ActiveRecord
Expand Down
Loading