gradido/src/Template/Element/printGradido.ctp
2020-05-22 16:29:13 +02:00

19 lines
553 B
PHP

<?php
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
$class = '';
if($number < 0) {
$class = 'grd-negative-currency';
}
?><?php if(isset($raw) && true == $raw): ?>
<?= $this->Number->format(intval($number) / 10000.0, ['precision' => 2]) . ' GDD';?>
<?php else : ?>
<span class="<?php echo $class;?>">
<?= $this->Number->format(intval($number) / 10000.0, ['precision' => 2]) . ' GDD';?>
</span>
<?php endif; ?>