report_open3.php 31 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027
  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_report WHERE id = ?", $_GET['id']);
  68. if (!$rs || $rs->EOF) die("Error: View '".$_GET['id']."' does not exist.");
  69. $tableid = "qb_report_".abs(crc32($_SESSION['userid']."_".$rs->fields['id']));
  70. $tableid2 = "qb_report_".$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. // template
  79. $pkey = $rs->fields['pkey'];
  80. $reportName = $rs->fields['name'];
  81. $groupText = $rs->fields['groupby'];
  82. $parameterText = $rs->fields['paramtxt'];
  83. $paramsql = $rs->fields['paramsql'];
  84. $rs2 = $adodb->SelectLimit("SELECT * FROM ".$tableid, 1);
  85. $rows = $rs2->GetRows();
  86. $smartyFilename = 'report_'.htmlspecialchars($reportName);
  87. $assignTxt = '';
  88. $fileTpl = "templates".DIRECTORY_SEPARATOR.$smartyFilename."_default.tpl";
  89. $Tplhandle = @fopen($fileTpl, 'w+');
  90. if ($Tplhandle) {
  91. $columnHeader = $fieldText = $detailText = $formText = '';
  92. $columnCount = 0;
  93. $rows0 = $rows[0];
  94. if (!is_array($rows0)) $rows0 = array();
  95. $fieldText = implode(", ", array_keys($rows0));
  96. foreach ($rows0 as $k => $v) {
  97. if ($k == 'qb_id') continue;
  98. $assignTxt .= '$smarty->assign("'.$k.'Txt", __("'.$k.'", "'.$k.'", '.
  99. ' $tableid2));'."\n";
  100. $columnHeader .= "\t\t<th>{\$".$k."Txt}</th>\n";
  101. $detailText .= "\t\t<td>&nbsp;{\$rows[data].".$k."}</td>\n";
  102. $formText .= "
  103. <tr>
  104. <td>{\$".$k."Txt}</td>
  105. <td>{\$".$k."Val}</td>
  106. </tr>";
  107. $columnCount++;
  108. }
  109. $parameterForm = '';
  110. $p = explode(",", $parameterText);
  111. foreach ($p as $k => $v) {
  112. $v = trim($v);
  113. if (!$v) continue;
  114. $assignTxt .= '$smarty->assign("'.$v.'Txt", __("'.$v.'", "'.$v.'", '.
  115. ' $tableid2));'."\n";
  116. $parameterForm .= '<tr>
  117. <td>{$'.$v.'Txt}</td>
  118. <td><input type="text" name="'.$v.'" value="{$smarty.post.'.$v.'}"></td>
  119. </tr>';
  120. }
  121. if ($parameterForm) {
  122. $parameterForm = '
  123. <form method="POST" action="{$smarty.server.PHP_SELF}">
  124. <table align=center>
  125. '.$parameterForm.'
  126. <tr><td colspan=2 align=center>
  127. <input type=submit value="{$Query}"></td></tr>
  128. </table>
  129. </form>
  130. ';
  131. }
  132. $groupHeader = '';
  133. if ($groupText) {
  134. $p1 = explode(";", $groupText);
  135. foreach ($p1 as $k1 => $v1) {
  136. $v1 = trim($v1);
  137. if (!$v1) continue;
  138. $p2 = explode(":", $v1);
  139. $group = trim($p2[0]);
  140. $first = $calc = $reset = $reset2 = $print = '';
  141. $p3 = explode(",", trim($p2[1]));
  142. foreach ($p3 as $k3 => $v3) {
  143. $v3 = trim($v3);
  144. if (!$v3) continue;
  145. $p4 = explode(".", $v3);
  146. $func = strtoupper(trim($p4[0]));
  147. $fld = trim($p4[1]);
  148. if (!$fld) $fld = $group;
  149. if ($func == 'SUM') {
  150. $first .= "
  151. {* ".$group.":".$func.".".$fld."; *}
  152. {assign var=\"".$group."Group_".$func."er\" value=0}
  153. ";
  154. $calc .= "
  155. {* $group:$func.$fld; *}
  156. {assign var=\"".$group."Group_".$func."er\"
  157. value=\"`\$".$group."Group_".$func."er+\$rows[data].".$fld."`\"}
  158. ";
  159. if ($group != "ALL") {
  160. $reset .= "
  161. {* $group:$func.$fld; *}
  162. {assign var=\"".$group."Group_".$func."\" value=\$".$group."Group_".$func."er}
  163. {assign var=\"".$group."Group_".$func."er\" value=0}
  164. ";
  165. } else {
  166. $reset2 .= "
  167. {* $group:$func.$fld; *}
  168. {assign var=\"".$group."Group_".$func."\" value=\$".$group."Group_".$func."er}
  169. {assign var=\"".$group."Group_".$func."er\" value=0}
  170. ";
  171. }
  172. $print .= "
  173. {\$".$fld."Txt}={\$".$group."Group_".$func."}
  174. ";
  175. } else if ($func == 'COUNT') {
  176. $print .= "
  177. {\$".strtolower($func)."}={\$".$group."Group_".$func."}
  178. ";
  179. }
  180. }
  181. $groupHeader .= "
  182. {* \$rows[data] *}
  183. {if \$smarty.section.data.first}
  184. {assign var=\"".$group."Group\" value=\$rows[data].".$group."}
  185. {* ".$group.":COUNT; *}
  186. {counter name=\"".$group."Group_counter\" start=0 print=false
  187. assign=\"".$group."Group_counter\"}
  188. ".$first."
  189. {/if}
  190. {if \$".$group."Group_counter == 0}
  191. {assign var=\"".$group."Group\" value=\$rows[data.index].".$group."}
  192. {/if}
  193. {* ".$group.":COUNT; *}
  194. {counter name=\"".$group."Group_counter\" print=false}
  195. ".$calc."
  196. {if \$".$group."Group != \$rows[data.index_next].".$group."}
  197. {* ".$group.":COUNT; *}
  198. {assign var=\"".$group."Group_COUNT\" value=\$".$group."Group_counter}
  199. {counter name=\"".$group."Group_counter\" start=0 print=false
  200. assign=\"".$group."Group_counter\"}
  201. ".$reset."
  202. {/if}
  203. ";
  204. if ($group != "ALL") {
  205. $groupFooter .= "
  206. {if \$".$group."Group_counter == 0}
  207. <tr><th colspan={\$columnCount}>
  208. {\$subTotal} ".$print."
  209. </th></tr>
  210. {/if}
  211. ";
  212. } else {
  213. $columnFooter .= "
  214. ".$reset2."
  215. <tr><th colspan={\$columnCount}>
  216. {\$grandTotal} ".$print."
  217. </th></tr>
  218. ";
  219. }
  220. }
  221. }
  222. $Tplbuffer = "
  223. {* title *}
  224. {include file=\"reportHeader.tpl\"}
  225. {if \$columnCount > 0}
  226. {* parameter *}
  227. {* ".$parameterText." *}
  228. ".$parameterForm."
  229. {/if}
  230. {* variable *}
  231. {* {\$REPORT_COUNT} *}
  232. {* field *}
  233. {* ".$fieldText." *}
  234. {* group *}
  235. {* ".$groupText." *}
  236. {* pageHeader *}
  237. {* <p>{\$Total}: {\$REPORT_COUNT}</p> *}
  238. {\$form_begin}
  239. {if \$columnCount > 0}
  240. {include file=\"listButtons.tpl\"}
  241. {else}
  242. {include file=\"recordButtons.tpl\"}
  243. {/if}
  244. <hr>
  245. // Hier könnte die Lösung sein!!!
  246. {if \$columnCount > 0}
  247. {section name=data loop=\$rows}
  248. {* columnHeader *}
  249. {if \$smarty.section.data.first}
  250. <table border=1 width=100%>
  251. <tr>
  252. <th>&nbsp;</th>
  253. ".$columnHeader."
  254. </tr>
  255. {/if}
  256. {* groupHeader *}
  257. ".$groupHeader."
  258. {* detail *}
  259. {if %data.rownum% % 2 == 0}
  260. <tr bgcolor=lightgray>
  261. {else}
  262. <tr>
  263. {/if}
  264. <td nowrap>
  265. {\$rows[data].link_change}
  266. {\$rows[data].link_delete}
  267. </td>
  268. ".$detailText."
  269. </tr>
  270. {* groupFooter *}
  271. ".$groupFooter."
  272. {* columnFooter *}
  273. {if \$smarty.section.data.last}
  274. ".$columnFooter."
  275. </table>
  276. {/if}
  277. {sectionelse}
  278. <h1>there are no values in \$rows.</h1>
  279. {/section}
  280. {else}
  281. {section name=html loop=\$form_hidden}
  282. {\$form_hidden[html]}
  283. {/section}
  284. <table>
  285. ".$formText."
  286. </table>
  287. {/if}
  288. {* summary *}
  289. {* pageFooter *}
  290. {\$form_end}
  291. {include file=\"reportFooter.tpl\"}
  292. ";
  293. fwrite($Tplhandle, $Tplbuffer);
  294. flush($Tplhandle);
  295. fclose($Tplhandle);
  296. } else {
  297. echo 'Trying write <b>'.$fileTpl.'</b> <b><font color=red>Failed</font></b><br>';
  298. exit;
  299. }
  300. $smartyHeader = "
  301. \$tableid = '".$tableid."';
  302. \$tableid2 = '".$tableid2."';
  303. \$reportName = '".$reportName."';
  304. \$paramsql = '".$paramsql."';
  305. \$isparam = false;
  306. foreach (\$_POST as \$k => \$v) {
  307. if (strstr(\$paramsql, '['.\$k.']')) \$isparam = true;
  308. \$paramsql = str_replace('['.\$k.']', \"'\".\$v.\"'\", \$paramsql);
  309. }
  310. if (\$isparam) \$opts['filters'] = \$paramsql;
  311. require 'smarty/libs/Smarty.class.php';
  312. \$smarty = new Smarty;
  313. \$smarty->compile_check = true;
  314. \$smarty->debugging = false;
  315. \$smarty->register_modifier(\"number_format\",\"number_format\");
  316. \$smarty->assign('count', __('COUNT'));
  317. \$smarty->assign('grandTotal', __('grandTotal'));
  318. \$smarty->assign('subTotal', __('subTotal'));
  319. \$smarty->assign('title', __(\"TITLE\", \$reportName, \$tableid2));
  320. \$smarty->assign('Total', __('Total'));
  321. \$smarty->assign('Query', __('Query'));
  322. ".$assignTxt."
  323. ";
  324. $smartyFooter = "
  325. \$columnCount = \$smarty->get_template_vars('columnCount');
  326. #if (\$columnCount < 1) return;
  327. if (\$smarty->template_exists('".$smartyFilename.".tpl')) {
  328. \$smarty->display('".$smartyFilename.".tpl');
  329. } else {
  330. \$smarty->display('".$smartyFilename."_default.tpl');
  331. }
  332. ";
  333. $hn = $adodb_host;
  334. $un = $adodb_user;
  335. $pw = $adodb_pass;
  336. $db = $adodb_db;
  337. $tb = $tableid;
  338. $tb2 = $tableid2;
  339. $id = 'qb_id';
  340. $submit = true;
  341. $options = 1;
  342. $baseFilename = 'phpME_report_'.htmlspecialchars(abs(crc32($tb)));
  343. $pageTitle = __("TITLE", $rs->fields['name'], $tableid2);
  344. $pageHeader = true;
  345. $HTMLissues = true;
  346. $CSSstylesheet = true;
  347. /* QBUILDER TRAP */
  348. $phpExtension = '.php';
  349. if (isset($baseFilename) && $baseFilename != '') {
  350. $phpFile = $baseFilename.$phpExtension;
  351. //$contentFile = $baseFilename.'Content.inc';
  352. $contentFile = $baseFilename.'.php';
  353. } elseif (isset($tb)) {
  354. $phpFile = $tb.$phpExtension;
  355. //$contentFile = $tb.'Content.inc';
  356. $contentFile = $tb.'.php';
  357. } else {
  358. $phpFile = 'index'.$phpExtension;
  359. //$contentFile = 'Content.inc';
  360. $contentFile = 'phpMyEdit-content.php';
  361. }
  362. $buffer = '';
  363. function echo_html($x)
  364. {
  365. echo htmlspecialchars($x),"\n";
  366. }
  367. function echo_buffer($x)
  368. {
  369. global $buffer;
  370. $buffer .= $x."\n";
  371. }
  372. $self = basename($HTTP_SERVER_VARS['PHP_SELF']);
  373. $dbl = @mysql_pconnect($hn, $un, $pw);
  374. if ((!$dbl) or empty($submit)) {
  375. echo '<h1>Please log in to your MySQL database</h1>';
  376. if (!empty($submit)) {
  377. echo '<h2>Sorry - login failed - please try again</h2>'."\n";
  378. }
  379. if (! isset($hn)) {
  380. $hn = 'localhost';
  381. }
  382. echo '
  383. <form action="'.htmlspecialchars($self).'" method="POST">
  384. <table border="1" cellpadding="1" cellspacing="0" summary="Login form">
  385. <tr>
  386. <td>Hostname:</td>
  387. <td><input type="text" name="hn" value="'.htmlspecialchars($hn).'"></td>
  388. </tr><tr>
  389. <td>Username:</td>
  390. <td><input type="text" name="un" value="'.htmlspecialchars($un).'"></td>
  391. </tr><tr>
  392. <td>Password:</td>
  393. <td><input type="password" name="pw" value="'.htmlspecialchars($pw).'"></td>
  394. </tr>
  395. </table><br>
  396. <input type="submit" name="submit" value="Submit">
  397. </form>'."\n";
  398. } else if (! isset($db)) {
  399. $dbs = @mysql_list_dbs($dbl);
  400. $num_dbs = @mysql_num_rows($dbs);
  401. echo '<h1>Please select a database</h1>
  402. <form action="'.htmlspecialchars($self).'" method="POST">
  403. <input type="hidden" name="hn" value="'.htmlspecialchars($hn).'">
  404. <input type="hidden" name="un" value="'.htmlspecialchars($un).'">
  405. <input type="hidden" name="pw" value="'.htmlspecialchars($pw).'">
  406. <table border="1" cellpadding="1" cellspacing="1" summary="Database selection">'."\n";
  407. for ($i = 0; $i < $num_dbs; $i++) {
  408. $db = @mysql_db_name($dbs, $i);
  409. $checked = ! strcasecmp($un, $db) ? ' checked' : '';
  410. $db = htmlspecialchars($db);
  411. echo '<tr><td><input'.$checked.' type="radio" name="db" value="'.$db.'"></td><td>'.$db.'</td></tr>'."\n";
  412. }
  413. echo '</table><br>
  414. <input type="submit" name="submit" value="Submit">
  415. <input type="submit" name="cancel" value="Cancel">
  416. </form>'."\n";
  417. } else if (!isset($tb)) {
  418. echo '<h1>Please select a table from database: '.htmlspecialchars($db).'</h1>
  419. <form action="'.htmlspecialchars($self).'" method="POST">
  420. <input type="hidden" name="hn" value="'.htmlspecialchars($hn).'">
  421. <input type="hidden" name="un" value="'.htmlspecialchars($un).'">
  422. <input type="hidden" name="pw" value="'.htmlspecialchars($pw).'">
  423. <input type="hidden" name="db" value="'.htmlspecialchars($db).'">
  424. <table border="1" cellpadding="1" cellspacing="1" summary="Table selection">'."\n";
  425. $tbs = @mysql_list_tables($db, $dbl);
  426. $num_tbs = @mysql_num_rows($tbs);
  427. for ($j = 0; $j < $num_tbs; $j++) {
  428. $tb = @mysql_tablename($tbs, $j);
  429. $tb = htmlspecialchars($tb);
  430. $checked = $j == 0 ? ' checked' : '';
  431. echo '<tr><td><input'.$checked.' type="radio" name="tb" value="'.$tb.'"></td><td>'.$tb.'</td></tr>'."\n";
  432. }
  433. echo '</table><br>
  434. <input type="submit" name="submit" value="Submit">
  435. <input type="submit" name="cancel" value="Cancel">
  436. </form>'."\n";
  437. } else if (!isset($id)) {
  438. echo ' <h1>Please select an identifier from table: '.htmlspecialchars($tb).'</h1>
  439. <p>
  440. This field will be used in change, view, copy and delete operations.<br>
  441. The field should be numeric and must uniquely identify a record.
  442. </p>
  443. <p>
  444. Please note, that there were problems reported by phpMyEdit users
  445. regarding using MySQL reserved word as unique key name (the example for
  446. this is "key" name). Thus we recommend you to use another name
  447. of unique key. Usage of "id" or "ID" should be safe and good idea.
  448. </p>
  449. <form action="'.htmlspecialchars($self).'" method="POST">
  450. <input type="hidden" name="hn" value="'.htmlspecialchars($hn).'">
  451. <input type="hidden" name="un" value="'.htmlspecialchars($un).'">
  452. <input type="hidden" name="pw" value="'.htmlspecialchars($pw).'">
  453. <input type="hidden" name="db" value="'.htmlspecialchars($db).'">
  454. <input type="hidden" name="tb" value="'.htmlspecialchars($tb).'">
  455. <table border="1" cellpadding="1" cellspacing="1" summary="Key selection">'."\n";
  456. // <tr><td><input type="radio" name="id" value="">
  457. // <td><i>None</i></td><td><i>No id field required</i></td></tr>
  458. @mysql_select_db($db);
  459. $tb_desc = @mysql_query("DESCRIBE $tb");
  460. $fds = @mysql_list_fields($db,$tb,$dbl);
  461. for ($j = 0; ($fd = @mysql_field_name($fds, $j)) != false; $j++) {
  462. $ff = @mysql_field_flags($fds, $j);
  463. strlen($ff) <= 0 && $ff = '---';
  464. $checked = stristr($ff, 'primary_key') ? ' checked' : '';
  465. echo '<tr><td><input',$checked,' type="radio" name="id" value="',htmlspecialchars($fd),'"></td>';
  466. echo '<td>',htmlspecialchars($fd),'</td>';
  467. echo '<td>',htmlspecialchars($ff),'</td>';
  468. $r = @mysql_fetch_array($tb_desc, $j);
  469. }
  470. echo '</table><br>
  471. <input type="submit" name="submit" value="Submit">
  472. <input type="submit" name="cancel" value="Cancel">
  473. </form>'."\n";
  474. } else if (!isset($options)) {
  475. echo '<h1>Please select additional options</h1>
  476. <form action="'.htmlspecialchars($self).'" method="POST">
  477. <input type="hidden" name="hn" value="'.htmlspecialchars($hn).'">
  478. <input type="hidden" name="un" value="'.htmlspecialchars($un).'">
  479. <input type="hidden" name="pw" value="'.htmlspecialchars($pw).'">
  480. <input type="hidden" name="db" value="'.htmlspecialchars($db).'">
  481. <input type="hidden" name="tb" value="'.htmlspecialchars($tb).'">
  482. <input type="hidden" name="id" value="'.htmlspecialchars($id).'">
  483. <table border="1" cellpadding="1" cellspacing="1" summary="Additional options">
  484. <tr><td>Base filename</td><td><input type="text" name=baseFilename value ="'.htmlspecialchars($tb).'"></td></tr>
  485. <tr><td>Page title</td><td><input type="text" name=pageTitle value ="'.htmlspecialchars($tb).'"></td></tr>
  486. <tr><td>Page header</td><td><input type="checkbox" name=pageHeader></td></tr>
  487. <tr><td>HTML header &amp; footer</td><td><input type="checkbox" name=HTMLissues></td></tr>
  488. <tr><td>CSS basic stylesheet</td><td><input checked type="checkbox" name=CSSstylesheet></td></tr>
  489. </table><br>
  490. <input type="submit" name="submit" value="Submit">
  491. <input type="submit" name="cancel" value="Cancel">
  492. <input type="hidden" name="options" value="1">
  493. </form>'."\n";
  494. } else {
  495. echo '<h1>Here is your phpMyEdit calling program</h1>'."\n";
  496. echo '<h2>You may now copy and paste it into your PHP editor</h2>'."\n";
  497. if ($pageHeader) {
  498. #echo_buffer('<h3>'.$pageTitle.'</h3>');
  499. }
  500. echo_buffer("<?php
  501. /*
  502. * IMPORTANT NOTE: This generated file contains only a subset of huge amount
  503. * of options that can be used with phpMyEdit. To get information about all
  504. * features offered by phpMyEdit, check official documentation. It is available
  505. * online and also for download on phpMyEdit project management page:
  506. *
  507. * http://www.platon.sk/projects/main_page.php?project_id=5
  508. */
  509. // MySQL host name, user name, password, database, and table
  510. \$opts['tb'] = '$tb';
  511. \$opts['tb2'] = '$tb2';
  512. // Name of field which is the unique key
  513. \$opts['key'] = '$id';
  514. // Type of key field (int/real/string/date etc.)");
  515. if ($id == '') {
  516. echo_buffer("\$opts['key_type'] = '';");
  517. } else {
  518. $fds = @mysql_list_fields($db,$tb,$dbl);
  519. for ($j = 0; ($fd = @mysql_field_name($fds, $j)) != ''; $j++) {
  520. if ($fd == $id) {
  521. echo_buffer("\$opts['key_type'] = '".@mysql_field_type($fds, $j)."';");
  522. break;
  523. }
  524. }
  525. }
  526. #$extraOpt = '';
  527. #if ($rs->fields['cols']) $extraOpt = 'C';
  528. echo_buffer("
  529. // Sorting field(s)
  530. \$opts['sort_field'] = array('$id');
  531. // Number of records to display on the screen
  532. // Value of -1 lists all records in a table
  533. \$opts['inc'] = -1;
  534. // Options you wish to give the users
  535. // A - add, C - change, P - copy, V - view, D - delete,
  536. // F - filter, I - initial sort suppressed
  537. \$opts['options'] = ''; // FACDPV
  538. // Number of lines to display on multiple selection filters
  539. \$opts['multiple'] = '4';
  540. // Navigation style: B - buttons (default), T - text links, G - graphic links
  541. // Buttons position: U - up, D - down (default)
  542. \$opts['navigation'] = 'UG'; //'DB';
  543. // Display special page elements
  544. \$opts['display'] = array(
  545. 'form' => true,
  546. 'query' => true,
  547. 'sort' => true,
  548. 'time' => true,
  549. 'tabs' => true
  550. );
  551. \$opts['logtable'] = 'qb_changelog';
  552. /* Get the user's default language and use it if possible or you can
  553. specify particular one you want to use. Refer to official documentation
  554. for list of available languages. */
  555. \$opts['language'] = \$HTTP_SERVER_VARS['HTTP_ACCEPT_LANGUAGE'];
  556. /* Table-level filter capability. If set, it is included in the WHERE clause
  557. of any generated SELECT statement in SQL query. This gives you ability to
  558. work only with subset of data from table.
  559. \$opts['filters'] = \"column1 like '%11%' AND column2<17\";
  560. \$opts['filters'] = \"section_id = 9\";
  561. \$opts['filters'] = \"PMEtable0.sessions_count > 200\";
  562. */
  563. /* Field definitions
  564. Fields will be displayed left to right on the screen in the order in which they
  565. appear in generated list. Here are some most used field options documented.
  566. ['name'] is the title used for column headings, etc.;
  567. ['maxlen'] maximum length to display add/edit/search input boxes
  568. ['trimlen'] maximum length of string content to display in row listing
  569. ['width'] is an optional display width specification for the column
  570. e.g. ['width'] = '100px';
  571. ['mask'] a string that is used by sprintf() to format field output
  572. ['sort'] true or false; means the users may sort the display on this column
  573. ['strip_tags'] true or false; whether to strip tags from content
  574. ['nowrap'] true or false; whether this field should get a NOWRAP
  575. ['required'] true or false; if generate javascript to prevent null entries
  576. ['select'] T - text, N - numeric, D - drop-down, M - multiple selection
  577. ['options'] optional parameter to control whether a field is displayed
  578. L - list, F - filter, A - add, C - change, P - copy, D - delete, V - view
  579. Another flags are:
  580. R - indicates that a field is read only
  581. W - indicates that a field is a password field
  582. H - indicates that a field is to be hidden and marked as hidden
  583. ['URL'] is used to make a field 'clickable' in the display
  584. e.g.: 'mailto:\$value', 'http://\$value' or '\$page?stuff';
  585. ['URLtarget'] HTML target link specification (for example: _blank)
  586. ['textarea']['rows'] and/or ['textarea']['cols']
  587. specifies a textarea is to be used to give multi-line input
  588. e.g. ['textarea']['rows'] = 5; ['textarea']['cols'] = 10
  589. ['values'] restricts user input to the specified constants,
  590. e.g. ['values'] = array('A','B','C') or ['values'] = range(1,99)
  591. ['values']['table'] and ['values']['column'] restricts user input
  592. to the values found in the specified column of another table
  593. ['values']['description'] = 'desc_column'
  594. The optional ['values']['description'] field allows the value(s) displayed
  595. to the user to be different to those in the ['values']['column'] field.
  596. This is useful for giving more meaning to column values. Multiple
  597. descriptions fields are also possible. Check documentation for this.
  598. */
  599. ");
  600. @mysql_select_db($db);
  601. $tb_desc = @mysql_query("DESCRIBE $tb");
  602. $fds = @mysql_list_fields($db, $tb, $dbl);
  603. $num_fds = @mysql_num_fields($fds);
  604. $ts_cnt = 0;
  605. for ($k = 0; $k < $num_fds; $k++) {
  606. $fd = mysql_field_name($fds,$k);
  607. $fm = mysql_fetch_field($fds,$k);
  608. $fn = strtr($fd, '_-.', ' ');
  609. $fn = preg_replace('/(^| +)id( +|$)/', '\\1ID\\2', $fn); // uppercase IDs
  610. $fn = ucfirst($fn);
  611. $row = @mysql_fetch_array($tb_desc);
  612. $label = str_replace('\'','\\\'',$fn);
  613. if ($arrLabel[$fd]) $label = $arrLabel[$fd];
  614. if (eregi(' ', $fd)) echo_buffer('$opts[\'fdd\'][\'`'.$fd.'`\'] = array('); // )
  615. else echo_buffer('$opts[\'fdd\'][\''.$fd.'\'] = array('); // )
  616. echo_buffer(" 'name' => '".$label."',");
  617. $auto_increment = strstr($row[5], 'auto_increment') ? 1 : 0;
  618. if (substr($row[1],0,3) == 'set') {
  619. echo_buffer(" 'select' => 'M',");
  620. } else {
  621. echo_buffer(" 'select' => 'T',");
  622. }
  623. if ($auto_increment) {
  624. echo_buffer(" 'options' => 'AVCPDR', // auto increment");
  625. }
  626. // timestamps are read-only
  627. else if (@mysql_field_type($fds, $k) == 'timestamp') {
  628. if ($ts_cnt > 0) {
  629. echo_buffer(" 'options' => 'AVCPD',");
  630. } else { // first timestamp
  631. echo_buffer(" 'options' => 'AVCPDR', // updated automatically (MySQL feature)");
  632. }
  633. $ts_cnt++;
  634. }
  635. echo_buffer(" 'maxlen' => ".@mysql_field_len($fds,$k).',');
  636. // blobs -> textarea
  637. if (@mysql_field_type($fds,$k) == 'blob') {
  638. echo_buffer(" 'textarea' => array(");
  639. echo_buffer(" 'rows' => 5,");
  640. echo_buffer(" 'cols' => 50),");
  641. }
  642. // SETs and ENUMs get special treatment
  643. if ((substr($row[1],0,3) == 'set' || substr($row[1],0,4) == 'enum')
  644. && ! (($pos = strpos($row[1], '(')) === false)) {
  645. $indent = str_repeat(' ', 18);
  646. $outstr = substr($row[1], $pos + 2, -2);
  647. $outstr = explode("','", $outstr);
  648. $outstr = str_replace("''", "'", $outstr);
  649. $outstr = str_replace('"', '\\"', $outstr);
  650. $outstr = implode("\",\n$indent\"", $outstr);
  651. echo_buffer(" 'values' => array(\n$indent\"".$outstr.'"),');
  652. }
  653. // automatic support for Default values
  654. if ($row[4] != '' && $row[4] != 'NULL') {
  655. echo_buffer(" 'default' => '".$row[4]."',");
  656. } else if ($auto_increment) {
  657. echo_buffer(" 'default' => '0',");
  658. }
  659. if (stristr(@mysql_field_flags($fds, $k), 'not_null') && ! $auto_increment) {
  660. echo_buffer(" 'required' => true,");
  661. }
  662. echo_buffer(" 'sort' => true");
  663. //echo_buffer(" 'nowrap' => false,");
  664. echo_buffer(');');
  665. }
  666. #$enableCols = '';
  667. #if ($rs->fields['cols']) {
  668. # $p = split(',', $rs->fields['cols']);
  669. # foreach ($p as $v) {
  670. # $v = trim($v);
  671. # $enableCols .= "unset(\$opts['fdd']['`".$v."`']['input']);\n";
  672. # }
  673. $onInsert = $rs->fields['oninsert'];
  674. $onUpdate = $rs->fields['onupdate'];
  675. $onDelete = $rs->fields['ondelete'];
  676. $isDelete = $rs->fields['isdelete'];
  677. $readOnly = $rs->fields['readonly'];
  678. if ($onInsert) {
  679. $fileTIA = $baseFilename.".TIA.inc.php";
  680. $optsTIA = "\$opts['triggers']['insert']['after'] = '".$fileTIA."';";
  681. // write the content include file
  682. echo 'Trying write <b>'.$fileTIA.'</b> ';
  683. $TIAhandle = @fopen('./'.$fileTIA, 'w+');
  684. if ($TIAhandle) {
  685. $TIAbuffer = "<"."? require_once 'auth.php';
  686. global \$adodb;
  687. \$adodb->debug = 1;
  688. \$sql = \"".addslashes($onInsert)."\";
  689. \$p = explode(';', \$sql);
  690. foreach (\$p as \$key => \$sql) {
  691. \$sql = trim(\$sql);
  692. if (!\$sql) continue;
  693. foreach (\$newvals as \$k => \$v) {
  694. \$v = addslashes(\$v);
  695. \$sql = str_replace('['.\$k.']', \"'\$v'\", \$sql);
  696. }
  697. \$rs = \$adodb->Execute(\$sql);
  698. if (!\$rs) echo \$adodb->ErrorMsg();
  699. }
  700. \$adodb->debug = 0;
  701. ?".">";
  702. fwrite($TIAhandle, $TIAbuffer);
  703. flush($TIAhandle);
  704. fclose($TIAhandle);
  705. echo '<b><font color=green>Success</font></b><br>';
  706. } else {
  707. echo '<b><font color=red>Failed</font></b><br>';
  708. exit;
  709. }
  710. }
  711. if ($onUpdate) {
  712. $fileTUA = $baseFilename.".TUA.inc.php";
  713. $optsTUA = "\$opts['triggers']['update']['after'] = '".$fileTUA."';";
  714. // write the content include file
  715. echo 'Trying write <b>'.$fileTUA.'</b> ';
  716. $TUAhandle = @fopen('./'.$fileTUA, 'w+');
  717. if ($TUAhandle) {
  718. $TUAbuffer = "<"."? require_once 'auth.php';
  719. global \$adodb;
  720. \$rs2 = \$adodb->Execute(\"SELECT * FROM \".\$this->tb.\" \".
  721. \" WHERE \".\$this->key.\" = ?\", \$this->rec);
  722. \$adodb->debug = 1;
  723. \$sql = \"".addslashes($onUpdate)."\";
  724. \$p = explode(';', \$sql);
  725. foreach (\$p as \$key => \$sql) {
  726. \$sql = trim(\$sql);
  727. if (!\$sql) continue;
  728. if (\$rs2->EOF) continue;
  729. foreach (\$rs2->fields as \$k => \$v) {
  730. \$v = addslashes(\$v);
  731. \$sql = str_replace('['.\$k.']', \"'\$v'\", \$sql);
  732. }
  733. \$rs = \$adodb->Execute(\$sql);
  734. if (!\$rs) echo \$adodb->ErrorMsg();
  735. }
  736. \$adodb->debug = 0;
  737. ?".">";
  738. fwrite($TUAhandle, $TUAbuffer);
  739. flush($TUAhandle);
  740. fclose($TUAhandle);
  741. echo '<b><font color=green>Success</font></b><br>';
  742. } else {
  743. echo '<b><font color=red>Failed</font></b><br>';
  744. exit;
  745. }
  746. }
  747. if ($onDelete) {
  748. $fileTDA = $baseFilename.".TDA.inc.php";
  749. $optsTDA = "\$opts['triggers']['delete']['after'] = '".$fileTDA."';";
  750. // write the content include file
  751. echo 'Trying write <b>'.$fileTDA.'</b> ';
  752. $TDAhandle = @fopen('./'.$fileTDA, 'w+');
  753. if ($TDAhandle) {
  754. $TDAbuffer = "<"."? require_once 'auth.php';
  755. global \$adodb;
  756. \$adodb->debug = 1;
  757. \$sql = \"".addslashes($onDelete)."\";
  758. \$p = explode(';', \$sql);
  759. foreach (\$p as \$key => \$sql) {
  760. \$sql = trim(\$sql);
  761. if (!\$sql) continue;
  762. foreach (\$oldvals as \$k => \$v) {
  763. \$v = addslashes(\$v);
  764. \$sql = str_replace('['.\$k.']', \"'\$v'\", \$sql);
  765. }
  766. \$rs = \$adodb->Execute(\$sql);
  767. if (!\$rs) echo \$adodb->ErrorMsg();
  768. }
  769. \$adodb->debug = 0;
  770. ?".">";
  771. fwrite($TDAhandle, $TDAbuffer);
  772. flush($TDAhandle);
  773. fclose($TDAhandle);
  774. echo '<b><font color=green>Success</font></b><br>';
  775. } else {
  776. echo '<b><font color=red>Failed</font></b><br>';
  777. exit;
  778. }
  779. }
  780. $disableCols = '';
  781. $piece = explode(",", $readOnly);
  782. foreach ($piece as $k => $v) {
  783. $v = addslashes(trim($v));
  784. $disableCols .= "if (\$opts['fdd']['".$v."']) {
  785. \$opts['fdd']['".$v."']['input'] = 'R';
  786. }";
  787. }
  788. if ($isDelete) {
  789. $disableCols = "
  790. function flag_enabled(\$rec) {
  791. global \$adodb, \$opts;
  792. \$rs2 = \$adodb->Execute('SELECT * FROM '.\$opts['tb'].' '.
  793. ' WHERE '.\$opts['key'].' = ? ', array(\$rec));
  794. if (\$rs2->EOF) return 1;
  795. \$sql = \"".addslashes($isDelete)."\";
  796. \$sql = trim(\$sql);
  797. if (!\$sql) return 1;
  798. foreach (\$rs2->fields as \$k => \$v) {
  799. \$v = addslashes(\$v);
  800. \$sql = str_replace('['.\$k.']', \"'\$v'\", \$sql);
  801. }
  802. \$rs = \$adodb->Execute(\$sql);
  803. if (\$rs->EOF) return 1;
  804. return 0;
  805. }
  806. if (flag_enabled(\$_REQUEST['rec']) === 0) {
  807. ".$disableCols."
  808. }
  809. ";
  810. }
  811. #}
  812. #foreach (\$opts['fdd'] as \$k => \$v) {
  813. # \$opts['fdd'][\$k]['input'] = 'R';
  814. #}
  815. #".$enableCols."
  816. #\$moduleId = 'View.View';
  817. #if (\$userAction['editData']) \$opts['options'] .= '".$extraOpt."';
  818. $canInsert = $onInsert ? 'A' : '';
  819. $canUpdate = $onUpdate ? 'C' : '';
  820. $canDelete = $onDelete ? 'D' : '';
  821. echo_buffer("
  822. ".$disableCols."
  823. ".$optsTIA."
  824. ".$optsTUA."
  825. ".$optsTDA."
  826. \$opts['fdd']['qb_id']['input'] = 'H';
  827. if (\$isSupervisor) {
  828. \$userAction['add'] = 1;
  829. \$userAction['change'] = 1;
  830. \$userAction['delete'] = 1;
  831. \$userAction['list'] = 1;
  832. \$userAction['filter'] = 1;
  833. } else {
  834. \$userAction = getViewActions(\$_SESSION['userid'], '".$rs->fields['name']."');
  835. }
  836. if (\$userAction['add']) \$opts['options'] .= '".$canInsert."';
  837. if (\$userAction['change']) \$opts['options'] .= '".$canUpdate."';
  838. if (\$userAction['delete']) \$opts['options'] .= '".$canDelete."';
  839. if (!\$userAction['list']) \$opts['filters'] = '1=0';
  840. if (\$userAction['filter']) \$opts['options'] .= 'F';
  841. ".$smartyHeader."
  842. // Now important call to phpMyEdit
  843. require_once 'phpMyEdit2.class.php';
  844. new phpMyEdit(\$opts);
  845. ".$smartyFooter."
  846. ?>
  847. ");
  848. $css_directive = <<<END
  849. <style type="text/css">
  850. table { border: #004d9c 1px solid; border-collapse: collapse; border-spacing: 0px; width: 100%; }
  851. th { border: #004d9c 1px solid; padding: 4px; background: #add8e6; }
  852. td { border: #004d9c 1px solid; padding: 3px; }
  853. hr { border: 0px solid; padding: 0px; margin: 0px; border-top-width: 1px; height: 1px; }
  854. </style>
  855. END;
  856. $css_directive = <<<END
  857. <link rel="stylesheet" href="phpME.css" type="text/css"></link>
  858. END;
  859. if (! $CSSstylesheet) {
  860. $css_directive = '';
  861. }
  862. if ($HTMLissues) {
  863. $htmlbuffer = <<<END
  864. <?php require_once 'auth.php'; ?>
  865. <?php
  866. /*
  867. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
  868. "http://www.w3.org/TR/html4/loose.dtd">
  869. <html>
  870. <head>
  871. <title>$pageTitle</title>
  872. $css_directive
  873. </head>
  874. <body>
  875. */
  876. ?>
  877. END;
  878. /*
  879. $htmlbuffer .= "
  880. <script language=javascript>
  881. function windowOpen(u,W,H) {
  882. TopPosition = (screen.height) ? (screen.height-H)/2 : 0;
  883. LeftPosition = (screen.width) ? (screen.width-W)/2 : 0;
  884. settings = 'height='+H+',width='+W+',top='+TopPosition+',left='+LeftPosition+
  885. ',scrollbars=1,resizable=0,toolbar=0,location=0,directories=0,status=0,menubar=0';
  886. win = window.open(u,'_blank',settings);
  887. return win;
  888. }
  889. function exporttable(tb) {
  890. //windowOpen('exporttable.php?tableid='+tb, 600, 200);
  891. location.href = ('exporttable.php?tableid='+tb);
  892. }
  893. </script>
  894. <h3>$pageTitle
  895. <input type=button value='".__('Export CSV')."' onClick='exporttable(\"$tb\")'>
  896. </h3>
  897. ";
  898. */
  899. $buffer = $htmlbuffer."\n" . $buffer;
  900. } else if ($CSSstylesheet) {
  901. $buffer = $css_directive . $buffer;
  902. }
  903. if ($HTMLissues) {
  904. $buffer .= "</body>\n";
  905. $buffer .= "</html>\n";
  906. }
  907. // write the content include file
  908. echo 'Trying to write content file to: <b>'.'./'.$contentFile.'</b><br>'."\n";
  909. $filehandle = @fopen('./'.$contentFile, 'w+');
  910. if ($filehandle) {
  911. fwrite($filehandle, $buffer);
  912. flush($filehandle);
  913. fclose($filehandle);
  914. echo 'phpMyEdit content file written successfully<br>';
  915. /* QBUILDER TRAP */
  916. echo "
  917. <script language=javascript>
  918. location.href = '$contentFile';
  919. </script>
  920. ";
  921. /* QBUILDER TRAP */
  922. } else {
  923. echo 'phpMyEdit content file was NOT written due to inssufficient privileges.<br>';
  924. echo 'Please copy and paste content listed below to <i>'.'./'.$contentFile.'</i> file.';
  925. }
  926. echo '<br><hr>';
  927. echo '<pre>';
  928. echo_html($buffer);
  929. echo '</pre><hr>'."\n";
  930. }
  931. ?>
  932. </body>
  933. </html>