1
Hello,
If in my php code I have something like this :
this->template->assign( "some_variable_here", "sometext" );
how can I test that the variable $some_variable_here is set ?
for exemple :
if (isset($some_variable_here) && $some_variable_here != '') {
this->template->assign( "some_variable_here", "someOtherText" );
}
I need to test it in php code and not in template.
Thank you a lot