You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
838 B
36 lines
838 B
package com.fr.plugin.theme.topMenu.bean; |
|
|
|
import com.fr.decision.fun.impl.AbstractThemeVariousProvider; |
|
import com.fr.decision.web.MainComponent; |
|
import com.fr.plugin.transform.FunctionRecorder; |
|
import com.fr.stable.fun.Authorize; |
|
import com.fr.web.struct.Atom; |
|
|
|
@Authorize(callSignKey = "com.eco.plugin.xxxx.theme.topMenu") |
|
@FunctionRecorder |
|
public class Theme extends AbstractThemeVariousProvider { |
|
@Override |
|
public String name() { |
|
return "顶部菜单主题"; |
|
} |
|
|
|
@Override |
|
public String text() { |
|
return "navigation"; |
|
} |
|
|
|
@Override |
|
public String coverPath() { |
|
return "/com/fr/plugin/theme/topMenu/js/cover.png"; |
|
} |
|
|
|
@Override |
|
public Atom attach() { |
|
return MainComponent.KEY; |
|
} |
|
|
|
@Override |
|
public Atom client() { |
|
return ThemeAtom.KEY; |
|
} |
|
}
|
|
|