blob: 5ab810f55a2261e4892e577667f0e6d8bc40d364 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<?php
global $gBitSystem, $gBitThemes;
$registerHash = array(
'package_name' => 'ckeditor',
'package_path' => dirname( __FILE__ ).'/',
);
$gBitSystem->registerPackage( $registerHash );
if( $gBitSystem->isPackageActive( 'ckeditor' ) && $gBitUser->hasPermission( 'p_liberty_enter_html' ) ){
if( defined( 'IS_LIVE' ) && IS_LIVE ) {
$gBitThemes->loadJavascript( CKEDITOR_PKG_PATH.'ckeditor.js', FALSE, 600, FALSE );
} else {
$gBitThemes->loadJavascript( CKEDITOR_PKG_PATH.'ckeditor.js', FALSE, 600, FALSE );
}
}
|