-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathColors.php
177 lines (161 loc) · 3.63 KB
/
Colors.php
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
<?php
/*
* This file is part of the Niga framework package.
*
* (c) Abass Dev <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Niga\Framework\Console;
use Niga\Framework\Console\Exception\ConsoleException;
/**
* Console Colors
*
* @author Abass Dev <[email protected]>
*/
class Colors
{
/**
* Color with background
*
* @param string $message
*
* @return string
*/
public static function temp($type, $subject = "", $message = "")
{
$temp = "";
switch ($type) {
case 'SUCCESS':
$temp = "\033[42m{$type}\033[0m {$subject} {$message}";
break;
case 'INFO':
$temp = "\033[46m{$type}\033[0m {$subject} {$message}";
break;
case 'WARNING':
$temp = "\033[43m{$type}\033[0m {$subject} {$message}";
break;
case 'ERROR':
$temp = "\033[41m{$type}\033[0m {$subject} {$message}";
break;
default:
throw new ConsoleException(self::error("Invalid or undefined message type!"));
break;
}
return $temp;
}
/**
* Message type success color
*
* @param string $message
*
* @return string
*/
public static function success($message)
{
return "\033[32m$message\033[0m";
}
/**
* Message type success background
*
* @param string $message
*
* @return string
*/
public static function successTemp($message)
{
return "\033[42mSUCCESS\033[0m " . self::success($message);
}
/**
* Message type info color
*
* @param string $message
*
* @return string
*/
public static function info($message, $title = null)
{
if ($title !== null) {
return "\033[36m$title\033[0m $message";
}
return "\033[36m$message\033[0m";
}
/**
* Message type info background
*
* @param string $message
*
* @return string
*/
public static function infoTemp($message)
{
return "\033[46mINFO\033[0m " . self::info($message);
}
/**
* Message type warning color
*
* @param string $message
*
* @return string
*/
public static function warring($message)
{
return "\033[33m$message\033[0m";
}
/**
* Message type warning background
*
* @param string $message
*
* @return string
*/
public static function warningTemp($message)
{
return "\033[43mWARNING\033[0m " . self::warring($message);
}
/**
* Message type error color
*
* @param string $message
*
* @return string
*/
public static function error($message)
{
return "\033[31m$message\033[0m";
}
/**
* Message type error background
*
* @param string $message
*
* @return string
*/
public static function errorTemp($message)
{
return "\033[41mERROR\033[0m " . self::error($message);
}
/**
* Message type danger color
*
* @param string $message
*
* @return string
*/
public static function danger($message)
{
return self::error($message);
}
/**
* Message type danger color
*
* @param string $message
*
* @return string
*/
public static function dangerTem($message)
{
return "\033[41mERROR\033[0m " . self::error($message);
}
}