Package org.dspace.app.xmlui.wing.element

Examples of org.dspace.app.xmlui.wing.element.List.addItemXref()


            if(displayUsageStats){
                statistics.addItemXref(contextPath + "/handle/" + dso.getHandle() + "/statistics", T_statistics_usage_view);
            }
            //Items cannot have search statistics
            if(displaySearchStats && dso.getType() != Constants.ITEM){
                statistics.addItemXref(contextPath + "/handle/" + dso.getHandle() + "/search-statistics", T_statistics_search_view);
            }
            //Items cannot have workflow statistics
            if(displayWorkflowStats && dso.getType() != Constants.ITEM){
                statistics.addItemXref(contextPath + "/handle/" + dso.getHandle() + "/workflow-statistics", T_statistics_workflow_view);
            }
View Full Code Here


            if(displaySearchStats && dso.getType() != Constants.ITEM){
                statistics.addItemXref(contextPath + "/handle/" + dso.getHandle() + "/search-statistics", T_statistics_search_view);
            }
            //Items cannot have workflow statistics
            if(displayWorkflowStats && dso.getType() != Constants.ITEM){
                statistics.addItemXref(contextPath + "/handle/" + dso.getHandle() + "/workflow-statistics", T_statistics_workflow_view);
            }

        }else{
            // This Navigation is only called either on a DSO related page, or the homepage
            // If on the home page: add statistics link for the home page
View Full Code Here

        }else{
            // This Navigation is only called either on a DSO related page, or the homepage
            // If on the home page: add statistics link for the home page
            statistics.setHead(T_statistics_head);
            if(displayUsageStats){
                statistics.addItemXref(contextPath + "/statistics-home", T_statistics_usage_view.parameterize());
            }
            if(displaySearchStats){
                statistics.addItemXref(contextPath + "/search-statistics", T_statistics_search_view);
            }
            if(displayWorkflowStats){
View Full Code Here

            statistics.setHead(T_statistics_head);
            if(displayUsageStats){
                statistics.addItemXref(contextPath + "/statistics-home", T_statistics_usage_view.parameterize());
            }
            if(displaySearchStats){
                statistics.addItemXref(contextPath + "/search-statistics", T_statistics_search_view);
            }
            if(displayWorkflowStats){
                statistics.addItemXref(contextPath + "/workflow-statistics", T_statistics_workflow_view);
            }
        }
View Full Code Here

            }
            if(displaySearchStats){
                statistics.addItemXref(contextPath + "/search-statistics", T_statistics_search_view);
            }
            if(displayWorkflowStats){
                statistics.addItemXref(contextPath + "/workflow-statistics", T_statistics_workflow_view);
            }
        }


    }
View Full Code Here

        actions.setHead(T_actions_head);

        // Browse Epeople
        List actionsList = actions.addList("actions");
        actionsList.addLabel(T_actions_create);
        actionsList.addItemXref(baseURL + "&submit_add", T_actions_create_link);
        actionsList.addLabel(T_actions_browse);
        actionsList.addItemXref(baseURL + "&query&submit_search",
                T_actions_browse_link);

        actionsList.addLabel(T_actions_search);
View Full Code Here

        // Browse Epeople
        List actionsList = actions.addList("actions");
        actionsList.addLabel(T_actions_create);
        actionsList.addItemXref(baseURL + "&submit_add", T_actions_create_link);
        actionsList.addLabel(T_actions_browse);
        actionsList.addItemXref(baseURL + "&query&submit_search",
                T_actions_browse_link);

        actionsList.addLabel(T_actions_search);
        org.dspace.app.xmlui.wing.element.Item actionItem = actionsList.addItem();
        Text queryField = actionItem.addText("query");
View Full Code Here

        {
            options.addItem().addHighlight("bold").addXref("?java", T_option_java);
        }
        else
        {
            options.addItemXref("?java", T_option_java);
        }

        if (option == OPTIONS.dspace)
        {
            options.addItem().addHighlight("bold").addXref("?dspace", T_option_dspace);
View Full Code Here

        {
            options.addItem().addHighlight("bold").addXref("?dspace", T_option_dspace);
        }
        else
        {
            options.addItemXref("?dspace", T_option_dspace);
        }

        if (option == OPTIONS.alerts)
        {
            options.addItem().addHighlight("bold").addXref("?alerts", T_option_alerts);
View Full Code Here

        {
            options.addItem().addHighlight("bold").addXref("?alerts", T_option_alerts);
        }
        else
        {
            options.addItemXref("?alerts", T_option_alerts);
        }

        if (option == OPTIONS.harvest)
        {
            options.addItem().addHighlight("bold").addXref("?harvest", T_option_harvest);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.