Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for RelatedContent (0.25 sec)

  1. src/main/java/org/codelibs/fess/es/config/bsbhv/BsRelatedContentBhv.java

            return createOptionalEntity(doSelectByPK(id, tp), id);
        }
    
        @Override
        protected Class<? extends RelatedContent> typeOfSelectedEntity() {
            return RelatedContent.class;
        }
    
        @Override
        protected Class<RelatedContent> typeOfHandlingEntity() {
            return RelatedContent.class;
        }
    
        @Override
        protected Class<RelatedContentCB> typeOfHandlingConditionBean() {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/RelatedContentDbm.java

        {
            setupEpg(_epgMap, et -> ((RelatedContent) et).getContent(), (et, vl) -> ((RelatedContent) et).setContent(DfTypeUtil.toString(vl)),
                    "content");
            setupEpg(_epgMap, et -> ((RelatedContent) et).getCreatedBy(),
                    (et, vl) -> ((RelatedContent) et).setCreatedBy(DfTypeUtil.toString(vl)), "createdBy");
            setupEpg(_epgMap, et -> ((RelatedContent) et).getCreatedTime(),
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/relatedcontent/AdminRelatedcontentAction.java

        private static OptionalEntity<RelatedContent> getEntity(final CreateForm form, final String username, final long currentTime) {
            switch (form.crudMode) {
            case CrudMode.CREATE:
                return OptionalEntity.of(new RelatedContent()).map(entity -> {
                    entity.setCreatedBy(username);
                    entity.setCreatedTime(currentTime);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 13.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/action/FessHtmlPath.java

        /** The path of the HTML: /admin/relatedcontent/admin_relatedcontent.jsp */
        HtmlNext path_AdminRelatedcontent_AdminRelatedcontentJsp = new HtmlNext("/admin/relatedcontent/admin_relatedcontent.jsp");
    
        /** The path of the HTML: /admin/relatedcontent/admin_relatedcontent_details.jsp */
        HtmlNext path_AdminRelatedcontent_AdminRelatedcontentDetailsJsp =
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 26.4K bytes
    - Viewed (2)
  5. src/main/webapp/WEB-INF/view/common/admin/sidebar.jsp

    							<p><la:message key="labels.menu_boost_document_rule" /></p>
    						</a></li></c:if>
    						
    					<c:if test="${fe:permission('admin-relatedcontent-view')}">
    					<li class="nav-item">
    						<a href="${fe:url('/admin/relatedcontent/')}"
    						   class="nav-link <c:if test="${param.menuType=='relatedContent'}">active</c:if>">
    							<em class='fa fa-genderless nav-icon'>
    							<p><la:message key="labels.menu_related_content" /></p>
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Apr 15 20:55:28 GMT 2021
    - 17.8K bytes
    - Viewed (0)
  6. src/main/resources/fess_config.properties

    online.help.name.log=log
    online.help.name.general=general
    online.help.name.role=role
    online.help.name.joblog=joblog
    online.help.name.keymatch=keymatch
    online.help.name.relatedquery=relatedquery
    online.help.name.relatedcontent=relatedcontent
    online.help.name.wizard=wizard
    online.help.name.badword=badword
    online.help.name.pathmap=pathmap
    online.help.name.boostdoc=boostdoc
    online.help.name.dataconfig=dataconfig
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 30.6K bytes
    - Viewed (1)
  7. src/main/java/org/codelibs/fess/app/web/admin/AdminAction.java

    import org.codelibs.fess.app.web.admin.pathmap.AdminPathmapAction;
    import org.codelibs.fess.app.web.admin.plugin.AdminPluginAction;
    import org.codelibs.fess.app.web.admin.relatedcontent.AdminRelatedcontentAction;
    import org.codelibs.fess.app.web.admin.relatedquery.AdminRelatedqueryAction;
    import org.codelibs.fess.app.web.admin.reqheader.AdminReqheaderAction;
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 18.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/SystemHelper.java

            updateConfigListenerMap.put("PathMapping", () -> Integer.toString(ComponentUtil.getPathMappingHelper().load()));
            updateConfigListenerMap.put("RelatedContent", () -> Integer.toString(ComponentUtil.getRelatedContentHelper().load()));
            updateConfigListenerMap.put("RelatedQuery", () -> Integer.toString(ComponentUtil.getRelatedQueryHelper().load()));
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Apr 13 11:43:03 GMT 2024
    - 26.5K bytes
    - Viewed (2)
Back to top