Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
AI OnAI Off
Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
[GuiPlugIn(DisplayName="Test", Description="Test Tab", Area=PlugInArea.EditPanel, Url="~/test.ascx")]
public class TestTab : UserControlBase, ICustomPlugInLoader
{
#region ICustomPlugInLoader Members
public PlugInDescriptor[] List()
{
PlugInDescriptor pid = null;
if(this.CurrentPage.CheckPublishedStatus(PagePublishedStatus.Published))
pid = new PlugInDescriptor(1,"TestTab","TestProject");
return new PlugInDescriptor[] {pid};
}
#endregion
public PropertyNewsletter()
{
this.Visible = false;
}
}