tableconfig2.php 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345
  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 onLoad='documentOnLoad()'>
  10. <h3><?=getTitle(__FILE__)?></h3>
  11. <script language=javascript>
  12. function windowOpen(u) {
  13. var saveTarget = document.forms[0].target;
  14. var saveAction = document.forms[0].action;
  15. document.forms[0].target = "_blank";
  16. document.forms[0].action = u;
  17. document.forms[0].submit();
  18. document.forms[0].target = saveTarget;
  19. document.forms[0].action = saveAction;
  20. }
  21. </script>
  22. <?php
  23. if ($isSupervisor) {
  24. $userAction['cleanReport'] = 1;
  25. $userAction['cleanTemp'] = 1;
  26. $userAction['cleanCrc'] = 1;
  27. } else {
  28. $baseFile = $arrFILE[basename(__FILE__)];
  29. $userAction = getUserActions($_SESSION['userid'], $baseFile);
  30. }
  31. if (in_array($_REQUEST['operation'],array(__('Change'),__('Add')))
  32. || isset($_REQUEST['morechange']) || isset($_REQUEST['moreadd'])) {
  33. } else {
  34. ?>
  35. <?php if ($userAction['cleanReport'] === 1) { ?>
  36. <script language=javascript>
  37. function clean_report() {
  38. windowOpen('clean_report.php', 600, 200);
  39. }
  40. </script>
  41. <input type=button value='<?=__('Clean Report')?>' onClick="clean_report()">
  42. <?php } ?>
  43. <?php if ($userAction['cleanTemp'] === 1) { ?>
  44. <script language=javascript>
  45. function clean_temp() {
  46. windowOpen('clean_temp.php', 600, 200);
  47. }
  48. </script>
  49. <input type=button value='<?=__('Clean Temp')?>' onClick="clean_temp()">
  50. <?php } ?>
  51. <?php if (false && $userAction['cleanCrc'] === 1) { ?>
  52. <script language=javascript>
  53. function clean_crc() {
  54. windowOpen('clean_crc.php', 600, 200);
  55. }
  56. </script>
  57. <input type=button value='<?=__('Clean CRC')?>' onClick="clean_crc()">
  58. <?php } ?>
  59. <br/><br/>
  60. <?php
  61. }
  62. if ($isSupervisor) {
  63. $userAction['viewHistory'] = 1;
  64. $userAction['viewLog'] = 1;
  65. $userAction['viewData'] = 1;
  66. $userAction['testDSN'] = 1;
  67. $userAction['dropTable'] = 1;
  68. $userAction['createTable'] = 1;
  69. $userAction['import'] = 1;
  70. $userAction['diff'] = 1;
  71. $userAction['crc'] = 1;
  72. $userAction['replace'] = 1;
  73. $userAction['update'] = 1;
  74. } else {
  75. $baseFile = $arrFILE[basename(__FILE__)];
  76. $userAction = getUserActions($_SESSION['userid'], $baseFile);
  77. }
  78. if (in_array($_REQUEST['operation'],array(__('Change'),__('Add')))
  79. || isset($_REQUEST['morechange']) || isset($_REQUEST['moreadd'])) {
  80. ?>
  81. <?php if ($userAction['viewHistory'] === 1) { ?>
  82. <input type=button value='<?=__('View History')?>' onClick='windowOpen("viewhistory.php")'>
  83. <?php } ?>
  84. <?php if ($userAction['viewLog'] === 1) { ?>
  85. <input type=button value='<?=__('View Log')?>' onClick='windowOpen("viewlog.php")'>
  86. <?php } ?>
  87. <?php if ($userAction['viewData'] === 1) { ?>
  88. <input type=button value='<?=__('View Data')?>' onClick='windowOpen("viewdata2.php")'>
  89. <?php } ?>
  90. <?php if ($userAction['testDSN'] === 1) { ?>
  91. <input type=button value='<?=__('Test DSN')?>' onClick='windowOpen("testdsn.php")'>
  92. <?php } ?>
  93. <?php if ($userAction['dropTable'] === 1) { ?>
  94. <input type=button value='<?=__('Drop Table')?>' onclick='windowOpen("droptable.php")'>
  95. <?php } ?>
  96. <?php if ($userAction['createTable'] === 1) { ?>
  97. <input type=button value='<?=__('Create Table')?>' onClick='windowOpen("createtable.php")'>
  98. <?php } ?>
  99. <?php if ($userAction['import'] === 1) { ?>
  100. <input type=button value='<?=__('Import')?>' onClick='windowOpen("importtable2.php")'>
  101. <?php } ?>
  102. <?php if ($userAction['diff'] === 1) { ?>
  103. <input type=button value='<?=__('Diff')?>' onClick='windowOpen("difftable.php")'>
  104. <?php } ?>
  105. <?php if ($userAction['replace'] === 1) { ?>
  106. <input type=button value='<?=__('replace')?>' onClick='windowOpen("replacetable.php")'>
  107. <?php } ?>
  108. <?php if ($userAction['update'] === 1) { ?>
  109. <input type=button value='<?=__('update')?>' onClick='windowOpen("updatetable.php")'>
  110. <?php } ?>
  111. <?php if (false && $userAction['crc'] === 1) { ?>
  112. <input type=button value='<?=__('CRC')?>' onClick='windowOpen("crctable.php")'>
  113. <?php } ?>
  114. <br/><br/>
  115. <?php
  116. }
  117. echo "
  118. <script language=javascript>
  119. function documentOnLoad() {
  120. ";
  121. $rs = $adodb->Execute("SELECT * FROM qb_config WHERE id = ?", $_REQUEST['rec']);
  122. if (!$rs->EOF) {
  123. $rs = $adodb->Execute("SELECT * FROM ".$rs->fields['tableid']." LIMIT 1");
  124. if ($rs) {
  125. echo "
  126. if (document.forms[0] && document.forms[0].tableid) {
  127. document.forms[0].tableid.readOnly = true;
  128. document.forms[0].tableid.style.color = 'gray';
  129. }
  130. ";
  131. }
  132. }
  133. echo "
  134. }
  135. </script>
  136. ";
  137. /*
  138. * IMPORTANT NOTE: This generated file contains only a subset of huge amount
  139. * of options that can be used with phpMyEdit. To get information about all
  140. * features offered by phpMyEdit, check official documentation. It is available
  141. * online and also for download on phpMyEdit project management page:
  142. *
  143. * http://www.platon.sk/projects/main_page.php?project_id=5
  144. */
  145. // MySQL host name, user name, password, database, and table
  146. require_once 'config.php';
  147. $opts['hn'] = $adodb_host;
  148. $opts['un'] = $adodb_user;
  149. $opts['pw'] = $adodb_pass;
  150. $opts['db'] = $adodb_db;
  151. $opts['tb'] = 'qb_config';
  152. // Name of field which is the unique key
  153. $opts['key'] = 'id';
  154. // Type of key field (int/real/string/date etc.)
  155. $opts['key_type'] = 'int';
  156. // Sorting field(s)
  157. $opts['sort_field'] = array('id');
  158. // Number of records to display on the screen
  159. // Value of -1 lists all records in a table
  160. $opts['inc'] = 25;
  161. // Options you wish to give the users
  162. // A - add, C - change, P - copy, V - view, D - delete,
  163. // F - filter, I - initial sort suppressed
  164. $opts['options'] = 'ADCF'; // DPV
  165. // Number of lines to display on multiple selection filters
  166. $opts['multiple'] = '4';
  167. // Navigation style: B - buttons (default), T - text links, G - graphic links
  168. // Buttons position: U - up, D - down (default)
  169. $opts['navigation'] = 'UG'; //'DB';
  170. // Display special page elements
  171. $opts['display'] = array(
  172. 'form' => true,
  173. 'query' => true,
  174. 'sort' => true,
  175. 'time' => true,
  176. 'tabs' => true
  177. );
  178. $opts['logtable'] = isLogTable($opts['tb']); //'qb_changelog';
  179. /* Get the user's default language and use it if possible or you can
  180. specify particular one you want to use. Refer to official documentation
  181. for list of available languages. */
  182. $opts['language'] = $HTTP_SERVER_VARS['HTTP_ACCEPT_LANGUAGE'];
  183. /* Table-level filter capability. If set, it is included in the WHERE clause
  184. of any generated SELECT statement in SQL query. This gives you ability to
  185. work only with subset of data from table.
  186. $opts['filters'] = "column1 like '%11%' AND column2<17";
  187. $opts['filters'] = "section_id = 9";
  188. $opts['filters'] = "PMEtable0.sessions_count > 200";
  189. */
  190. /* Field definitions
  191. Fields will be displayed left to right on the screen in the order in which they
  192. appear in generated list. Here are some most used field options documented.
  193. ['name'] is the title used for column headings, etc.;
  194. ['maxlen'] maximum length to display add/edit/search input boxes
  195. ['trimlen'] maximum length of string content to display in row listing
  196. ['width'] is an optional display width specification for the column
  197. e.g. ['width'] = '100px';
  198. ['mask'] a string that is used by sprintf() to format field output
  199. ['sort'] true or false; means the users may sort the display on this column
  200. ['strip_tags'] true or false; whether to strip tags from content
  201. ['nowrap'] true or false; whether this field should get a NOWRAP
  202. ['required'] true or false; if generate javascript to prevent null entries
  203. ['select'] T - text, N - numeric, D - drop-down, M - multiple selection
  204. ['options'] optional parameter to control whether a field is displayed
  205. L - list, F - filter, A - add, C - change, P - copy, D - delete, V - view
  206. Another flags are:
  207. R - indicates that a field is read only
  208. W - indicates that a field is a password field
  209. H - indicates that a field is to be hidden and marked as hidden
  210. ['URL'] is used to make a field 'clickable' in the display
  211. e.g.: 'mailto:$value', 'http://$value' or '$page?stuff';
  212. ['URLtarget'] HTML target link specification (for example: _blank)
  213. ['textarea']['rows'] and/or ['textarea']['cols']
  214. specifies a textarea is to be used to give multi-line input
  215. e.g. ['textarea']['rows'] = 5; ['textarea']['cols'] = 10
  216. ['values'] restricts user input to the specified constants,
  217. e.g. ['values'] = array('A','B','C') or ['values'] = range(1,99)
  218. ['values']['table'] and ['values']['column'] restricts user input
  219. to the values found in the specified column of another table
  220. ['values']['description'] = 'desc_column'
  221. The optional ['values']['description'] field allows the value(s) displayed
  222. to the user to be different to those in the ['values']['column'] field.
  223. This is useful for giving more meaning to column values. Multiple
  224. descriptions fields are also possible. Check documentation for this.
  225. */
  226. $opts['fdd']['id'] = array(
  227. 'name' => 'ID',
  228. 'select' => 'T',
  229. 'options' => 'AVCPDR', // auto increment
  230. 'maxlen' => 11,
  231. 'default' => '0',
  232. 'sort' => true
  233. );
  234. $opts['fdd']['tableid'] = array(
  235. 'name' => 'Tableid',
  236. 'select' => 'T',
  237. 'maxlen' => 32,
  238. 'sort' => true
  239. );
  240. $opts['fdd']['history_mode'] = array(
  241. 'name' => __("History Mode"),
  242. 'select' => 'T',
  243. 'maxlen' => 65535,
  244. 'sort' => false,
  245. 'options' => 'AC',
  246. 'values2' => array(3 => "", 0 => __("diff"), 1 => __("replace"), 2 => __("update"))
  247. );
  248. $opts['fdd']['sqlcreate'] = array(
  249. 'name' => 'SQL Create',
  250. 'trimlen' => 100,
  251. 'select' => 'T',
  252. 'maxlen' => 65535,
  253. 'textarea' => array(
  254. 'rows' => 5,
  255. 'cols' => 50),
  256. 'sort' => true,
  257. 'options' => 'AC'
  258. );
  259. $opts['fdd']['dsn'] = array(
  260. 'name' => 'DSN',
  261. 'select' => 'T',
  262. 'maxlen' => 255,
  263. 'sort' => true,
  264. 'options' => 'AC',
  265. // 'tab' => 'Remote Connection'
  266. );
  267. $opts['fdd']['user'] = array(
  268. 'name' => 'User',
  269. 'select' => 'T',
  270. 'maxlen' => 255,
  271. 'sort' => true,
  272. 'options' => ''
  273. );
  274. $opts['fdd']['pass'] = array(
  275. 'name' => 'Pass',
  276. 'select' => 'T',
  277. 'maxlen' => 255,
  278. 'sort' => true,
  279. 'options' => ''
  280. );
  281. $opts['fdd']['sqlimport'] = array(
  282. 'name' => 'SQL Import',
  283. 'trimlen' => 100,
  284. 'select' => 'T',
  285. 'maxlen' => 65535,
  286. 'sort' => true,
  287. 'textarea' => array(
  288. 'rows' => 5,
  289. 'cols' => 50),
  290. );
  291. $opts['triggers']['delete']['after'] = 'tableconfig.TDA.inc.php';
  292. // Now important call to phpMyEdit
  293. $moduleId = 'Import.Table Config';
  294. $opts['options'] = getUserOptions($moduleId, $opts['options']);
  295. $opts['filters'] = getUserFilters($moduleId);
  296. require_once 'phpMyEdit.class.php';
  297. new phpMyEdit($opts);
  298. ?>
  299. </body>
  300. </html>