report_open3_o.php 31 KB

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