0

I am new to Joomla and it is difficult to understand API for me.

I want to create simple page with form fields, which will have current logged in user details. That will be submitted to 3rd party site for payment processing.

Any one help me, what is way for creating dynamic page?

4

1 回答 1

0

你可以这样工作,

如果此表单只需要为登录用户显示,那么

在下创建新布局components/com_users/view/profile/tmpl/new_layout.php

您还可以通过检查布局来设置此页面所需的值,components/com_users/view/profile/view.html.php并调用从其模型返回必要数据的函数

这里是profile.php下components/com_users/models/

在您的自定义表单 new_layout.php 中,您可以添加表单操作,例如 index.php?option=com_users&view=profile&task=profile.addNewData

这会将表单数据发送到 profile.php 控制器,函数名称为 addNewData()

您可以从此控制器调用配置文件模型。

我想你会对你必须做的事情有所了解。

于 2013-03-06T09:29:41.080 回答