* @package WoltLabSuite\Core\Data\Search * @since 5.2 */ interface ICustomIconSearchResultObject extends ISearchResultObject { /** * Returns either a FontAwesome icon name including the `fa-` prefix or * a string that is interpreted as an URL to an image that can be scaled * to 48x48. Returning an empty string will trigger the default behavior. * * @return string */ public function getCustomSearchResultIcon(); }