RSForm! Pro获取页面标题字段值

当我们在网站中添加多个表单,或者为每个页面添加咨询功能时,很可能需要获取当前页面的标题作为表单的字段值保留。

如果你是使用RSForm! Pro的话,可以参考官网的教程:http://www.rsjoomla.com/support/documentation/view-article/369-get-the-page-title.html

原文内容:

To get the page title of page inside a field you require a simple script, placed in the Default Value area of a field. This can be particularly useful when using the form inside a module or inside an article and you wish to know from where it was submitted:

//<code>
$doc = JFactory::getDocument();
return $doc->getTitle();
//</code>

Note: This code snippet is only available for Joomla 1.5, 1.6 & 1.7.

使用方法就是建立一个Hidden Field的字段(当然如果你需要把标题显示在当前页面的话,可以选择其他类型),然后在Default Value(默认值)区域填上

//<code>
$doc = JFactory::getDocument();
return $doc->getTitle();
//</code>

此方法只适用于RSForm! Pro,不适用免费版RSForm!。