/var/www/(Del)gepgroup.hk/member/default_values.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php
function getDefaultValues()
{
    return array(
        
'order_status' => array(
            
'status' => array(
            
// Database value => Display value
                
=> 'Awaiting',
                
=> 'Cancellation',
                
=> 'Complete',
            ),
            
'progress_rate' => array(
            
// status => sparkline value
                
=> 20,
                
=> 5,
                
=> 100,
            ),
        ),
    );
}
?>