00001 <?php
00002
00003
00004
00005
00006
00007
00008 class JavascriptWYMEditorEventSink implements IEventSink {
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 public function on_event($event_name, $event_params, &$result) {
00019 if ($event_name == 'jcssmanager_compress') {
00020 switch($event_params) {
00021 case JCSSManager::TYPE_JS:
00022 $result['wymeditor'][] = 'js/wymeditor/jquery.wymeditor.js';
00023 break;
00024 case JCSSManager::TYPE_CSS:
00025 $result['wymeditor'][] = 'js/wymeditor/jquery.wymeditor.css';
00026 break;
00027 }
00028 }
00029 }
00030 }