extpoint-yii2
Version:
JavaScript part for projects on ExtPoint Yii2 Boilerplate and yii2-core
23 lines (17 loc) • 371 B
JavaScript
export default class Enum {
static getLabels() {
return {};
}
static getKeys() {
return Object.keys(this.getLabels());
}
static getLabel(id) {
return this.getLabels()[id] || '';
}
static getCssClasses() {
return {};
}
static getCssClass(id) {
return this.getCssClasses()[id] || '';
}
}