| Conditions | 1 |
| Paths | 1 |
| Total Lines | 15 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 19 | protected function doRun() { |
||
| 20 | $cryptTool = CryptTool::getInstance(); |
||
| 21 | |||
| 22 | Common::l('Version: '.MSGAPI_SDK_VERSION); |
||
| 23 | Common::l('Feature level: '.MSGAPI_SDK_FEATURE_LEVEL); |
||
| 24 | Common::l('CryptTool: '.$cryptTool->getName().' ('.$cryptTool->getDescription().')'); |
||
| 25 | |||
| 26 | Common::l(' ╔═══════╤══════╤══════════════╤═══════╤══════╤═════════╗'); |
||
| 27 | Common::l(' ║ Level │ Text │ Capabilities │ Image │ File │ Credits ║'); |
||
| 28 | Common::l(' ╟───────┼──────┼──────────────┼───────┼──────┼─────────╢'); |
||
| 29 | Common::l(' ║ 1 │ X │ │ │ │ ║'); |
||
| 30 | Common::l(' ║ 2 │ X │ X │ X │ X │ ║'); |
||
| 31 | Common::l("\033[1;36m\033[40m▶".'║ 3 │ X │ X │ X │ X │ X ║'."\033[0m"); |
||
| 32 | Common::l(' ╚═══════╧══════╧══════════════╧═══════╧══════╧═════════╝'); |
||
| 33 | } |
||
| 34 | } |
||
| 35 |