online_user.php 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. <?php require_once 'auth.php'; ?>
  2. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
  3. "http://www.w3.org/TR/html4/loose.dtd">
  4. <html>
  5. <head>
  6. <title><?=getTitle(__FILE__)?></title>
  7. <link rel="stylesheet" href="phpME.css" type="text/css"></link>
  8. </head>
  9. <body>
  10. <script language=javascript>
  11. function windowOpen(u,W,H) {
  12. TopPosition = (screen.height) ? (screen.height-H)/2 : 0;
  13. LeftPosition = (screen.width) ? (screen.width-W)/2 : 0;
  14. settings = 'height='+H+',width='+W+',top='+TopPosition+',left='+LeftPosition+
  15. ',scrollbars=1,resizable=0,toolbar=0,location=0,directories=0,status=0,menubar=0';
  16. win = window.open(u,'_blank',settings);
  17. return win;
  18. }
  19. function exporttable(tb) {
  20. //windowOpen('exporttable.php?tableid='+tb, 600, 200);
  21. location.href = ('exporttable.php?tableid='+tb);
  22. }
  23. </script>
  24. <h3><?=getTitle(__FILE__)?>
  25. </h3>
  26. <?php
  27. /*
  28. * IMPORTANT NOTE: This generated file contains only a subset of huge amount
  29. * of options that can be used with phpMyEdit. To get information about all
  30. * features offered by phpMyEdit, check official documentation. It is available
  31. * online and also for download on phpMyEdit project management page:
  32. *
  33. * http://www.platon.sk/projects/main_page.php?project_id=5
  34. */
  35. // MySQL host name, user name, password, database, and table
  36. $opts['tb'] = 'qb_sessions';
  37. $opts['tb2'] = 'qb_sessions';
  38. // Name of field which is the unique key
  39. $opts['key'] = 'id';
  40. // Type of key field (int/real/string/date etc.)
  41. $opts['key_type'] = 'int';
  42. // Sorting field(s)
  43. $opts['sort_field'] = array('sesskey');
  44. // Number of records to display on the screen
  45. // Value of -1 lists all records in a table
  46. $opts['inc'] = -1;
  47. // Options you wish to give the users
  48. // A - add, C - change, P - copy, V - view, D - delete,
  49. // F - filter, I - initial sort suppressed
  50. $opts['options'] = 'ACF'; // DPV
  51. // Number of lines to display on multiple selection filters
  52. $opts['multiple'] = '4';
  53. // Navigation style: B - buttons (default), T - text links, G - graphic links
  54. // Buttons position: U - up, D - down (default)
  55. $opts['navigation'] = 'UG'; //'DB';
  56. // Display special page elements
  57. $opts['display'] = array(
  58. 'form' => true,
  59. 'query' => true,
  60. 'sort' => true,
  61. 'time' => true,
  62. 'tabs' => true
  63. );
  64. /* Get the user's default language and use it if possible or you can
  65. specify particular one you want to use. Refer to official documentation
  66. for list of available languages. */
  67. $opts['language'] = $HTTP_SERVER_VARS['HTTP_ACCEPT_LANGUAGE'];
  68. /* Table-level filter capability. If set, it is included in the WHERE clause
  69. of any generated SELECT statement in SQL query. This gives you ability to
  70. work only with subset of data from table.
  71. $opts['filters'] = "column1 like '%11%' AND column2<17";
  72. $opts['filters'] = "section_id = 9";
  73. $opts['filters'] = "PMEtable0.sessions_count > 200";
  74. */
  75. /* Field definitions
  76. Fields will be displayed left to right on the screen in the order in which they
  77. appear in generated list. Here are some most used field options documented.
  78. ['name'] is the title used for column headings, etc.;
  79. ['maxlen'] maximum length to display add/edit/search input boxes
  80. ['trimlen'] maximum length of string content to display in row listing
  81. ['width'] is an optional display width specification for the column
  82. e.g. ['width'] = '100px';
  83. ['mask'] a string that is used by sprintf() to format field output
  84. ['sort'] true or false; means the users may sort the display on this column
  85. ['strip_tags'] true or false; whether to strip tags from content
  86. ['nowrap'] true or false; whether this field should get a NOWRAP
  87. ['required'] true or false; if generate javascript to prevent null entries
  88. ['select'] T - text, N - numeric, D - drop-down, M - multiple selection
  89. ['options'] optional parameter to control whether a field is displayed
  90. L - list, F - filter, A - add, C - change, P - copy, D - delete, V - view
  91. Another flags are:
  92. R - indicates that a field is read only
  93. W - indicates that a field is a password field
  94. H - indicates that a field is to be hidden and marked as hidden
  95. ['URL'] is used to make a field 'clickable' in the display
  96. e.g.: 'mailto:$value', 'http://$value' or '$page?stuff';
  97. ['URLtarget'] HTML target link specification (for example: _blank)
  98. ['textarea']['rows'] and/or ['textarea']['cols']
  99. specifies a textarea is to be used to give multi-line input
  100. e.g. ['textarea']['rows'] = 5; ['textarea']['cols'] = 10
  101. ['values'] restricts user input to the specified constants,
  102. e.g. ['values'] = array('A','B','C') or ['values'] = range(1,99)
  103. ['values']['table'] and ['values']['column'] restricts user input
  104. to the values found in the specified column of another table
  105. ['values']['description'] = 'desc_column'
  106. The optional ['values']['description'] field allows the value(s) displayed
  107. to the user to be different to those in the ['values']['column'] field.
  108. This is useful for giving more meaning to column values. Multiple
  109. descriptions fields are also possible. Check documentation for this.
  110. */
  111. $opts['fdd']['SESSKEY'] = array(
  112. 'name' => 'SESSKEY',
  113. 'select' => 'T',
  114. 'maxlen' => 255,
  115. 'sort' => true,
  116. 'values' =>
  117. array (
  118. 'table' => 'qb_changelog',
  119. 'column' => 'newval',
  120. 'description' => 'newval'
  121. )
  122. );
  123. $opts['fdd']['userid'] = array(
  124. 'name' => 'User ID',
  125. 'select' => 'T',
  126. 'maxlen' => 255,
  127. 'sort' => true,
  128. 'sql' => 'EXPIREREF'
  129. );
  130. $opts['fdd']['HOST'] = array(
  131. 'name' => 'Host',
  132. 'select' => 'T',
  133. 'maxlen' => 255,
  134. 'sort' => true,
  135. 'sql' => 'host'
  136. );
  137. $opts['fdd']['login'] = array(
  138. 'name' => 'Login',
  139. 'select' => 'T',
  140. 'maxlen' => 255,
  141. 'required' => true,
  142. 'sort' => true,
  143. 'sql' => 'updated'
  144. );
  145. $opts['fdd']['EXPIRY'] = array(
  146. 'name' => 'Expiry',
  147. 'select' => 'T',
  148. 'maxlen' => 255,
  149. 'sort' => true,
  150. 'sql' => 'FROM_UNIXTIME(EXPIRY)'
  151. );
  152. $moduleId = 'Online User';
  153. $opts['options'] = 'F';
  154. $opts['filters'] = "EXPIREREF IS NOT NULL AND LENGTH(EXPIREREF) > 0 AND FROM_UNIXTIME(EXPIRY) > Now()";
  155. $opts['options'] = getUserOptions($moduleId, $opts['options']);
  156. $opts['filters'] = getUserFilters($moduleId, $opts['filters']);
  157. // Now important call to phpMyEdit
  158. require_once 'phpMyEdit.class.php';
  159. new phpMyEdit($opts);
  160. ?>
  161. </body>
  162. </html>