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 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 |
--Things added to the top section stack downward
-- Does the addon have a dependency?
topSection : AddLine ( ZO_ERROR_COLOR : Colorize ( GetString ( "SI_ADDONLOADSTATE" , ADDON_STATE_DEPENDENCIES_DISABLED ) ) )
end
-- Is the addon out of date?
if isOutOfDate then
end
-- Determine whether the addon is enabled or disabled
local showEnabled
if isSpecificCharacterSelected then
else
end
if showEnabled then
else
end
--Add the addon name
--Add the author
--Add the description if there is one
end
-- Add the dependency text if there is any
end
-- If a specific character is not selected, include additional information about the enabled state of the addon
if not isSpecificCharacterSelected then
enableSection : AddLine ( GetString ( SI_ADDON_MANAGER_TOOLTIP_ENABLED_ALL ) , self : GetStyle ( "bodyDescription" ) )
enableSection : AddLine ( GetString ( SI_ADDON_MANAGER_TOOLTIP_ENABLED_NONE ) , self : GetStyle ( "bodyDescription" ) )
else
enableSection : AddLine ( GetString ( SI_ADDON_MANAGER_TOOLTIP_ENABLED_SOME ) , self : GetStyle ( "bodyDescription" ) )
end
end
end |