__('Category 1'), '2' => __('Category 2')]; } public function getTypeList() { return ['0' => __('Type 0'), '1' => __('Type 1'), '2' => __('Type 2'), '3' => __('Type 3')]; } public function getCategoryTextAttr($value, $data) { $value = $value ? $value : (isset($data['category']) ? $data['category'] : ''); $list = $this->getCategoryList(); return isset($list[$value]) ? $list[$value] : ''; } public function getTypeTextAttr($value, $data) { $value = $value ? $value : (isset($data['type']) ? $data['type'] : ''); $list = $this->getTypeList(); return isset($list[$value]) ? $list[$value] : ''; } }