mirror of
https://github.com/icecoder/ICEcoder.git
synced 2026-03-03 07:13:59 +01:00
14 lines
279 B
PHP
14 lines
279 B
PHP
<?php
|
|
if (!isset($_SESSION['loggedIn'])) {
|
|
die('Sorry, not logged in.');
|
|
}
|
|
?>
|
|
<!--
|
|
Purpose: This file is run when ICEcoder has loaded
|
|
Langs: Anything - PHP, JS etc
|
|
Example:
|
|
//-->
|
|
<script>
|
|
// top.ICEcoder.openFile('/index.html');
|
|
// alert('Thanks for using ICEcoder');
|
|
</script>
|