Пример #1
0
 /**
  * Initializes the html code content form
  */
 protected function InitForm()
 {
     $this->htmlCode = $this->LoadElement();
     $name = 'Code';
     $this->AddField(new Textarea($name, $this->htmlCode->GetCode()));
     $this->SetRequired($name);
     $this->AddCssClassField();
     $this->AddCssIDField();
     $this->AddSubmit();
 }