Interface IHomepagePanelDescriptor
- 
- All Known Implementing Classes:
 AbstractHomepagePanelDescriptor
public interface IHomepagePanelDescriptor 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Deprecated Methods Modifier and Type Method Description java.lang.StringgetHelpResourceKey()Return the resource key for the panel's help blurb.java.lang.StringgetHelpTopicId()Deprecated.This method will no longer exist in future versions.intgetOrder()A relative ordering for this panel.java.lang.StringgetPanelName()A unique name for this panel.default java.lang.Iterable<java.lang.String>getSearchableItems()Return a list of names of items that will appear within this homepage panel that should show up in the site-wide searchjava.lang.StringgetTitleResourceKey()A resource key to use as the panel title.booleanisInitiallyExpanded()Should this panel be initially expanded or collapsed?booleanisVisible()Is this homepage visible?org.apache.wicket.markup.html.panel.PanelnewPanel(java.lang.String id)Create the new panel to display. 
 - 
 
- 
- 
Method Detail
- 
getPanelName
java.lang.String getPanelName()
A unique name for this panel. Used as a key to store preferences for the user to override this panel's settings. 
- 
getOrder
int getOrder()
A relative ordering for this panel. Lower numbers appear first. 
- 
getTitleResourceKey
java.lang.String getTitleResourceKey()
A resource key to use as the panel title. 
- 
isInitiallyExpanded
boolean isInitiallyExpanded()
Should this panel be initially expanded or collapsed? 
- 
newPanel
org.apache.wicket.markup.html.panel.Panel newPanel(java.lang.String id)
Create the new panel to display. 
- 
isVisible
boolean isVisible()
Is this homepage visible? 
- 
getHelpResourceKey
java.lang.String getHelpResourceKey()
Return the resource key for the panel's help blurb. 
- 
getHelpTopicId
@Deprecated java.lang.String getHelpTopicId()
Deprecated.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> 
- 
getSearchableItems
default java.lang.Iterable<java.lang.String> getSearchableItems()
Return a list of names of items that will appear within this homepage panel that should show up in the site-wide search 
 - 
 
 -