CreditModel::getTypeList PHP Method

getTypeList() public method

获取积分类型列表
public getTypeList ( ) : [type]
return [type]
    public function getTypeList()
    {
        $arr = array();
        foreach ($this->creditType as $value) {
            $arr[$value['name']] = $value['alias'];
        }
        return $arr;
    }