2006-12-22 18:45:32 +00:00
|
|
|
|
<?php
|
|
|
|
|
/*
|
|
|
|
|
+ ----------------------------------------------------------------------------+
|
|
|
|
|
| e107 website system
|
|
|
|
|
|
|
2009-09-22 18:28:49 +00:00
|
|
|
|
| <EFBFBD>Steve Dunstan 2001-2002
|
2006-12-22 18:45:32 +00:00
|
|
|
|
| http://e107.org
|
|
|
|
|
| jalist@e107.org
|
|
|
|
|
|
|
|
|
|
|
| Released under the terms and conditions of the
|
|
|
|
|
| GNU General Public License (http://gnu.org).
|
|
|
|
|
|
|
|
|
|
|
| $Source: /cvs_backup/e107_0.8/e107_plugins/tinymce/e_meta.php,v $
|
2009-10-12 06:38:01 +00:00
|
|
|
|
| $Revision: 1.6 $
|
|
|
|
|
| $Date: 2009-10-12 06:38:01 $
|
2006-12-22 18:45:32 +00:00
|
|
|
|
| $Author: e107coders $
|
|
|
|
|
+----------------------------------------------------------------------------+
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
if (!defined('e107_INIT')) { exit; }
|
|
|
|
|
|
2009-07-01 02:52:11 +00:00
|
|
|
|
if(e_WYSIWYG || strpos(e_SELF,"tinymce/admin_config.php"))
|
2006-12-22 18:45:32 +00:00
|
|
|
|
{
|
|
|
|
|
require_once(e_PLUGIN."tinymce/wysiwyg.php");
|
2009-10-12 06:38:01 +00:00
|
|
|
|
if(deftrue('TINYMCE_CONFIG'))
|
|
|
|
|
{
|
|
|
|
|
$wy = new wysiwyg(TINYMCE_CONFIG);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
$wy = new wysiwyg();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$wy -> render();
|
2006-12-22 18:45:32 +00:00
|
|
|
|
}
|
2009-07-10 14:27:31 +00:00
|
|
|
|
|
2006-12-22 18:45:32 +00:00
|
|
|
|
|
2007-09-09 06:58:46 +00:00
|
|
|
|
?>
|