/**
  * Instantiates the template.
  * It creates a {@link TLinkButton}.
  * @param TControl parent to hold the content within the template
  */
 public function instantiateIn($parent)
 {
     $button = new TLinkButton();
     $button->setID(TWizard::ID_SIDEBAR_BUTTON);
     $parent->getControls()->add($button);
 }