14 lines
397 B
PHP
14 lines
397 B
PHP
<?php
|
|
|
|
CJSCore::RegisterExt(
|
|
'event-log',
|
|
array(
|
|
'js' => '/local/bx-custom-include/event-log/script.js',
|
|
'css' => '/local/bx-custom-include/event-log/style.css',
|
|
'lang' => '/local/bx-custom-include/event-log/lang_' . LANGUAGE_ID . '.php',
|
|
'rel' => Array('popup', 'ajax', 'fx', 'ls', 'date', 'json', 'window','jquery'),
|
|
'skip_core' => false,
|
|
)
|
|
);
|
|
CJSCore::Init(array('event-log'));
|
|
?>
|