Welcome, Guest
Username: Password: Remember me
  • Page:
  • 1

TOPIC:

set var on controller 09 Apr 2015 13:23 #12907

  • albert
  • albert's Avatar Topic Author
  • Offline
  • Senior Member
  • Senior Member
  • Posts: 70
  • Thank you received: 2
Hi,
on a function of a controller i can get correctly vars by doing:

$jinput = JFactory::getApplication()->input;
$entry_id = $jinput->get('participant_id', null);

but when i try to set a var to recover on the view.html it doesn't work,
either if i do
$jinput->set('result',$result);
as
JRequest::setVar('result',$result);

i can't recover any data in the view.html.php

I could try to use the array of redirection, but i want to pass an object.

Please Log in or Create an account to join the conversation.

set var on controller 13 May 2015 12:17 #12978

I do not exactly understand what you need, but in the controller you can set the state on the model:

$model = $this->getModel(); 
$model->setState('result',$result);

Then in your view you can pull that info in your view
$result = $model->getState('result');

Does that help?

Please Log in or Create an account to join the conversation.

  • Page:
  • 1
Time to create page: 0.056 seconds

Although I found this tool some time ago I just started learning experimenting and building this first component on Monday and now on Thursday afternoon it's already online. Although I already had a working version done with another tool this is much easier to build and at the end you have the freedom to own your own component. Once you know how to use Cook you will boost your productivity as the learning curve is really moderate compared to many other tools.
Giori (Forum)

Get Started