2010-09-08 03:43:40 +04:00
|
|
|
<?php
|
|
|
|
//load the required js and css files
|
|
|
|
OC_UTIL::addScript('plugins/textviewer/textviewer.js');
|
|
|
|
OC_UTIL::addStyle('plugins/textviewer/style.css');
|
2010-09-08 22:57:36 +04:00
|
|
|
|
|
|
|
//load SyntaxHighligher
|
|
|
|
OC_UTIL::addScript('plugins/textviewer/syntaxhighlighter/scripts/shCore.js');
|
|
|
|
OC_UTIL::addStyle('plugins/textviewer/syntaxhighlighter/styles/shCoreDefault.css');
|
|
|
|
OC_UTIL::addStyle('plugins/textviewer/syntaxhighlighter/styles/shCore.css');
|
|
|
|
OC_UTIL::addStyle('plugins/textviewer/syntaxhighlighter/styles/shThemeDefault.css');
|
2010-09-08 03:43:40 +04:00
|
|
|
?>
|