view3.php 6.0 KB

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