qb_setting.php 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  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__)?></h3>
  25. <?php
  26. /*
  27. * IMPORTANT NOTE: This generated file contains only a subset of huge amount
  28. * of options that can be used with phpMyEdit. To get information about all
  29. * features offered by phpMyEdit, check official documentation. It is available
  30. * online and also for download on phpMyEdit project management page:
  31. *
  32. * http://www.platon.sk/projects/main_page.php?project_id=5
  33. */
  34. // MySQL host name, user name, password, database, and table
  35. $opts['tb'] = 'qb_setting';
  36. $opts['tb2'] = 'qb_setting';
  37. // Name of field which is the unique key
  38. $opts['key'] = 'id';
  39. // Type of key field (int/real/string/date etc.)
  40. $opts['key_type'] = 'int';
  41. // Sorting field(s)
  42. $opts['sort_field'] = array('id');
  43. // Number of records to display on the screen
  44. // Value of -1 lists all records in a table
  45. $opts['inc'] = 25;
  46. // Options you wish to give the users
  47. // A - add, C - change, P - copy, V - view, D - delete,
  48. // F - filter, I - initial sort suppressed
  49. $opts['options'] = 'ACDF'; // DPV
  50. // Number of lines to display on multiple selection filters
  51. $opts['multiple'] = '4';
  52. // Navigation style: B - buttons (default), T - text links, G - graphic links
  53. // Buttons position: U - up, D - down (default)
  54. $opts['navigation'] = 'UG'; //'DB';
  55. // Display special page elements
  56. $opts['display'] = array(
  57. 'form' => true,
  58. 'query' => true,
  59. 'sort' => true,
  60. 'time' => true,
  61. 'tabs' => true
  62. );
  63. $opts['logtable'] = 'qb_changelog';
  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. $opts['filters'] = " name = 'logtable' ";
  76. /* Field definitions
  77. Fields will be displayed left to right on the screen in the order in which they
  78. appear in generated list. Here are some most used field options documented.
  79. ['name'] is the title used for column headings, etc.;
  80. ['maxlen'] maximum length to display add/edit/search input boxes
  81. ['trimlen'] maximum length of string content to display in row listing
  82. ['width'] is an optional display width specification for the column
  83. e.g. ['width'] = '100px';
  84. ['mask'] a string that is used by sprintf() to format field output
  85. ['sort'] true or false; means the users may sort the display on this column
  86. ['strip_tags'] true or false; whether to strip tags from content
  87. ['nowrap'] true or false; whether this field should get a NOWRAP
  88. ['required'] true or false; if generate javascript to prevent null entries
  89. ['select'] T - text, N - numeric, D - drop-down, M - multiple selection
  90. ['options'] optional parameter to control whether a field is displayed
  91. L - list, F - filter, A - add, C - change, P - copy, D - delete, V - view
  92. Another flags are:
  93. R - indicates that a field is read only
  94. W - indicates that a field is a password field
  95. H - indicates that a field is to be hidden and marked as hidden
  96. ['URL'] is used to make a field 'clickable' in the display
  97. e.g.: 'mailto:$value', 'http://$value' or '$page?stuff';
  98. ['URLtarget'] HTML target link specification (for example: _blank)
  99. ['textarea']['rows'] and/or ['textarea']['cols']
  100. specifies a textarea is to be used to give multi-line input
  101. e.g. ['textarea']['rows'] = 5; ['textarea']['cols'] = 10
  102. ['values'] restricts user input to the specified constants,
  103. e.g. ['values'] = array('A','B','C') or ['values'] = range(1,99)
  104. ['values']['table'] and ['values']['column'] restricts user input
  105. to the values found in the specified column of another table
  106. ['values']['description'] = 'desc_column'
  107. The optional ['values']['description'] field allows the value(s) displayed
  108. to the user to be different to those in the ['values']['column'] field.
  109. This is useful for giving more meaning to column values. Multiple
  110. descriptions fields are also possible. Check documentation for this.
  111. */
  112. $opts['fdd']['id'] = array(
  113. 'name' => 'ID',
  114. 'select' => 'T',
  115. 'options' => 'AVCPDR', // auto increment
  116. 'maxlen' => 11,
  117. 'default' => '0',
  118. 'sort' => true
  119. );
  120. $opts['fdd']['name'] = array(
  121. 'name' => 'Name',
  122. 'select' => 'T',
  123. 'maxlen' => 255,
  124. 'sort' => true,
  125. 'default' => 'logtable',
  126. 'input' => 'R'
  127. );
  128. $arr = $arrMODTABLE;
  129. unset($arr['qb_module']);
  130. unset($arr['qb_changelog']);
  131. unset($arr['qb_sessions']);
  132. $opts['fdd']['value'] = array(
  133. 'name' => 'Value',
  134. 'select' => 'M',
  135. 'maxlen' => 65535,
  136. 'sort' => true,
  137. 'values2' => $arr
  138. );
  139. $opts['multiple'] = count($arr);
  140. $moduleId = 'Setting';
  141. $opts['options'] = getUserOptions($moduleId, $opts['options']);
  142. $opts['filters'] = getUserFilters($moduleId, $opts['filters']);
  143. // Now important call to phpMyEdit
  144. require_once 'phpMyEdit.class.php';
  145. new phpMyEdit($opts);
  146. ?>
  147. </body>
  148. </html>