tvheadend/vendor/ext-3.4.1/examples/state/get-state.php
Adam Sutton bafcfff42d webui: restructure webui/extjs source files
I want to keep the 3rd-party packages away from the main source
where possible.
2013-06-03 17:11:01 +01:00

10 lines
202 B
PHP

<?php
session_start();
if(!isset($_SESSION['state'])){
$_SESSION['state'] = array(
'sessionId'=>session_id()
);
}
echo 'Ext.appState = ';
echo json_encode($_SESSION['state']);
echo ';';