If you are using the templates from DNNJungle this property is already in place if not you'll have to create it.
Public ReadOnly Property ModuleActions() As Entities.Modules.Actions.ModuleActionCollection Implements Entities.Modules.IActionable.ModuleActions
Get
'Dim Actions As New Entities.Modules.Actions.ModuleActionCollection
Actions.Add(GetNextActionID,
Localization.GetString("SomeActionName.Edit", LocalResourceFile),
Entities.Modules.Actions.ModuleActionType.AddContent,
"", "", EditUrl("SomeEditFileKeyName"),
False, DotNetNuke.Security.SecurityAccessLevel.Edit, True, False)
Return Actions
End Get
End Property
If you are using Localization then you will put "SomeActionName.Edit" in the Localization file along with a Value.
The String Value inside EditURL() will be the Key as defined in your Module Definitions.
Good Luck.
matchbx