__('Type 0'), '1' => __('Type 1'), '2' => __('Type 2'), '3' => __('Type 3'), '4' => __('Type 4')]; } public function getWithdrawtypeList() { return ['0' => __('Withdrawtype 0'), '1' => __('Withdrawtype 1')]; } public function getStateList() { return ['-1' => __('State -1'), '0' => __('State 0'), '1' => __('State 1'), '2' => __('State 2')]; } public function getTypeTextAttr($value, $data) { $value = $value ? $value : (isset($data['type']) ? $data['type'] : ''); $list = $this->getTypeList(); return isset($list[$value]) ? $list[$value] : ''; } public function getWithdrawtypeTextAttr($value, $data) { $value = $value ? $value : (isset($data['withdrawtype']) ? $data['withdrawtype'] : ''); $list = $this->getWithdrawtypeList(); return isset($list[$value]) ? $list[$value] : ''; } public function getStateTextAttr($value, $data) { $value = $value ? $value : (isset($data['state']) ? $data['state'] : ''); $list = $this->getStateList(); return isset($list[$value]) ? $list[$value] : ''; } }