001
014
015 package com.liferay.portlet.sitesadmin;
016
017 import com.liferay.portal.model.Group;
018 import com.liferay.portal.theme.ThemeDisplay;
019 import com.liferay.portlet.expando.model.BaseCustomAttributesDisplay;
020
021
024 public class SiteCustomAttributesDisplay extends BaseCustomAttributesDisplay {
025
026 public static final String CLASS_NAME = Group.class.getName();
027
028 @Override
029 public String getClassName() {
030 return CLASS_NAME;
031 }
032
033 @Override
034 public String getIconPath(ThemeDisplay themeDisplay) {
035 return themeDisplay.getPathThemeImages() + "/common/site_icon.png";
036 }
037
038 }