MODPATH/gdpr/classes/service/gdpr.php [ 219 ]
214 private static function clearCookies()
215 {
216 foreach ($_COOKIE as $key => $item) {
217 if ($key !== "session") {
218 unset($_COOKIE[$key]);
219 setcookie($key, null, 1, '/');
220 }
221 }
222 }
223 }
-
{PHP internal call} » Kohana_Core::error_handler(arguments)
0
integer 2
1
string(151) "Cannot modify header information - headers already sent by (output started at /storage/var/www/herus-palety.cz/domains/www/appli …"
2
string(82) "/storage/var/www/herus-palety.cz/domains/www/modules/gdpr/classes/service/gdpr.php"
3
integer 219
4
array(2) ( "item" => string(36) "f7606355-cd5c-42fc-935e-54d4f4916a17" "key" => string(5) "_vsid" )
-
MODPATH/gdpr/classes/service/gdpr.php [ 219 ] » setcookie(arguments)
name
string(5) "_vsid"
value
string(0) ""
expires_or_options
integer 1
path
string(1) "/"
214 private static function clearCookies() 215 { 216 foreach ($_COOKIE as $key => $item) { 217 if ($key !== "session") { 218 unset($_COOKIE[$key]); 219 setcookie($key, null, 1, '/'); 220 } 221 } 222 } 223 }
-
MODPATH/gdpr/classes/service/gdpr.php [ 21 ] » Service_Gdpr::clearCookies()
16 17 public static function init() 18 { 19 self::$allowed = self::get(); 20 if (!self::isSet()) { 21 self::clearCookies(); 22 } 23 } 24 25 public static function get_config(): Kohana_Config_Reader 26 {
-
MODPATH/gdpr/init.php [ 28 ] » Service_Gdpr::init()
23 'controller' => 'gdpr', 24 'action' => 'js', 25 )); 26 27 28 Service_Gdpr::init();
-
SYSPATH/classes/kohana/core.php [ 546 ] » require_once(arguments)
0
string(66) "/storage/var/www/herus-palety.cz/domains/www/modules/gdpr/init.php"
541 $init = $path.'init'.EXT; 542 543 if (is_file($init)) 544 { 545 // Include the module initialization file once 546 require_once $init; 547 } 548 } 549 550 return Kohana::$_modules; 551 }
-
APPPATH/bootstrap.php [ 125 ] » Kohana_Core::modules(arguments)
0
array(14) ( "redis" => string(59) "/storage/var/www/herus-palety.cz/domains/www/modules/redis/" "smarty" => string(60) "/storage/var/www/herus-palety.cz/domains/www/modules/smarty/" "auth" => string(58) "/storage/var/www/herus-palety.cz/domains/www/modules/auth/" "shauth" => string(60) "/storage/var/www/herus-palety.cz/domains/www/modules/shauth/" "cache" => string(59) "/storage/var/www/herus-palety.cz/domains/www/modules/cache/" "database" => string(62) "/storage/var/www/herus-palety.cz/domains/www/modules/database/" "image" => string(59) "/storage/var/www/herus-palety.cz/domains/www/modules/image/" "orm" => string(57) "/storage/var/www/herus-palety.cz/domains/www/modules/orm/" "pagination" => string(64) "/storage/var/www/herus-palety.cz/domains/www/modules/pagination/" "sitemap" => string(61) "/storage/var/www/herus-palety.cz/domains/www/modules/sitemap/" "hana" => string(58) "/storage/var/www/herus-palety.cz/domains/www/modules/hana/" "mysqli" => string(60) "/storage/var/www/herus-palety.cz/domains/www/modules/mysqli/" "protec" => string(60) "/storage/var/www/herus-palety.cz/domains/www/modules/protec/" "gdpr" => string(58) "/storage/var/www/herus-palety.cz/domains/www/modules/gdpr/" )
120 'pagination' => MODPATH . 'pagination', // Paging of results 121 'sitemap' => MODPATH . 'sitemap', // Google Sitemap 122 'hana' => MODPATH . 'hana', // Hana module 123 'mysqli' => MODPATH . 'mysqli', 124 'protec' => MODPATH . 'protec', 125 'gdpr' => MODPATH . 'gdpr', 126 )); 127 error_reporting(~E_ALL); 128 129 /** 130 * Set the routes. Each route must have a minimum of a name, a URI and a set of
-
DOCROOT/index.php [ 108 ] » require(arguments)
0
string(70) "/storage/var/www/herus-palety.cz/domains/www/application/bootstrap.php"
103 // Load empty core extension 104 require SYSPATH.'classes/kohana'.EXT; 105 } 106 107 // Bootstrap the application 108 require APPPATH.'bootstrap'.EXT;