report2.php 6.3 KB

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