Advertisement
Trigub_Ilia

Битриксовый виз. редактор

Oct 19th, 2018
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.02 KB | None | 0 0
  1. <?
  2. CModule::IncludeModule("fileman");/* подключаем модуль */
  3. $LHE = new CLightHTMLEditor;
  4. $LHE->Show(array(
  5.     'id' => preg_replace("/[^a-z0-9]/i", '', "PROPERTY[".$propertyID."][0]"),/* id поля */
  6.     /* размеры поля */
  7.     'width' => '100%',
  8.     'height' => '200px',
  9.     'inputName' => "text_send",/* имя поля */
  10.     'content' => $_POST['text_send'],/* текст в поле по-умолчанию */
  11.     'bUseFileDialogs' => false,
  12.     'bFloatingToolbar' => false,
  13.     'bArisingToolbar' => false,
  14.     'toolbarConfig' => array(/* кнопки редактирования */
  15.         'Bold', 'Italic', 'Underline', 'RemoveFormat', 'Code', 'Source', 'Video', 'Html',
  16.         'CreateLink', 'DeleteLink', 'Image', 'Video',
  17.         'BackColor', 'ForeColor',
  18.         'JustifyLeft', 'JustifyCenter', 'JustifyRight', 'JustifyFull',
  19.         'InsertOrderedList', 'InsertUnorderedList', 'Outdent', 'Indent',
  20.         'StyleList', 'HeaderList',
  21.         'FontList', 'FontSizeList',
  22.     ),
  23. ));
  24. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement