форма для добавления верстки html

This commit is contained in:
Daniil 2022-10-21 17:33:20 +03:00
parent df08cfaa60
commit 08bc587126
2 changed files with 6 additions and 2 deletions

View file

@ -45,6 +45,9 @@ class THidden extends Form_Input {
class TComponentBrowserInput extends Form_Input { class TComponentBrowserInput extends Form_Input {
} }
// вставка простого html
class Html_Text extends Form_Field {
}
/** /**
* Форма для ввода * Форма для ввода
*/ */
@ -94,7 +97,8 @@ class Form_Form extends View_View {
'filebrowser' => 'TComponentBrowserInput', 'filebrowser' => 'TComponentBrowserInput',
'documents' => 'TComponentBrowserInput', 'documents' => 'TComponentBrowserInput',
'chooser' => 'Form_Input', 'chooser' => 'Form_Input',
'select_chooser' => 'Form_SelectOne' 'select_chooser' => 'Form_SelectOne',
'html_text' => 'Html_Text'
); );
} }

View file

@ -47,7 +47,7 @@ class Settings extends Collection
} }
/** /**
* Запись ключа в реестр (Реестр это могомерный массив) * Запись ключа в реестр (Реестр это многомерный массив)
*/ */
public function writeKey(array $key, $value) public function writeKey(array $key, $value)
{ {