Your IP : 216.73.216.79


Current Path : /var/www/html/ssr26/frontend/runtime/frontendpage/
Upload File :
Current File : /var/www/html/ssr26/frontend/runtime/frontendpage/2_1775031802044347500-theme-setup.php

<?php 
/*** THEME_SETUP ***/
use yii\helpers\Url;

$name = "DYNAWEB4 DYNAPortal";
$baseUrl = Url::base(true);

function displaymoney($number){
    if ($number < 1000) {
        // Anything less than a million
        $format = number_format($number, 2);
    } else if ($number < 1000000) {
        // Anything less than a thousand
         $format = number_format($number / 1000, 2) . ' ribu';
    }else if ($number < 1000000000) {
        // Anything less than a billion
        $format = number_format($number / 1000000, 2) . ' juta';
    } else {
        // At least a billion
        $format = number_format($number / 1000000000, 2) . ' bilion';
    }
                        
    return $format;
}
?>