GIF89a; %PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 134.29.175.74 / Your IP : 216.73.216.160 Web Server : nginx/1.10.2 System : Windows NT CST-WEBSERVER 10.0 build 19045 (Windows 10) i586 User : Administrator ( 0) PHP Version : 7.1.0 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /nginx/html/Scheduler/admin/session/ |
Upload File : |
<? // admin/session/sessionManagement.phpinc // Display list of sessions for add/edit. $DEBUG_sessionManagement = false; #if ( $_SESSION['userId'] == 0 ) $DEBUG_sessionManagement = true; // DEBUG by userId. if ( !isset($DEBUG_sessionManagement) ) $DEBUG_sessionManagement = d_O(); // DEBUG by passthrough. #if ( !isset($DEBUG_sessionManagement) ) $DEBUG_sessionManagement = false; // Default false. #if ( $DEBUG_sessionManagement ) d_On(); // Use instead of t_Begin() for AJAX call. t_Begin($DEBUG_sessionManagement); // Begin TRACKing sessionManagement.phpinc. require('admin/session/get_sessions.phpinc'); // Get sessions. ?> <div id="div_form_session"> <table class="centered"><tr><td> <fieldset><legend>name_of_form_legend</legend> <form name="form_session_manage" action="<?=php_self()?>" method="post" enctype="multipart/form-data"> <input type="hidden" name="form" value="form_session_manage"> <input type="hidden" name="uuid" value="<?=uuid()?>"> <table> <tr> <td><? button('Add','Add a new session','formSubmit(this,\'Add new session\');'); ?></td> <th>YRTR</th> <th>Session</th> <th>Description</th> <th>Type</th> <th>Start</th> <th>End</th> <th>Last Modified</th> <th>By</th> </tr> <? if ( $sessionCount ) { query_seek($sessionResult, 0); while ($sessionInfo = query_row($sessionResult)) { ?> <tr> <td><? button('Edit','Edit the session',"formSubmit(this,{'task':'Edit session','sessionId':".$sessionInfo['sessionId']."});"); ?></td> <td><?=$sessionInfo['YRTR']?></td> <td><?=$sessionInfo['sessionName']?></td> <td><?=$sessionInfo['sessionDescription']?></td> <td><?=$sessionInfo['sessiontypeDescription']?></td> <td><?=valid_date($sessionInfo['sessionStart'],'m/d/y')?></td> <td><?=valid_date($sessionInfo['sessionEnd'],'m/d/y')?></td> <td><?=$sessionInfo['lastModified']?></td> <td><?=userName($sessionInfo['modifiedBy'])?></td> </tr> <? } } ?> </table> </form> </fieldset> </td></tr></table> </div><!-- div_form_session --> <? #if ( $DEBUG_sessionManagement ) d_Off(); // Use instead of t_End() for AJAX call. unset($DEBUG_sessionManagement); t_End(); // End TRACKing sessionManagement.phpinc. ?>