[ Index ] |
PHP Cross Reference of phpBB-3.2.11-deutsch |
[Source view] [Print] [Project Stats]
(no description)
File Size: | 86 lines (3 kb) |
Included or required: | 0 times |
Referenced: | 0 times |
Includes or requires: | 0 files |
OutputInterface:: (8 methods):
write()
writeln()
setVerbosity()
getVerbosity()
setDecorated()
isDecorated()
setFormatter()
getFormatter()
Interface: OutputInterface - X-Ref
OutputInterface is the interface implemented by all Output classes.write($messages, $newline = false, $options = 0) X-Ref |
Writes a message to the output. param: string|array $messages The message as an array of strings or a single string param: bool $newline Whether to add a newline param: int $options A bitmask of options (one of the OUTPUT or VERBOSITY constants), 0 is considered the same as self::OUTPUT_NORMAL | self::VERBOSITY_NORMAL |
writeln($messages, $options = 0) X-Ref |
Writes a message to the output and adds a newline at the end. param: string|array $messages The message as an array of strings or a single string param: int $options A bitmask of options (one of the OUTPUT or VERBOSITY constants), 0 is considered the same as self::OUTPUT_NORMAL | self::VERBOSITY_NORMAL |
setVerbosity($level) X-Ref |
Sets the verbosity of the output. param: int $level The level of verbosity (one of the VERBOSITY constants) |
getVerbosity() X-Ref |
Gets the current verbosity of the output. return: int The current level of verbosity (one of the VERBOSITY constants) |
setDecorated($decorated) X-Ref |
Sets the decorated flag. param: bool $decorated Whether to decorate the messages |
isDecorated() X-Ref |
Gets the decorated flag. return: bool true if the output will decorate messages, false otherwise |
setFormatter(OutputFormatterInterface $formatter) X-Ref |
No description |
getFormatter() X-Ref |
Returns current output formatter instance. return: OutputFormatterInterface |
Generated: Wed Nov 11 20:33:01 2020 | Cross-referenced by PHPXref 0.7.1 |