Server IP : 184.154.167.98 / Your IP : 13.58.252.71 Web Server : Apache System : Linux pink.dnsnetservice.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 User : puertode ( 1767) PHP Version : 7.2.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/puertode/public_html/contratos/apps/files_texteditor/appinfo/ |
Upload File : |
<?php $eventDispatcher = \OC::$server->getEventDispatcher(); // only load text editor if the user is logged in if (\OC::$server->getUserSession()->isLoggedIn()) { $eventDispatcher->addListener('OCA\Files::loadAdditionalScripts', function() { OCP\Util::addStyle('files_texteditor', 'merged'); OCP\Util::addScript('files_texteditor', 'merged'); $cspManager = \OC::$server->getContentSecurityPolicyManager(); $csp = new \OCP\AppFramework\Http\ContentSecurityPolicy(); $csp->addAllowedChildSrcDomain("'self'"); $cspManager->addDefaultPolicy($csp); }); } $eventDispatcher->addListener('OCA\Files_Sharing::loadAdditionalScripts', function() { OC_Util::addVendorScript('core', 'marked/marked.min'); OCP\Util::addScript('files_texteditor', 'public-share'); OCP\Util::addStyle('files_texteditor', 'public-share'); });