|
@@ 52-53 (lines=2) @@
|
| 49 |
|
{ |
| 50 |
|
$lpad = $rpad = 0; |
| 51 |
|
$lspace = $chars = $rspace = ''; |
| 52 |
|
if($timer['start'] > $this->min) |
| 53 |
|
$lpad = intval(($timer['start'] - $this->min) / $this->step); |
| 54 |
|
if($timer['end'] < $this->max) |
| 55 |
|
$rpad = intval(($this->max - $timer['end']) / $this->step); |
| 56 |
|
$mpad = $this->width - $lpad - $rpad; |
|
@@ 54-55 (lines=2) @@
|
| 51 |
|
$lspace = $chars = $rspace = ''; |
| 52 |
|
if($timer['start'] > $this->min) |
| 53 |
|
$lpad = intval(($timer['start'] - $this->min) / $this->step); |
| 54 |
|
if($timer['end'] < $this->max) |
| 55 |
|
$rpad = intval(($this->max - $timer['end']) / $this->step); |
| 56 |
|
$mpad = $this->width - $lpad - $rpad; |
| 57 |
|
if($lpad > 0) |
| 58 |
|
$lspace = str_repeat(' ', $lpad); |