Drupal在profile_kit编辑页面调用user_profile_form
我为我糟糕的英语感到抱歉。 我很感激我有答案。
我在 Drupal 中工作以执行以下操作: 在“配置文件设置”页面中编辑用户页面字段(更改密码)以显示可以一次性编辑所有内容。
I am sorry for my poor English.
I'm grateful I have the answer.
I work in Drupal to do the following:
Edit User Page Fields (change password) in the Profile Settings page to show that can be edited all at once.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我没猜错,并且您正在尝试更新所有用户的密码,那么您应该查看
users
表。请注意不要更改具有uid = 0
(匿名用户)和uid = 1
(超级管理员用户)的用户。因此,如果要更改所有用户的密码,请运行以下 SQL 查询:
上述查询将更新除匿名用户和超级管理员用户之外的所有用户的密码。我不确定您为什么要为所有用户重置密码,但希望它对您有帮助:)
If I got it right and you are trying to update the password for all the users then you should have a look at the
users
table. Be careful not to change the users that have theuid = 0
(anonymous user) anduid = 1
(the super-admin user).So if you want to change the password for all the users run the following SQL query:
The above query will update the password for all the users except the anonymous user and the super-admin user. I'm not sure why you would want to reset the password for all the users, but hope it serves you well :)