Welcome Guest, Not a member yet? Register   Sign In
Don't redirect
#4

[eluser]mikevu[/eluser]
Hello,
Thank you for your help.
I intergate a plugin for fckeditor, When I config to autoload the plugin, it can't redirect.
Please help me to solution.

Thank

This is the plugin
<?php
if (!defined('BASEPATH')) exit('No direct script access allowed');

include_once( BASEPATH . '/helpers/form_helper'.EXT);

function form_fckeditor($data = '', $value = '', $extra = '')
{

$CI =& get_instance();

$fckeditor_basepath = $CI->config->item('fckeditor_basepath');
require_once( $_SERVER["DOCUMENT_ROOT"] . $fckeditor_basepath. 'fckeditor.php' );

$instanceName = ( is_array($data) && isset($data['name']) ) ? $data['name'] : $data;
$fckeditor = new FCKeditor($instanceName);

if( $fckeditor->IsCompatible() )
{
$fckeditor->Value = html_entity_decode($value);
$fckeditor->BasePath = $fckeditor_basepath;
if( $fckeditor_toolbarset = $CI->config->item('fckeditor_toolbarset_default'))
$fckeditor->ToolbarSet = $fckeditor_toolbarset;

if( is_array($data) )
{
if( isset($data['value']) )
$fckeditor->Value = html_entity_decode($data['value']);
if( isset($data['basepath']) )
$fckeditor->BasePath = $data['basepath'];
if( isset($data['toolbarset']) )
$fckeditor->ToolbarSet = $data['toolbarset'];
if( isset($data['width']) )
$fckeditor->Width = $data['width'];
if( isset($data['height']) )
$fckeditor->Height = $data['height'];
}

return $fckeditor->CreateHtml();
}
else
{
return form_textarea( $data, $value, $extra );
}

}

?>


Messages In This Thread
Don't redirect - by El Forum - 07-01-2009, 12:30 PM
Don't redirect - by El Forum - 07-01-2009, 12:46 PM
Don't redirect - by El Forum - 07-01-2009, 03:58 PM
Don't redirect - by El Forum - 07-03-2009, 01:36 AM
Don't redirect - by El Forum - 07-03-2009, 05:19 AM
Don't redirect - by El Forum - 07-05-2009, 04:36 AM



Theme © iAndrew 2016 - Forum software by © MyBB