Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
W
WikiCommander
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
47
Issues
47
List
Boards
Labels
Service Desk
Milestones
Merge Requests
2
Merge Requests
2
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Luke081515
WikiCommander
Commits
fbfad7e7
Commit
fbfad7e7
authored
Apr 08, 2018
by
Luke081515
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Upgrade to Cygnus alpha
* Remove code that is covered by BotCore now
parent
859de661
Pipeline
#1880
passed with stages
in 1 minute and 50 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
64 deletions
+2
-64
Cygnus
Cygnus
+1
-1
WikiCommander.php
WikiCommander.php
+1
-63
No files found.
Cygnus
@
d28da283
Compare
680548de
...
d28da283
Subproject commit
680548de92cefefae2cdda5870ac922040a1a4f6
Subproject commit
d28da283e507f02578c8d818667d3b896af6f267
WikiCommander.php
View file @
fbfad7e7
...
...
@@ -11,69 +11,7 @@ class WikiCommander extends Core {
public
function
__construct
(
$Account
,
$Job
,
$pUseHTTPS
=
true
)
{
$this
->
initcurl
(
$Account
,
$Job
,
$pUseHTTPS
);
}
/** echoCritical
* Writes out a critical message
* Use this only for critical messages
* Prints out the message in red
*/
private
function
echoCritical
(
$msg
)
{
echo
"
\n\033
[01;31m"
.
$msg
.
"
\033
[0m"
;
}
/** echoSuccessful
* Use this only when a task was successful
* Prints out the message in green
*/
private
function
echoSuccessful
(
$msg
)
{
echo
"
\n\033
[01;32m"
.
$msg
.
"
\033
[0m"
;
}
/** echoWarning
* Writes out a warning
* Use this only for non-critical warnings
* Prints the message out in yellow
*/
private
function
echoWarning
(
$msg
)
{
echo
"
\n\033
[01;33m"
.
$msg
.
"
\033
[0m"
;
}
/** echoNotice
* Writes out a notice
* Use this only for notices, no output, no warnings/errors
* Prints the message out in blue
*/
private
function
echoNotice
(
$msg
)
{
echo
"
\n\033
[01;34m"
.
$msg
.
"
\033
[0m"
;
}
/** echoOutput
* Writes out the output of a function
* Use this only for function output
* Prints the message out in purple
*/
private
function
echoOutput
(
$msg
)
{
if
(
$msg
===
true
)
{
echo
"
\n\033
[01;35mReturned value: true
\033
[0m"
;
}
else
if
(
$msg
===
false
)
{
echo
"
\n\033
[01;35mReturned value: false
\033
[0m"
;
}
else
if
(
$msg
===
null
)
{
echo
"
\n\033
[01;35mReturned value: NULL
\033
[0m"
;
}
else
{
echo
"
\n\033
[01;35m"
.
$msg
.
"
\033
[0m"
;
}
}
/** askRequired
* Asks for something
* Use this only if the answer is required
* Prints the answer in yellow
*/
private
function
askRequired
(
$msg
)
{
return
$this
->
askOperator
(
"
\n\033
[01;33m"
.
$msg
.
"
\033
[0m"
);
}
/** askOptional
* Asks for something
* Use this only if the answer is optional (additional param for example)
* Prints the answer in cyan
*/
private
function
askOptional
(
$msg
)
{
return
$this
->
askOperator
(
"
\n\033
[01;36m"
.
$msg
.
"
\033
[0m"
);
}
}
$Bot
=
new
ExampleProgramm
(
'WikiCommander'
,
'WikiCommander'
);
?>
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment