-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConsoleHelper.php
More file actions
93 lines (86 loc) · 1.91 KB
/
Copy pathConsoleHelper.php
File metadata and controls
93 lines (86 loc) · 1.91 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<?php
/**
* Arikaim
*
* @link http://www.arikaim.com
* @copyright Copyright (c) Intersoft <info@arikaim.com>
* @license http://www.arikaim.com/license
*
*/
namespace Arikaim\Core\Console;
/**
* Console helper class
*/
class ConsoleHelper
{
/**
* Return console label text
*
* @param string $text
* @param string $color
* @return string
*/
public static function getLabelText(string $text,string $color = 'green'): string
{
return '<fg=' . $color . '>' . $text . '</>';
}
/**
* Get CHECK MARK
*
* @param string $space
* @return string
*/
public static function checkMark(string $space = ' '): string
{
return $space . "<fg=green>\xE2\x9C\x93</>" . $space;
}
/**
* Get error mark
*
* @param string $space
* @return string
*/
public static function errorMark(string $space = ' '): string
{
return $space . '<fg=red>x</>' . $space;
}
/**
* Get warning
*
* @return string
*/
public static function warning(string $label = '!'): string
{
return '<fg=yellow>' . $label . '</>';
}
/**
* Return status label text
*
* @param int $status
* @return string
*/
public static function getStatusText(int $status): string
{
return ($status == 1) ? '<fg=green>Enabled</>' : '<fg=red>Disabled</>';
}
/**
* Return Yes/No text
*
* @param bool $value
* @return string
*/
public static function getYesNoText(bool $value): string
{
return ($value == true) ? '<fg=green>Yes</>' : '<fg=red>No</>';
}
/**
* Return description text
*
* @param string $description
* @return string
*/
public static function getDescriptionText(string $description): string
{
return '<fg=cyan>' . $description . '</>';
}
}