Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/main/webapp/WEB-INF/fe.tld

      <uri>fess.tags.functions</uri>
      
      <function>
        <description>
          Returns a label name.
        </description>
        <name>labelexists</name>
        <function-class>org.codelibs.fess.taglib.FessFunctions</function-class>
        <function-signature>java.lang.Boolean labelExists(java.lang.String)</function-signature>
        <example>
          ${fe:labelexists("value")}
        </example>
      </function>
    
      <function>
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Dec 23 06:18:48 UTC 2023
    - 10K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/taglib/FessFunctions.java

                        }
                        return 0L;
                    }
                });
    
        protected FessFunctions() {
            // nothing
        }
    
        public static Boolean labelExists(final String value) {
            return LaRequestUtil.getOptionalRequest().map(req -> {
                @SuppressWarnings("unchecked")
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 16.9K bytes
    - Viewed (0)
Back to top