如何在 joomla 管理端添加网站成员添加/编辑/删除模块?
在我的 joomla 网站中,我需要一个选项来添加/编辑/删除网站成员。站点成员由管理员添加和管理。网站会员可以使用管理员提供的详细信息通过用户端登录。我需要将网站成员的详细信息存储在单独的表中,
有人知道执行此操作的程序吗?
谢谢
In my joomla site I need an option to add/edit/delete site members. The site members are added and managed by admin. And the site members can login through userside with the details provided by admin. I need to store the site member's details in separate table,
Any one knows the procedure to do this?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
用户默认保存在表:jos_users下
如果你想使用 Joomla - 你不能将用户存储在“单独的表”中 - 如果你这样做,Joomla 不会将他们“识别”为用户......
您可以做的(如果您坚持使用单独的表)是创建触发器,将 jos_users 中的每个更改复制到另一个表。
当您登录 joomla 控制面板(以管理员身份)时,选项之一是“用户管理器” - 这是手动编辑/添加/删除用户的地方(当然您可以直接在数据库中执行此操作 - 但我没有看到任何理由这样做)。
如果您想添加更多选项 - 只需将额外的列添加到表中即可!
希望有帮助!
The users are saved by default under table: jos_users
If you want to use Joomla - you can't store the users in a "separate table" - if you'll do so, Joomla won't "recognize" them as users...
What you can do (if you insist on a separate table) is to create triggers that will copy every change in jos_users to another table.
When you login joomla control-panel (as administrator) one of the options is "User Manager" - that's the place to edit/add/remove users manually (of course you can do it directly in the DB - but I don't see any reason to do it).
If you want to add more options - just add the extra columns to the table!
Hope that helps!