jIInstallReporter
            
            extends
                            ReporterInterface                    
                
            in
            
        
    
        
            interface for classes used as reporter for installation or check etc... This classes are responsible to show informations to the user.
Tags
Table of Contents
- end() : mixed
 - called when the installation is finished.
 - getMessageCounter() : int
 - return the number of messages of a specific type.
 - message() : mixed
 - displays a message.
 - start() : mixed
 - start the process.
 
Methods
end()
called when the installation is finished.
    public
                end() : mixed
    
    
    
        Return values
mixed —getMessageCounter()
return the number of messages of a specific type.
    public
                getMessageCounter(mixed $type) : int
    
        Parameters
- $type : mixed
 
Return values
int —message()
displays a message.
    public
                message(string $message[, string $type = '' ]) : mixed
    
        Parameters
- $message : string
 - 
                    
the message to display
 - $type : string = ''
 - 
                    
the type of the message : 'error', 'notice', 'warning', ''
 
Return values
mixed —start()
start the process.
    public
                start() : mixed
    
    
    
        