1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
------------------
-- Guild Finder --
------------------
ZO_GuildRecruitment_ApplicationsDefaultMessage_Keyboard = ZO_GuildRecruitment_Panel_Shared : Subclass ( )
end
self . messageBox : RegisterCallback ( "Save" , function ( text ) GUILD_RECRUITMENT_MANAGER : SetSavedApplicationsDefaultMessage ( self . guildId , text ) end )
end
local messageBoxText = type ( self . savedMessageFunction ) == "function" and self . savedMessageFunction ( ) or ""
end
-- XML Functions
-----------------
GUILD_RECRUITMENT_APPLICATIONS_KEYBOARD : SetSubcategoryManager ( ZO_GUILD_RECRUITMENT_APPLICATIONS_SUBCATEGORY_KEYBOARD_MESSAGE , ZO_GuildRecruitment_ApplicationsDefaultMessage_Keyboard : New ( control ) )
end |