tablelog.php 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  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_log';
  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'] = isLogTable($opts['tb']); //'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. /* Field definitions
  66. Fields will be displayed left to right on the screen in the order in which they
  67. appear in generated list. Here are some most used field options documented.
  68. ['name'] is the title used for column headings, etc.;
  69. ['maxlen'] maximum length to display add/edit/search input boxes
  70. ['trimlen'] maximum length of string content to display in row listing
  71. ['width'] is an optional display width specification for the column
  72. e.g. ['width'] = '100px';
  73. ['mask'] a string that is used by sprintf() to format field output
  74. ['sort'] true or false; means the users may sort the display on this column
  75. ['strip_tags'] true or false; whether to strip tags from content
  76. ['nowrap'] true or false; whether this field should get a NOWRAP
  77. ['required'] true or false; if generate javascript to prevent null entries
  78. ['select'] T - text, N - numeric, D - drop-down, M - multiple selection
  79. ['options'] optional parameter to control whether a field is displayed
  80. L - list, F - filter, A - add, C - change, P - copy, D - delete, V - view
  81. Another flags are:
  82. R - indicates that a field is read only
  83. W - indicates that a field is a password field
  84. H - indicates that a field is to be hidden and marked as hidden
  85. ['URL'] is used to make a field 'clickable' in the display
  86. e.g.: 'mailto:$value', 'http://$value' or '$page?stuff';
  87. ['URLtarget'] HTML target link specification (for example: _blank)
  88. ['textarea']['rows'] and/or ['textarea']['cols']
  89. specifies a textarea is to be used to give multi-line input
  90. e.g. ['textarea']['rows'] = 5; ['textarea']['cols'] = 10
  91. ['values'] restricts user input to the specified constants,
  92. e.g. ['values'] = array('A','B','C') or ['values'] = range(1,99)
  93. ['values']['table'] and ['values']['column'] restricts user input
  94. to the values found in the specified column of another table
  95. ['values']['description'] = 'desc_column'
  96. The optional ['values']['description'] field allows the value(s) displayed
  97. to the user to be different to those in the ['values']['column'] field.
  98. This is useful for giving more meaning to column values. Multiple
  99. descriptions fields are also possible. Check documentation for this.
  100. */
  101. $opts['fdd']['id'] = array(
  102. 'name' => 'ID',
  103. 'select' => 'T',
  104. 'options' => 'AVCPDR', // auto increment
  105. 'maxlen' => 11,
  106. 'default' => '0',
  107. 'sort' => true
  108. );
  109. $opts['fdd']['tableid'] = array(
  110. 'name' => 'Tableid',
  111. 'select' => 'T',
  112. 'maxlen' => 32,
  113. 'sort' => true
  114. );
  115. $opts['fdd']['userid'] = array(
  116. 'name' => 'Userid',
  117. 'select' => 'T',
  118. 'maxlen' => 32,
  119. 'sort' => true
  120. );
  121. $opts['fdd']['jam'] = array(
  122. 'name' => 'Jam',
  123. 'select' => 'T',
  124. 'maxlen' => 19,
  125. 'sort' => true
  126. );
  127. $opts['fdd']['status'] = array(
  128. 'name' => 'Status',
  129. 'select' => 'T',
  130. 'maxlen' => 16,
  131. 'sort' => true
  132. );
  133. $opts['fdd']['message'] = array(
  134. 'name' => 'Message',
  135. 'select' => 'T',
  136. 'maxlen' => 65535,
  137. 'textarea' => array(
  138. 'rows' => 5,
  139. 'cols' => 50),
  140. 'sort' => true
  141. );
  142. // Now important call to phpMyEdit
  143. $moduleId = 'Import.Table Log';
  144. $opts['options'] = getUserOptions($moduleId, $opts['options']);
  145. $opts['filters'] = getUserFilters($moduleId);
  146. require_once 'phpMyEdit.class.php';
  147. new phpMyEdit($opts);
  148. ?>
  149. </body>
  150. </html>