blob: 425937c1deed02bba7a80843855b6601833b6bca (
plain)
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
|
<?php
class PHP_Shell_Extensions_VerbosePrint implements PHP_Shell_Extension {
protected $opt_verbose = false;
protected $oneshot_verbose = false;
public function register() {
/* $cmd = PHP_Shell_Commands::getInstance();
$cmd->registerCommand('#^p #', $this, 'cmdPrint', 'p <var>', 'print the variable verbosly');
$opt = PHP_Shell_Options::getInstance();
$opt->registerOption('verboseprint', $this, 'optSetVerbose');
*/
}
/**
* handle the 'p ' command
*
* set the verbose flag
*
* @return string the pure command-string without the 'p ' command
*/
public function cmdPrint($l) {
$this->oneshot_verbose = true;
$cmd = substr($l, 2);
return $cmd;
}
public function optSetVerbose($key, $val) {
switch($val) {
case "false":
case "on":
case "1":
$this->opt_verbose = true;
default:
$this->opt_verbose = false;
break;
}
}
/**
* check if we have a verbose print-out
*
* @return bool 1 if verbose, 0 otherwise
*/
public function isVerbose() {
$v = $this->opt_verbose || $this->oneshot_verbose;
$this->oneshot_verbose = false;
return $v;
}
}
|