Interface IHomepagePanelDescriptor
- All Known Implementing Classes:
- AbstractHomepagePanelDescriptor
public interface IHomepagePanelDescriptor
- 
Method SummaryModifier and TypeMethodDescriptionReturn the resource key for the panel's help blurb.Deprecated.This method will no longer exist in future versions.intgetOrder()A relative ordering for this panel.A unique name for this panel.Return a list of names of items that will appear within this homepage panel that should show up in the site-wide searchA resource key to use as the panel title.booleanShould this panel be initially expanded or collapsed?booleanIs this homepage visible?org.apache.wicket.markup.html.panel.PanelCreate the new panel to display.
- 
Method Details- 
getPanelNameString getPanelName()A unique name for this panel. Used as a key to store preferences for the user to override this panel's settings.
- 
getOrderint getOrder()A relative ordering for this panel. Lower numbers appear first.
- 
getTitleResourceKeyString getTitleResourceKey()A resource key to use as the panel title.
- 
isInitiallyExpandedboolean isInitiallyExpanded()Should this panel be initially expanded or collapsed?
- 
newPanelCreate the new panel to display.
- 
isVisibleboolean isVisible()Is this homepage visible?
- 
getHelpResourceKeyString getHelpResourceKey()Return the resource key for the panel's help blurb.
- 
getHelpTopicIdDeprecated.This method will no longer exist in future versions.Return the name of the user manual topic to link to. The string ${HELP} will be replaced to a url to this help topic if found in the content pointed to by the help resource key. For example, the help blurb might be:This panel is great. You should use it lots. <a href="${HELP}">Learn more...</a>
- 
getSearchableItemsReturn a list of names of items that will appear within this homepage panel that should show up in the site-wide search
 
-