vanilla-wow-addons – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 --[[---------------------------------------------------------------------------------
2 This is a template for the plugin/module system for Clique.
3  
4 Plugins are typically used to tie Clique to a specific set of unit frames, but
5 can also be used to add functionality to the system through a manner of hooks.
6  
7 Plugins are registered with Clique with a shortname that is used for all slash
8 commands. In addition they are required to have a fullname parameter that is
9 used in all display messages
10 ----------------------------------------------------------------------------------]]
11  
12 -- Create a new plugin for Clique, with the shortname "test"
13 local Plugin = Clique:NewModule("ora2mtf")
14 Plugin.fullname = "oRA2_MainTankFrames"
15  
16 -- Plugin:Test() is called anytime the mod tries to enable. It is optional
17 -- but it will be checked if it exists. Will typically be based off some global
18 -- or the state of the addon itself.
19 function Plugin:Test()
20 return oRADB
21 end
22  
23 -- Plugin:OnEnable() is called if Plugin:Test() is true, and the mod hasn't been explicitly
24 -- disabled. This is where you should handle all your hooks, etc.
25 function Plugin:OnEnable()
26 oRA_MainTankFramesCustomClick = self.OnClick
27 end
28  
29 -- Plugin:OnDisable() is called if the mod is enabled and its being explicitly disabled.
30 -- This function is optional. If it doesn't exist, Plugin:UnregisterAllEvents() and
31 -- Plugin:UnregisterAllHooks().
32 function Plugin:Disable()
33 oRA_MainTankFramesCustomClick = nil
34 end
35  
36 function Plugin.OnClick(button, unit)
37 if not Clique:OnClick(button, unit) then
38 if button == "LeftButton" then
39 TargetUnit(unit.."target")
40 end
41 end
42 end