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.
|
|
|
package com.fr.design.actions.community;
|
|
|
|
|
|
|
|
import com.fr.design.i18n.LocaleLinkProvider;
|
|
|
|
import com.fr.design.i18n.Toolkit;
|
|
|
|
import com.fr.design.login.AbstractDesignerSSO;
|
|
|
|
|
|
|
|
public class StudyPlanAction extends AbstractDesignerSSO {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 云中心帆软学院在配置文件中对应的配置文件key
|
|
|
|
*/
|
|
|
|
private static final String PROPS_LINK_KEY = "Fine-Design-CloudCenter_Study";
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 云中心帆软学院默认链接在配置文件中对应的配置文件key
|
|
|
|
*/
|
|
|
|
private static final String PROPS_LINK_KEY_DEFAULT = "Fine-Design-CloudCenter_Study_Default";
|
|
|
|
|
|
|
|
public StudyPlanAction() {
|
|
|
|
this.setName(Toolkit.i18nText("Fine-Design_Study_Plan"));
|
|
|
|
this.setSmallIcon("/com/fr/design/images/bbs/studyPlan");
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public String getJumpUrl() {
|
|
|
|
return LocaleLinkProvider.getInstance().getLink(PROPS_LINK_KEY ,PROPS_LINK_KEY_DEFAULT);
|
|
|
|
}
|
|
|
|
}
|