mediawiki / model
MediaWiki 的抽象模型
0.2
2014-06-03 10:41 UTC
Requires
- composer/installers: >=1.0.1
This package is not auto-updated.
Last update: 2024-09-14 14:24:34 UTC
README
模型是 MediaWiki 的扩展,将 MVC 模式中的 "M" 带入 MediaWiki。
什么是模型?
非常简单且轻量级的东西。模型允许你在 MediaWiki DatabaseBase 类之上使用模型对象。
使用模型,你可以专注于与对象的工作,而不是 SQL 查询。
$user = new Model_User(); $user->password = '1234'; $user->save();
更多示例可以在这里找到。
开始使用模型:
- 在 LocalSettings.php 中包含它
- 基于类 Model 创建模型类,根据你的模型描述
- 创建适当的数据库表
- 在你的代码中使用模型。
阅读文档以获取更多信息。