I am building a GUI extension using SDL Tridion 2011 SP1. I want to collect some user input when an editor hits a new "Save and Comment" button. This button will collect some user input, and then trigger the built in save commands of the CME.
Then using an Event Handler I would like to catch that user input, and do some custom processing with it. My simple event handler is as follows:
using System;
using System.Text;
using Tridion.ContentManager.Extensibility.Events;
using Tridion.ContentManager.Extensibility;
using Tridion.ContentManager.ContentManagement;
using System.IO;
namespace UrbanCherry.Net.SDLTridion.EventHandlers
{
[TcmExtension("VersionCommenting")]
public class VersionCommenting : TcmExtension
{
public VersionCommenting()
{
Subscribe();
}
public void Subscribe()
{
EventSystem.Subscribe<Component, SaveEventArgs>(AddCommentToItemVersion,
EventPhases.Initiated);
}
private void AddCommentToItemVersion(Component source, SaveEventArgs args,
EventPhases phase)
{
//Do some work here
}
}
}
Is it possible for my GUI extension to somehow add values to the SaveEventArgs, either using the args.ContextVariables or some other method?