引用用户组件和联系人组件的 joomla 模块
我正在寻找创建一个模块来为我的 joomla! 注册新用户。网站。所以基本上,我想创建一个表单,要求提供所有类型的信息(名字、姓氏、用户名、密码、地址、电话等)并将用户名、密码和电子邮件等信息存储在我的使用 joomla! com_users 组件以及使用 joomla! 的地址、电话、名字和姓氏。 com_contacts 组件。我不明白我如何/是否能够做到这一点。我不知道如何引用模块中的组件。我不想重写任何一个组件。谢谢。
I am looking to create a module for registering a new user for my joomla! website. So basically, I want to create a form that ask for all types of information (first name, last name, username, pw, address, phone, etc... ) and store information like the username, password, and email, in my using the joomla! com_users component and the address, phone, first name, and last name using the joomla! com_contacts component. I don't understand how/if I am able to do this. I don't know how I can reference components in my module. I don't want to rewrite either component. Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
查看社区生成器 (http://www.joomlapolis.org)。这是一个很棒的免费 Joomla 组件,它向用户注册和管理流程等添加了各种内容。
Have a look at Community Builder (http://www.joomlapolis.org). This is a great free Joomla component that adds all sorts of stuff to the user registration and management process, amongst other things.
最简单的方法是使用 ChronoForms。它有一个内置的桥,允许自定义用户注册表单,将您收集的信息发送到 com_users。然后,您可以设置表单,以便在处理注册后将收集的数据插入到 com_contacts 表中。无需破解代码。
The easiest thing to do would be to use ChronoForms. It has a built in bridge to allow custom user registration forms that would get the info you collect in to com_users. You could then set up the form to also insert the collected data in to the com_contacts table after it handles the registration. No code hacking required.