1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-19 21:02:09 +02:00

Initial commit of the highly experimental TinyMce4 CDN plugin.

This commit is contained in:
Cameron
2014-05-20 16:53:06 -07:00
parent 6829586be2
commit 771d7e5168
15 changed files with 1957 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
<?php
require_once("../../../../class2.php");
$types = array('img','video','glyph');
$bbcode = in_array(e_QUERY,$types) ? e_QUERY : 'img';
header("Location: ".e_ADMIN_ABS.'image.php?mode=main&action=dialog&for='.$_SESSION['media_category'].'&tagid=&iframe=1&bbcode='.$bbcode, true);
exit;
?>