Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getNotificationSearchTop (0.26 sec)

  1. src/main/java/org/codelibs/fess/app/web/RootAction.java

                op.setup(form -> {
                    buildFormParams(form);
                });
            }).renderWith(data -> {
                buildInitParams();
                RenderDataUtil.register(data, "notification", fessConfig.getNotificationSearchTop());
            });
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/search/SearchAction.java

            }
            validate(form, messages -> {}, () -> asHtml(virtualHost(path_IndexJsp)).renderWith(data -> {
                buildInitParams();
                RenderDataUtil.register(data, "notification", fessConfig.getNotificationSearchTop());
            }));
            if (!form.hasConditionQuery()) {
                if (StringUtil.isNotBlank(form.q)) {
                    form.as.put("q", new String[] { form.q });
                } else {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/general/AdminGeneralAction.java

            form.ldapMemberofAttribute = fessConfig.getLdapMemberofAttribute();
            form.notificationLogin = fessConfig.getNotificationLogin();
            form.notificationSearchTop = fessConfig.getNotificationSearchTop();
            form.storageEndpoint = fessConfig.getStorageEndpoint();
            form.storageAccessKey = StringUtil.isNotBlank(fessConfig.getStorageAccessKey()) ? DUMMY_PASSWORD : StringUtil.EMPTY;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

        }
    
        default void setNotificationSearchTop(final String value) {
            setSystemProperty(Constants.NOTIFICATION_SEARCH_TOP, value);
        }
    
        default String getNotificationSearchTop() {
            return getSystemProperty(Constants.NOTIFICATION_SEARCH_TOP, StringUtil.EMPTY);
        }
    
        default String getUserAgentName() {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 85K bytes
    - Viewed (0)
Back to top