redactor2
4.2.1
يتم تحويل مناطق النص ذات الفئة redactorEditor2-%profileName%
تلقائيًا من حقل إدخال نص عادي إلى محرر WYSIWYG، على سبيل المثال. ب. <textarea class="redactorEditor2-full"></textarea>
، في مناطق النص yForm في حقل "السمات الفردية": {"class":"redactorEditor2-full"}
يمكن إنشاء ملفات تعريف مختلفة بإعدادات تكوين مختلفة لمحرر Redactor في الواجهة الخلفية.
هناك خيار لمنح المحرر أنماط CSS الخاصة بك. كل ما عليك فعله هو إنشاء ملف باسم skin.css
في المجلد /assets/addons/ redactor2
.
إدخال الوحدة:
< fieldset class =" form-horizontal " >
< div class =" form-group " >
< label class =" col-sm-2 control-label " for =" value-1 " > VALUE 1 </ label >
< div class =" col-sm-10 " >
< textarea class =" form-control redactorEditor2-full " id =" value-1 " name =" REX_INPUT_VALUE[1] " > REX_VALUE[1] </ textarea >
</ div >
</ div >
</ fieldset >
إخراج الوحدة:
REX_VALUE [id= " 1 " output= " html " ]
قم بإنشاء ملف تعريف عبر الوحدة النمطية أو الوظيفة الإضافية:
<?php
if (! redactor2 :: profileExists ( ' simple ' )) {
redactor2 :: insertProfile ( ' simple ' , $ description = '' , $ minheight = ' 300 ' , $ maxheight = ' 800 ' , $ urltype = ' relative ' , $ characterlimit = 0 , $ toolbarfixed = 0 , $ shortcuts = 0 , $ linkify = 1 , $ redactorPlugins = '' );
}
?>