1<?php 2 3namespace dokuwiki\plugin\diagrams; 4 5/** 6 * Currently only used to hold constants 7 */ 8class Diagrams { 9 const MODE_MEDIA = 1; 10 const MODE_EMBED = 2; 11 12 const CSP = [ 13 'default-src' => "'none'", 14 'style-src' => "'unsafe-inline' fonts.googleapis.com", 15 'media-src' => "'self'", 16 'object-src' => "'self'", 17 'font-src' => "'self' data: fonts.gstatic.com", 18 'form-action' => "'none'", 19 'frame-ancestors' => "'self'", 20 'img-src' => "self data:", 21 'sandbox' => "allow-popups allow-top-navigation allow-same-origin", 22 ]; 23} 24