Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getThemeHelper (0.13 sec)

  1. src/main/java/org/codelibs/fess/helper/PluginHelper.java

        }
    
        public void installArtifact(final Artifact artifact) {
            switch (artifact.getType()) {
            case THEME:
                install(artifact);
                ComponentUtil.getThemeHelper().install(artifact);
                break;
            default:
                install(artifact);
                break;
            }
        }
    
        protected void install(final Artifact artifact) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Oct 24 01:47:10 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/util/ComponentUtil.java

            return getComponent(LANGUAGE_HELPER);
        }
    
        public static PluginHelper getPluginHelper() {
            return getComponent(PLUGIN_HELPER);
        }
    
        public static ThemeHelper getThemeHelper() {
            return getComponent(THEME_HELPER);
        }
    
        public static SearchHelper getSearchHelper() {
            return getComponent(SEARCH_HELPER);
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Mon Jun 17 13:35:51 UTC 2024
    - 20.2K bytes
    - Viewed (0)
Back to top