view_open.php 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731
  1. <?php
  2. /*
  3. * phpMyEdit - instant MySQL table editor and code generator
  4. *
  5. * phpMyEditSetup.php - interactive table configuration utility (setup)
  6. * ____________________________________________________________
  7. *
  8. * Copyright (c) 1999-2002 John McCreesh <jpmcc@users.sourceforge.net>
  9. * Copyright (c) 2001-2002 Jim Kraai <jkraai@users.sourceforge.net>
  10. * Versions 5.0 and higher developed by Ondrej Jombik <nepto@php.net>
  11. * Copyright (c) 2002-2004 Platon SDG, http://platon.sk/
  12. * All rights reserved.
  13. *
  14. * See README file for more information about this software.
  15. * See COPYING file for license information.
  16. *
  17. * Download the latest version from
  18. * http://platon.sk/projects/phpMyEdit/
  19. */
  20. /* $Platon: phpMyEdit/phpMyEditSetup.php,v 1.34 2004/01/16 19:46:32 nepto Exp $ */
  21. require_once 'auth.php';
  22. ?>
  23. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
  24. "http://www.w3.org/TR/html4/loose.dtd">
  25. <html>
  26. <head>
  27. <title>phpMyEdit Setup</title>
  28. <style type="text/css">
  29. <!--
  30. body { font-family: "Verdana", "Arial", "Sans-Serif"; text-align: left }
  31. h1 { color: #004d9c; font-size: 13pt; font-weight: bold }
  32. h2 { color: #004d9c; font-size: 11pt; font-weight: bold }
  33. h3 { color: #004d9c; font-size: 11pt; }
  34. p { color: #004d9c; font-size: 9pt; }
  35. table { border: 1px solid #004d9c; border-collapse: collapse; border-spacing: 0px; }
  36. td { border: 1px solid; padding: 3px; color: #004d9c; font-size: 9pt; }
  37. hr
  38. {
  39. height: 1px;
  40. background-color: #000000;
  41. color: #000000;
  42. border: solid #000000 0;
  43. padding: 0;
  44. margin: 0;
  45. border-top-width: 1px;
  46. }
  47. -->
  48. </style>
  49. </head>
  50. <body bgcolor="white">
  51. <?php
  52. $hn = @$HTTP_POST_VARS['hn'];
  53. $un = @$HTTP_POST_VARS['un'];
  54. $pw = @$HTTP_POST_VARS['pw'];
  55. $db = @$HTTP_POST_VARS['db'];
  56. $tb = @$HTTP_POST_VARS['tb'];
  57. $id = @$HTTP_POST_VARS['id'];
  58. $submit = @$HTTP_POST_VARS['submit'];
  59. $options = @$HTTP_POST_VARS['options'];
  60. $baseFilename = @$HTTP_POST_VARS['baseFilename'];
  61. $pageTitle = @$HTTP_POST_VARS['pageTitle'];
  62. $pageHeader = @$HTTP_POST_VARS['pageHeader'];
  63. $HTMLissues = @$HTTP_POST_VARS['HTMLissues'];
  64. $CSSstylesheet = @$HTTP_POST_VARS['CSSstylesheet'];
  65. /* QBUILDER TRAP */
  66. $adodb->debug = 1;
  67. $rs = $adodb->Execute("SELECT * FROM qb_view WHERE id = ?", $_GET['id']);
  68. if (!$rs || $rs->EOF) die("Error: View '".$_GET['id']."' does not exist.");
  69. $tableid = "qb_view_".abs(crc32($_SESSION['userid']."_".$rs->fields['id']));
  70. $tableid2 = "qb_view_".$rs->fields['id'];
  71. $adodb->Execute("DROP TABLE ".$tableid);
  72. $sql = $rs->fields['sql'];
  73. $sql = str_replace('[userid]', "'".$_SESSION['userid']."'", $sql);
  74. $adodb->Execute("CREATE TABLE ".$tableid." AS ".$sql) or die($adodb->ErrorMsg());
  75. $adodb->Execute("ALTER TABLE ".$tableid." ADD qb_id INTEGER");
  76. $adodb->Execute("ALTER TABLE ".$tableid." ADD KEY (qb_id) ");
  77. $adodb->Execute("ALTER TABLE ".$tableid." CHANGE qb_id qb_id INTEGER NOT NULL auto_increment");
  78. $hn = $adodb_host;
  79. $un = $adodb_user;
  80. $pw = $adodb_pass;
  81. $db = $adodb_db;
  82. $tb = $tableid;
  83. $tb2 = $tableid2;
  84. $id = 'qb_id';
  85. $submit = true;
  86. $options = 1;
  87. $baseFilename = 'phpME_report_'.htmlspecialchars(abs(crc32($tb)));
  88. $pageTitle = __("TITLE", $rs->fields['name'], $tableid2);
  89. $pageHeader = true;
  90. $HTMLissues = true;
  91. $CSSstylesheet = true;
  92. /* QBUILDER TRAP */
  93. $phpExtension = '.php';
  94. if (isset($baseFilename) && $baseFilename != '') {
  95. $phpFile = $baseFilename.$phpExtension;
  96. //$contentFile = $baseFilename.'Content.inc';
  97. $contentFile = $baseFilename.'.php';
  98. } elseif (isset($tb)) {
  99. $phpFile = $tb.$phpExtension;
  100. //$contentFile = $tb.'Content.inc';
  101. $contentFile = $tb.'.php';
  102. } else {
  103. $phpFile = 'index'.$phpExtension;
  104. //$contentFile = 'Content.inc';
  105. $contentFile = 'phpMyEdit-content.php';
  106. }
  107. $buffer = '';
  108. function echo_html($x)
  109. {
  110. echo htmlspecialchars($x),"\n";
  111. }
  112. function echo_buffer($x)
  113. {
  114. global $buffer;
  115. $buffer .= $x."\n";
  116. }
  117. $self = basename($HTTP_SERVER_VARS['PHP_SELF']);
  118. $dbl = @mysql_pconnect($hn, $un, $pw);
  119. if ((!$dbl) or empty($submit)) {
  120. echo '<h1>Please log in to your MySQL database</h1>';
  121. if (!empty($submit)) {
  122. echo '<h2>Sorry - login failed - please try again</h2>'."\n";
  123. }
  124. if (! isset($hn)) {
  125. $hn = 'localhost';
  126. }
  127. echo '
  128. <form action="'.htmlspecialchars($self).'" method="POST">
  129. <table border="1" cellpadding="1" cellspacing="0" summary="Login form">
  130. <tr>
  131. <td>Hostname:</td>
  132. <td><input type="text" name="hn" value="'.htmlspecialchars($hn).'"></td>
  133. </tr><tr>
  134. <td>Username:</td>
  135. <td><input type="text" name="un" value="'.htmlspecialchars($un).'"></td>
  136. </tr><tr>
  137. <td>Password:</td>
  138. <td><input type="password" name="pw" value="'.htmlspecialchars($pw).'"></td>
  139. </tr>
  140. </table><br>
  141. <input type="submit" name="submit" value="Submit">
  142. </form>'."\n";
  143. } else if (! isset($db)) {
  144. $dbs = @mysql_list_dbs($dbl);
  145. $num_dbs = @mysql_num_rows($dbs);
  146. echo '<h1>Please select a database</h1>
  147. <form action="'.htmlspecialchars($self).'" method="POST">
  148. <input type="hidden" name="hn" value="'.htmlspecialchars($hn).'">
  149. <input type="hidden" name="un" value="'.htmlspecialchars($un).'">
  150. <input type="hidden" name="pw" value="'.htmlspecialchars($pw).'">
  151. <table border="1" cellpadding="1" cellspacing="1" summary="Database selection">'."\n";
  152. for ($i = 0; $i < $num_dbs; $i++) {
  153. $db = @mysql_db_name($dbs, $i);
  154. $checked = ! strcasecmp($un, $db) ? ' checked' : '';
  155. $db = htmlspecialchars($db);
  156. echo '<tr><td><input'.$checked.' type="radio" name="db" value="'.$db.'"></td><td>'.$db.'</td></tr>'."\n";
  157. }
  158. echo '</table><br>
  159. <input type="submit" name="submit" value="Submit">
  160. <input type="submit" name="cancel" value="Cancel">
  161. </form>'."\n";
  162. } else if (!isset($tb)) {
  163. echo '<h1>Please select a table from database: '.htmlspecialchars($db).'</h1>
  164. <form action="'.htmlspecialchars($self).'" method="POST">
  165. <input type="hidden" name="hn" value="'.htmlspecialchars($hn).'">
  166. <input type="hidden" name="un" value="'.htmlspecialchars($un).'">
  167. <input type="hidden" name="pw" value="'.htmlspecialchars($pw).'">
  168. <input type="hidden" name="db" value="'.htmlspecialchars($db).'">
  169. <table border="1" cellpadding="1" cellspacing="1" summary="Table selection">'."\n";
  170. $tbs = @mysql_list_tables($db, $dbl);
  171. $num_tbs = @mysql_num_rows($tbs);
  172. for ($j = 0; $j < $num_tbs; $j++) {
  173. $tb = @mysql_tablename($tbs, $j);
  174. $tb = htmlspecialchars($tb);
  175. $checked = $j == 0 ? ' checked' : '';
  176. echo '<tr><td><input'.$checked.' type="radio" name="tb" value="'.$tb.'"></td><td>'.$tb.'</td></tr>'."\n";
  177. }
  178. echo '</table><br>
  179. <input type="submit" name="submit" value="Submit">
  180. <input type="submit" name="cancel" value="Cancel">
  181. </form>'."\n";
  182. } else if (!isset($id)) {
  183. echo ' <h1>Please select an identifier from table: '.htmlspecialchars($tb).'</h1>
  184. <p>
  185. This field will be used in change, view, copy and delete operations.<br>
  186. The field should be numeric and must uniquely identify a record.
  187. </p>
  188. <p>
  189. Please note, that there were problems reported by phpMyEdit users
  190. regarding using MySQL reserved word as unique key name (the example for
  191. this is "key" name). Thus we recommend you to use another name
  192. of unique key. Usage of "id" or "ID" should be safe and good idea.
  193. </p>
  194. <form action="'.htmlspecialchars($self).'" method="POST">
  195. <input type="hidden" name="hn" value="'.htmlspecialchars($hn).'">
  196. <input type="hidden" name="un" value="'.htmlspecialchars($un).'">
  197. <input type="hidden" name="pw" value="'.htmlspecialchars($pw).'">
  198. <input type="hidden" name="db" value="'.htmlspecialchars($db).'">
  199. <input type="hidden" name="tb" value="'.htmlspecialchars($tb).'">
  200. <table border="1" cellpadding="1" cellspacing="1" summary="Key selection">'."\n";
  201. // <tr><td><input type="radio" name="id" value="">
  202. // <td><i>None</i></td><td><i>No id field required</i></td></tr>
  203. @mysql_select_db($db);
  204. $tb_desc = @mysql_query("DESCRIBE $tb");
  205. $fds = @mysql_list_fields($db,$tb,$dbl);
  206. for ($j = 0; ($fd = @mysql_field_name($fds, $j)) != false; $j++) {
  207. $ff = @mysql_field_flags($fds, $j);
  208. strlen($ff) <= 0 && $ff = '---';
  209. $checked = stristr($ff, 'primary_key') ? ' checked' : '';
  210. echo '<tr><td><input',$checked,' type="radio" name="id" value="',htmlspecialchars($fd),'"></td>';
  211. echo '<td>',htmlspecialchars($fd),'</td>';
  212. echo '<td>',htmlspecialchars($ff),'</td>';
  213. $r = @mysql_fetch_array($tb_desc, $j);
  214. }
  215. echo '</table><br>
  216. <input type="submit" name="submit" value="Submit">
  217. <input type="submit" name="cancel" value="Cancel">
  218. </form>'."\n";
  219. } else if (!isset($options)) {
  220. echo '<h1>Please select additional options</h1>
  221. <form action="'.htmlspecialchars($self).'" method="POST">
  222. <input type="hidden" name="hn" value="'.htmlspecialchars($hn).'">
  223. <input type="hidden" name="un" value="'.htmlspecialchars($un).'">
  224. <input type="hidden" name="pw" value="'.htmlspecialchars($pw).'">
  225. <input type="hidden" name="db" value="'.htmlspecialchars($db).'">
  226. <input type="hidden" name="tb" value="'.htmlspecialchars($tb).'">
  227. <input type="hidden" name="id" value="'.htmlspecialchars($id).'">
  228. <table border="1" cellpadding="1" cellspacing="1" summary="Additional options">
  229. <tr><td>Base filename</td><td><input type="text" name=baseFilename value ="'.htmlspecialchars($tb).'"></td></tr>
  230. <tr><td>Page title</td><td><input type="text" name=pageTitle value ="'.htmlspecialchars($tb).'"></td></tr>
  231. <tr><td>Page header</td><td><input type="checkbox" name=pageHeader></td></tr>
  232. <tr><td>HTML header &amp; footer</td><td><input type="checkbox" name=HTMLissues></td></tr>
  233. <tr><td>CSS basic stylesheet</td><td><input checked type="checkbox" name=CSSstylesheet></td></tr>
  234. </table><br>
  235. <input type="submit" name="submit" value="Submit">
  236. <input type="submit" name="cancel" value="Cancel">
  237. <input type="hidden" name="options" value="1">
  238. </form>'."\n";
  239. } else {
  240. echo '<h1>Here is your phpMyEdit calling program</h1>'."\n";
  241. echo '<h2>You may now copy and paste it into your PHP editor</h2>'."\n";
  242. if ($pageHeader) {
  243. #echo_buffer('<h3>'.$pageTitle.'</h3>');
  244. }
  245. echo_buffer("<?php
  246. /*
  247. * IMPORTANT NOTE: This generated file contains only a subset of huge amount
  248. * of options that can be used with phpMyEdit. To get information about all
  249. * features offered by phpMyEdit, check official documentation. It is available
  250. * online and also for download on phpMyEdit project management page:
  251. *
  252. * http://www.platon.sk/projects/main_page.php?project_id=5
  253. */
  254. // MySQL host name, user name, password, database, and table
  255. \$opts['tb'] = '$tb';
  256. \$opts['tb2'] = '$tb2';
  257. // Name of field which is the unique key
  258. \$opts['key'] = '$id';
  259. // Type of key field (int/real/string/date etc.)");
  260. if ($id == '') {
  261. echo_buffer("\$opts['key_type'] = '';");
  262. } else {
  263. $fds = @mysql_list_fields($db,$tb,$dbl);
  264. for ($j = 0; ($fd = @mysql_field_name($fds, $j)) != ''; $j++) {
  265. if ($fd == $id) {
  266. echo_buffer("\$opts['key_type'] = '".@mysql_field_type($fds, $j)."';");
  267. break;
  268. }
  269. }
  270. }
  271. #$extraOpt = '';
  272. #if ($rs->fields['cols']) $extraOpt = 'C';
  273. echo_buffer("
  274. // Sorting field(s)
  275. \$opts['sort_field'] = array('$id');
  276. // Number of records to display on the screen
  277. // Value of -1 lists all records in a table
  278. \$opts['inc'] = 25;
  279. // Options you wish to give the users
  280. // A - add, C - change, P - copy, V - view, D - delete,
  281. // F - filter, I - initial sort suppressed
  282. \$opts['options'] = ''; // FACDPV
  283. // Number of lines to display on multiple selection filters
  284. \$opts['multiple'] = '4';
  285. // Navigation style: B - buttons (default), T - text links, G - graphic links
  286. // Buttons position: U - up, D - down (default)
  287. \$opts['navigation'] = 'UG'; //'DB';
  288. // Display special page elements
  289. \$opts['display'] = array(
  290. 'form' => true,
  291. 'query' => true,
  292. 'sort' => true,
  293. 'time' => true,
  294. 'tabs' => true
  295. );
  296. \$opts['logtable'] = 'qb_changelog';
  297. /* Get the user's default language and use it if possible or you can
  298. specify particular one you want to use. Refer to official documentation
  299. for list of available languages. */
  300. \$opts['language'] = \$HTTP_SERVER_VARS['HTTP_ACCEPT_LANGUAGE'];
  301. /* Table-level filter capability. If set, it is included in the WHERE clause
  302. of any generated SELECT statement in SQL query. This gives you ability to
  303. work only with subset of data from table.
  304. \$opts['filters'] = \"column1 like '%11%' AND column2<17\";
  305. \$opts['filters'] = \"section_id = 9\";
  306. \$opts['filters'] = \"PMEtable0.sessions_count > 200\";
  307. */
  308. /* Field definitions
  309. Fields will be displayed left to right on the screen in the order in which they
  310. appear in generated list. Here are some most used field options documented.
  311. ['name'] is the title used for column headings, etc.;
  312. ['maxlen'] maximum length to display add/edit/search input boxes
  313. ['trimlen'] maximum length of string content to display in row listing
  314. ['width'] is an optional display width specification for the column
  315. e.g. ['width'] = '100px';
  316. ['mask'] a string that is used by sprintf() to format field output
  317. ['sort'] true or false; means the users may sort the display on this column
  318. ['strip_tags'] true or false; whether to strip tags from content
  319. ['nowrap'] true or false; whether this field should get a NOWRAP
  320. ['required'] true or false; if generate javascript to prevent null entries
  321. ['select'] T - text, N - numeric, D - drop-down, M - multiple selection
  322. ['options'] optional parameter to control whether a field is displayed
  323. L - list, F - filter, A - add, C - change, P - copy, D - delete, V - view
  324. Another flags are:
  325. R - indicates that a field is read only
  326. W - indicates that a field is a password field
  327. H - indicates that a field is to be hidden and marked as hidden
  328. ['URL'] is used to make a field 'clickable' in the display
  329. e.g.: 'mailto:\$value', 'http://\$value' or '\$page?stuff';
  330. ['URLtarget'] HTML target link specification (for example: _blank)
  331. ['textarea']['rows'] and/or ['textarea']['cols']
  332. specifies a textarea is to be used to give multi-line input
  333. e.g. ['textarea']['rows'] = 5; ['textarea']['cols'] = 10
  334. ['values'] restricts user input to the specified constants,
  335. e.g. ['values'] = array('A','B','C') or ['values'] = range(1,99)
  336. ['values']['table'] and ['values']['column'] restricts user input
  337. to the values found in the specified column of another table
  338. ['values']['description'] = 'desc_column'
  339. The optional ['values']['description'] field allows the value(s) displayed
  340. to the user to be different to those in the ['values']['column'] field.
  341. This is useful for giving more meaning to column values. Multiple
  342. descriptions fields are also possible. Check documentation for this.
  343. */
  344. ");
  345. @mysql_select_db($db);
  346. $tb_desc = @mysql_query("DESCRIBE $tb");
  347. $fds = @mysql_list_fields($db, $tb, $dbl);
  348. $num_fds = @mysql_num_fields($fds);
  349. $ts_cnt = 0;
  350. for ($k = 0; $k < $num_fds; $k++) {
  351. $fd = mysql_field_name($fds,$k);
  352. $fm = mysql_fetch_field($fds,$k);
  353. $fn = strtr($fd, '_-.', ' ');
  354. $fn = preg_replace('/(^| +)id( +|$)/', '\\1ID\\2', $fn); // uppercase IDs
  355. $fn = ucfirst($fn);
  356. $row = @mysql_fetch_array($tb_desc);
  357. $label = str_replace('\'','\\\'',$fn);
  358. if ($arrLabel[$fd]) $label = $arrLabel[$fd];
  359. if (eregi(' ', $fd)) echo_buffer('$opts[\'fdd\'][\'`'.$fd.'`\'] = array('); // )
  360. else echo_buffer('$opts[\'fdd\'][\''.$fd.'\'] = array('); // )
  361. echo_buffer(" 'name' => '".$label."',");
  362. $auto_increment = strstr($row[5], 'auto_increment') ? 1 : 0;
  363. if (substr($row[1],0,3) == 'set') {
  364. echo_buffer(" 'select' => 'M',");
  365. } else {
  366. echo_buffer(" 'select' => 'T',");
  367. }
  368. if ($auto_increment) {
  369. echo_buffer(" 'options' => 'AVCPDR', // auto increment");
  370. }
  371. // timestamps are read-only
  372. else if (@mysql_field_type($fds, $k) == 'timestamp') {
  373. if ($ts_cnt > 0) {
  374. echo_buffer(" 'options' => 'AVCPD',");
  375. } else { // first timestamp
  376. echo_buffer(" 'options' => 'AVCPDR', // updated automatically (MySQL feature)");
  377. }
  378. $ts_cnt++;
  379. }
  380. echo_buffer(" 'maxlen' => ".@mysql_field_len($fds,$k).',');
  381. // blobs -> textarea
  382. if (@mysql_field_type($fds,$k) == 'blob') {
  383. echo_buffer(" 'textarea' => array(");
  384. echo_buffer(" 'rows' => 5,");
  385. echo_buffer(" 'cols' => 50),");
  386. }
  387. // SETs and ENUMs get special treatment
  388. if ((substr($row[1],0,3) == 'set' || substr($row[1],0,4) == 'enum')
  389. && ! (($pos = strpos($row[1], '(')) === false)) {
  390. $indent = str_repeat(' ', 18);
  391. $outstr = substr($row[1], $pos + 2, -2);
  392. $outstr = explode("','", $outstr);
  393. $outstr = str_replace("''", "'", $outstr);
  394. $outstr = str_replace('"', '\\"', $outstr);
  395. $outstr = implode("\",\n$indent\"", $outstr);
  396. echo_buffer(" 'values' => array(\n$indent\"".$outstr.'"),');
  397. }
  398. // automatic support for Default values
  399. if ($row[4] != '' && $row[4] != 'NULL') {
  400. echo_buffer(" 'default' => '".$row[4]."',");
  401. } else if ($auto_increment) {
  402. echo_buffer(" 'default' => '0',");
  403. }
  404. if (stristr(@mysql_field_flags($fds, $k), 'not_null') && ! $auto_increment) {
  405. echo_buffer(" 'required' => true,");
  406. }
  407. echo_buffer(" 'sort' => true");
  408. //echo_buffer(" 'nowrap' => false,");
  409. echo_buffer(');');
  410. }
  411. #$enableCols = '';
  412. #if ($rs->fields['cols']) {
  413. # $p = split(',', $rs->fields['cols']);
  414. # foreach ($p as $v) {
  415. # $v = trim($v);
  416. # $enableCols .= "unset(\$opts['fdd']['`".$v."`']['input']);\n";
  417. # }
  418. $onInsert = $rs->fields['oninsert'];
  419. $onUpdate = $rs->fields['onupdate'];
  420. $onDelete = $rs->fields['ondelete'];
  421. $isDelete = $rs->fields['isdelete'];
  422. $readOnly = $rs->fields['readonly'];
  423. if ($onInsert) {
  424. $fileTIA = $baseFilename.".TIA.inc.php";
  425. $optsTIA = "\$opts['triggers']['insert']['after'] = '".$fileTIA."';";
  426. // write the content include file
  427. echo 'Trying write <b>'.$fileTIA.'</b> ';
  428. $TIAhandle = @fopen('./'.$fileTIA, 'w+');
  429. if ($TIAhandle) {
  430. $TIAbuffer = "<"."? require_once 'auth.php';
  431. global \$adodb;
  432. \$adodb->debug = 1;
  433. \$sql = \"".addslashes($onInsert)."\";
  434. \$p = explode(';', \$sql);
  435. foreach (\$p as \$key => \$sql) {
  436. \$sql = trim(\$sql);
  437. if (!\$sql) continue;
  438. foreach (\$newvals as \$k => \$v) {
  439. \$v = addslashes(\$v);
  440. \$sql = str_replace('['.\$k.']', \"'\$v'\", \$sql);
  441. }
  442. \$rs = \$adodb->Execute(\$sql);
  443. if (!\$rs) echo \$adodb->ErrorMsg();
  444. }
  445. \$adodb->debug = 0;
  446. ?".">";
  447. fwrite($TIAhandle, $TIAbuffer);
  448. flush($TIAhandle);
  449. fclose($TIAhandle);
  450. echo '<b><font color=green>Success</font></b><br>';
  451. } else {
  452. echo '<b><font color=red>Failed</font></b><br>';
  453. exit;
  454. }
  455. }
  456. if ($onUpdate) {
  457. $fileTUA = $baseFilename.".TUA.inc.php";
  458. $optsTUA = "\$opts['triggers']['update']['after'] = '".$fileTUA."';";
  459. // write the content include file
  460. echo 'Trying write <b>'.$fileTUA.'</b> ';
  461. $TUAhandle = @fopen('./'.$fileTUA, 'w+');
  462. if ($TUAhandle) {
  463. $TUAbuffer = "<"."? require_once 'auth.php';
  464. global \$adodb;
  465. \$rs2 = \$adodb->Execute(\"SELECT * FROM \".\$this->tb.\" \".
  466. \" WHERE \".\$this->key.\" = ?\", \$this->rec);
  467. \$adodb->debug = 1;
  468. \$sql = \"".addslashes($onUpdate)."\";
  469. \$p = explode(';', \$sql);
  470. foreach (\$p as \$key => \$sql) {
  471. \$sql = trim(\$sql);
  472. if (!\$sql) continue;
  473. if (\$rs2->EOF) continue;
  474. foreach (\$rs2->fields as \$k => \$v) {
  475. \$v = addslashes(\$v);
  476. \$sql = str_replace('['.\$k.']', \"'\$v'\", \$sql);
  477. }
  478. \$rs = \$adodb->Execute(\$sql);
  479. if (!\$rs) echo \$adodb->ErrorMsg();
  480. }
  481. \$adodb->debug = 0;
  482. ?".">";
  483. fwrite($TUAhandle, $TUAbuffer);
  484. flush($TUAhandle);
  485. fclose($TUAhandle);
  486. echo '<b><font color=green>Success</font></b><br>';
  487. } else {
  488. echo '<b><font color=red>Failed</font></b><br>';
  489. exit;
  490. }
  491. }
  492. if ($onDelete) {
  493. $fileTDA = $baseFilename.".TDA.inc.php";
  494. $optsTDA = "\$opts['triggers']['delete']['after'] = '".$fileTDA."';";
  495. // write the content include file
  496. echo 'Trying write <b>'.$fileTDA.'</b> ';
  497. $TDAhandle = @fopen('./'.$fileTDA, 'w+');
  498. if ($TDAhandle) {
  499. $TDAbuffer = "<"."? require_once 'auth.php';
  500. global \$adodb;
  501. \$adodb->debug = 1;
  502. \$sql = \"".addslashes($onDelete)."\";
  503. \$p = explode(';', \$sql);
  504. foreach (\$p as \$key => \$sql) {
  505. \$sql = trim(\$sql);
  506. if (!\$sql) continue;
  507. foreach (\$oldvals as \$k => \$v) {
  508. \$v = addslashes(\$v);
  509. \$sql = str_replace('['.\$k.']', \"'\$v'\", \$sql);
  510. }
  511. \$rs = \$adodb->Execute(\$sql);
  512. if (!\$rs) echo \$adodb->ErrorMsg();
  513. }
  514. \$adodb->debug = 0;
  515. ?".">";
  516. fwrite($TDAhandle, $TDAbuffer);
  517. flush($TDAhandle);
  518. fclose($TDAhandle);
  519. echo '<b><font color=green>Success</font></b><br>';
  520. } else {
  521. echo '<b><font color=red>Failed</font></b><br>';
  522. exit;
  523. }
  524. }
  525. $disableCols = '';
  526. $piece = explode(",", $readOnly);
  527. foreach ($piece as $k => $v) {
  528. $v = addslashes(trim($v));
  529. $disableCols .= "if (\$opts['fdd']['".$v."']) {
  530. \$opts['fdd']['".$v."']['input'] = 'R';
  531. }";
  532. }
  533. if ($isDelete) {
  534. $disableCols = "
  535. function flag_enabled(\$rec) {
  536. global \$adodb, \$opts;
  537. \$rs2 = \$adodb->Execute('SELECT * FROM '.\$opts['tb'].' '.
  538. ' WHERE '.\$opts['key'].' = ? ', array(\$rec));
  539. if (\$rs2->EOF) return 1;
  540. \$sql = \"".addslashes($isDelete)."\";
  541. \$sql = trim(\$sql);
  542. if (!\$sql) return 1;
  543. foreach (\$rs2->fields as \$k => \$v) {
  544. \$v = addslashes(\$v);
  545. \$sql = str_replace('['.\$k.']', \"'\$v'\", \$sql);
  546. }
  547. \$rs = \$adodb->Execute(\$sql);
  548. if (\$rs->EOF) return 1;
  549. return 0;
  550. }
  551. if (flag_enabled(\$_REQUEST['rec']) === 0) {
  552. ".$disableCols."
  553. }
  554. ";
  555. }
  556. #}
  557. #foreach (\$opts['fdd'] as \$k => \$v) {
  558. # \$opts['fdd'][\$k]['input'] = 'R';
  559. #}
  560. #".$enableCols."
  561. #\$moduleId = 'View.View';
  562. #if (\$userAction['editData']) \$opts['options'] .= '".$extraOpt."';
  563. $canInsert = $onInsert ? 'A' : '';
  564. $canUpdate = $onUpdate ? 'C' : '';
  565. $canDelete = $onDelete ? 'D' : '';
  566. echo_buffer("
  567. ".$disableCols."
  568. ".$optsTIA."
  569. ".$optsTUA."
  570. ".$optsTDA."
  571. \$opts['fdd']['qb_id']['input'] = 'H';
  572. if (\$isSupervisor) {
  573. \$userAction['add'] = 1;
  574. \$userAction['change'] = 1;
  575. \$userAction['delete'] = 1;
  576. \$userAction['list'] = 1;
  577. \$userAction['filter'] = 1;
  578. } else {
  579. \$userAction = getViewActions(\$_SESSION['userid'], '".$rs->fields['name']."');
  580. }
  581. if (\$userAction['add']) \$opts['options'] .= '".$canInsert."';
  582. if (\$userAction['change']) \$opts['options'] .= '".$canUpdate."';
  583. if (\$userAction['delete']) \$opts['options'] .= '".$canDelete."';
  584. \$opts['filters'] = '1=0';
  585. if (\$userAction['list']) \$opts['filters'] = '';
  586. if (\$userAction['filter']) \$opts['options'] .= 'F';
  587. // Now important call to phpMyEdit
  588. require_once 'phpMyEdit.class.php';
  589. new phpMyEdit(\$opts);
  590. ?>
  591. ");
  592. $css_directive = <<<END
  593. <style type="text/css">
  594. table { border: #004d9c 1px solid; border-collapse: collapse; border-spacing: 0px; width: 100%; }
  595. th { border: #004d9c 1px solid; padding: 4px; background: #add8e6; }
  596. td { border: #004d9c 1px solid; padding: 3px; }
  597. hr { border: 0px solid; padding: 0px; margin: 0px; border-top-width: 1px; height: 1px; }
  598. </style>
  599. END;
  600. $css_directive = <<<END
  601. <link rel="stylesheet" href="phpME.css" type="text/css"></link>
  602. END;
  603. if (! $CSSstylesheet) {
  604. $css_directive = '';
  605. }
  606. if ($HTMLissues) {
  607. $htmlbuffer = <<<END
  608. <?php require_once 'auth.php'; ?>
  609. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
  610. "http://www.w3.org/TR/html4/loose.dtd">
  611. <html>
  612. <head>
  613. <title>$pageTitle</title>
  614. $css_directive
  615. </head>
  616. <body>
  617. END;
  618. $htmlbuffer .= "
  619. <script language=javascript>
  620. function windowOpen(u,W,H) {
  621. TopPosition = (screen.height) ? (screen.height-H)/2 : 0;
  622. LeftPosition = (screen.width) ? (screen.width-W)/2 : 0;
  623. settings = 'height='+H+',width='+W+',top='+TopPosition+',left='+LeftPosition+
  624. ',scrollbars=1,resizable=0,toolbar=0,location=0,directories=0,status=0,menubar=0';
  625. win = window.open(u,'_blank',settings);
  626. return win;
  627. }
  628. function exporttable(tb) {
  629. //windowOpen('exporttable.php?tableid='+tb, 600, 200);
  630. location.href = ('exporttable.php?tableid='+tb);
  631. }
  632. </script>
  633. <h3>$pageTitle
  634. <input type=button value='".__('Export CSV')."' onClick='exporttable(\"$tb\")'>
  635. </h3>
  636. ";
  637. $buffer = $htmlbuffer."\n" . $buffer;
  638. } else if ($CSSstylesheet) {
  639. $buffer = $css_directive . $buffer;
  640. }
  641. if ($HTMLissues) {
  642. $buffer .= "</body>\n";
  643. $buffer .= "</html>\n";
  644. }
  645. // write the content include file
  646. echo 'Trying to write content file to: <b>'.'./'.$contentFile.'</b><br>'."\n";
  647. $filehandle = @fopen('./'.$contentFile, 'w+');
  648. if ($filehandle) {
  649. fwrite($filehandle, $buffer);
  650. flush($filehandle);
  651. fclose($filehandle);
  652. echo 'phpMyEdit content file written successfully<br>';
  653. /* QBUILDER TRAP */
  654. echo "
  655. <script language=javascript>
  656. location.href = '$contentFile';
  657. </script>
  658. ";
  659. /* QBUILDER TRAP */
  660. } else {
  661. echo 'phpMyEdit content file was NOT written due to inssufficient privileges.<br>';
  662. echo 'Please copy and paste content listed below to <i>'.'./'.$contentFile.'</i> file.';
  663. }
  664. echo '<br><hr>';
  665. echo '<pre>';
  666. echo_html($buffer);
  667. echo '</pre><hr>'."\n";
  668. }
  669. ?>
  670. </body>
  671. </html>