nextcloud-server/plugins/textviewer/lib_textviewer.php

11 lines
503 B

<?php
//load the required js and css files
OC_UTIL::addScript('plugins/textviewer/textviewer.js');
OC_UTIL::addStyle('plugins/textviewer/style.css');
//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');
?>