1
0
mirror of https://github.com/e107inc/e107.git synced 2025-02-15 12:05:23 +01:00

35 lines
649 B
PHP
Raw Normal View History

2006-12-22 18:45:32 +00:00
<?php
/*
2009-11-17 10:46:35 +00:00
* e107 website system
*
* Copyright (C) 2001-2009 e107 Inc (e107.org)
* Released under the terms and conditions of the
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
*
*
*
* $Source: /cvs_backup/e107_0.8/e107_plugins/tinymce/e_meta.php,v $
* $Revision: 1.7 $
* $Date: 2009-11-17 10:46:35 $
* $Author: marj_nl_fr $
*/
2006-12-22 18:45:32 +00:00
if (!defined('e107_INIT')) { exit; }
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
}
2006-12-22 18:45:32 +00:00
2007-09-09 06:58:46 +00:00
?>