2
joomla보기에서 joomla 서식으로 데이터를 전달하는 방법을 알고 싶습니다. 여러 변수를 전달하려면 어떻게해야합니까?joomla에서 joomla보기로 데이터 전달하기 joomla에있는 템플릿 파일 1.7
class CareerformViewCareerform extends JView
{
protected $state;
protected $item;
function display($tpl = null)
{
$app = JFactory::getApplication();
$params = $app->getParams();
// Get some data from the models
$state = $this->get('State');
$item = $this->get('Item');
$newvar="Something";
$success_message="Thanks for your interest";
parent::display($tpl);
}
}
나는 $newvar
및 템플릿 $success_message
를 전달하려는; 어떻게 그들을 건널 수 있습니까?
이 경우 뷰 또는 템플릿에서 정의 된 assignRef() 함수는 어디에 있습니까? – pal4life