Forums / National / Turkish / Eski Konular / Textboxer entegre

fedai
#9950 2009-03-14 01:32
# oc : Çok basit. Textboxer'la ilgili bölümlerde textboxer plugin dosyaları çağırılıyor, genelde:

require_once('textboxer2.php');

benzeri bir olay ile oluyor bu. Onu kaldıracaksınız, ya da yorum haline (kodun önüne // koyarak) getireceksiniz, sonra bir de textboxer'ın textboxer yaratma fonksiyonu var, atıyorum

textboxer('ryazi', $yazi_icerigi);

gibi. bu genelde şöyle ekrana yazdırılıyor:

"PLUGIN_TEXTBOXER" => $fonksiyon;

siz bunun yerine

"PLUGIN_TEXTBOXER" = > '<textarea name='ryazi' class='editor'>'.$yazi_icerik.'</textarea>',

gibi birşey yazacaksınız ve editör tamamen değişecek.
Teşekkürler

Peki bunu nasıl yapacaz?
<?PHP
/* ====================
Seditio - Website engine
Copyright Neocrome
http://www.neocrome.net

[BEGIN_SED]
File=plugins/textboxer2/tb2.faq.php
Version=2.5
Updated=2008-Apr-21
Author=Arkkimaagi
Description=Textboxer extension for T3 Faq
[END_SED]
==================== */

if (!defined('SED_CODE')) { die('Wrong URL.'); }

require_once("plugins/textboxer2/inc/textboxer2.lang.php");
require_once("plugins/textboxer2/inc/textboxer2.inc.php");

	$tb2Buttons = array(
		'tb_ieOnlyStart',
			2,
				'copy',
				'cut',
				'paste',
			'}',
		'tb_ieOnlyEnd',

		'bold',
		'underline',
		'italic',

		3,
			'left',
			'center',
			'right',
		'}',

		4,
			'quote',
			'spoiler',			
			'code',
			'list',
			'hr',
			'spacer',
			'ac',
			'p',
		'}',

		5,
			'image',
			'thumb',
			'colleft',
			'colright',
		'}',

		6,
			'url',
//			'urlp',
			'email',
//			'emailp',
		'}',

		7,
			'black',
			'grey',
			'sea',
			'blue',
			'sky',
			'green',
			'yellow',
			'orange',
			'red',
			'white',
			'pink',
			'purple',
		'}',

		8,
			'page',
//			'pagep',
			'user',
//			'link',
//			'linkp',
			'flag',
			'pfs',
			'topic',
			'post',
			'pm',
		'}',

		1,
			'smilies',
		'}',
		'more',
		//'title',
		'preview'
	);

$tb2DropdownIcons = array(-1,49,1,7,10,15,19,23,35);
$tb2MaxSmilieDropdownHeight = 300; 	// Height in px for smilie dropdown
$tb2InitialSmilieLimit = 20;		// Smilies loaded by default to dropdown
$tb2TextareaRows = 10;				// Rows of the textarea
$tb2ParseBBcodes = T3FAQ_BBCODE;
$tb2ParseSmilies = T3FAQ_SMILIES;
$tb2ParseBR = T3FAQ_LINEBRAKE;
?>


Added 291 days later:

if (!defined('SED_CODE')) { die('Wrong URL.'); }
require_once("plugins/textboxer2/inc/textboxer2.lang.php");
require_once("plugins/textboxer2/inc/textboxer2.inc.php");

	$tb2Buttons = array(
		'tb_ieOnlyStart',
			2,
				'copy',
				'cut',
				'paste',
			'}',
		'tb_ieOnlyEnd',

		'bold',
		'underline',
		'italic',

		3,
			'left',
			'center',
			'right',
		'}',

		4,
			'quote',
			'code',
			'list',
			'hr',
			'spacer',
			'ac',
			'p',
		'}',

		5,
			'image',
			'thumb',
			'colleft',
			'colright',
		'}',

		6,
			'url',
//			'urlp',
			'email',
//			'emailp',
		'}',

		7,
			'black',
			'grey',
			'sea',
			'blue',
			'sky',
			'green',
			'yellow',
			'orange',
			'red',
			'white',
			'pink',
			'purple',
		'}',

		8,
			'page',
//			'pagep',
			'user',
//			'link',
//			'linkp',
			'flag',
			'pfs',
			'topic',
			'post',
			'pm',
		'}',

		1,
			'smilies',
		'}',
		'more',
		//'title',
		'preview'
	);

$tb2DropdownIcons = array(-1,49,1,7,10,15,19,23,35);
$tb2MaxSmilieDropdownHeight = 300; 	// Height in px for smilie dropdown
$tb2InitialSmilieLimit = 20;		// Smilies loaded by default to dropdown
$tb2TextareaRows = 10;				// Rows of the textarea
Bir eklentiye bu dosya tanımlanmış, bunu nasıl entegre edicem?
"peace in the homeland, peace in the world" K.ATATÜRK

personal blog:
http://www.sametbal.net
This post was edited by fedai (2010-01-09 21:43, 14 years ago)