| [ Index ] |
PHP Cross Reference of phpBB-3.3.14-deutsch |
[Source view] [Print] [Project Stats]
(no description)
| File Size: | 114 lines (3 kb) |
| Included or required: | 0 times |
| Referenced: | 0 times |
| Includes or requires: | 0 files |
OutputInterface:: (12 methods):
write()
writeln()
setVerbosity()
getVerbosity()
isQuiet()
isVerbose()
isVeryVerbose()
isDebug()
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) |
| isQuiet() X-Ref |
| Returns whether verbosity is quiet (-q). return: bool true if verbosity is set to VERBOSITY_QUIET, false otherwise |
| isVerbose() X-Ref |
| Returns whether verbosity is verbose (-v). return: bool true if verbosity is set to VERBOSITY_VERBOSE, false otherwise |
| isVeryVerbose() X-Ref |
| Returns whether verbosity is very verbose (-vv). return: bool true if verbosity is set to VERBOSITY_VERY_VERBOSE, false otherwise |
| isDebug() X-Ref |
| Returns whether verbosity is debug (-vvv). return: bool true if verbosity is set to VERBOSITY_DEBUG, false otherwise |
| 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: Mon Nov 25 19:05:08 2024 | Cross-referenced by PHPXref 0.7.1 |