references:joomla.framework:application:jcontroller-geterrorgetError
Gets the error message. This will return the value that was last set using the setError method. If the error has not been set, null will be returned. Syntaxstring getError () ExamplesExample $controller = new JController(); $controller->setError( 'Just an example' ); echo $controller->getError(); might produce Result Just an example |


