phpMyEdit3.class.php 187 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627
  1. <?php
  2. if (! function_exists('__')) {
  3. function __($str, $default=null, $module="GENERAL") {
  4. return $str;
  5. }
  6. }
  7. $opts['display']['time'] = false;
  8. $skipOpts = array();
  9. foreach ($opts['fdd'] as $k => $v) {
  10. if (isset($skipOpts[$k])) continue;
  11. $k2 = $k;
  12. if (ereg('^`.*`$', $k)) $k2 = substr($k, 1, -1);
  13. $tb = $opts['tb'];
  14. if ($opts['tb2']) $tb = $opts['tb2'];
  15. $opts['fdd'][$k]['name'] = __($k2, $v['name'],$tb);
  16. if (isset($opts['fdd'][$k.'x'])) {
  17. $skipOpts[$k.'x'] = 1;
  18. $opts['fdd'][$k.'x']['name'] = $opts['fdd'][$k]['name'];
  19. }
  20. }
  21. /*
  22. * phpMyEdit - instant MySQL table editor and code generator
  23. *
  24. * phpMyEdit.class.php - main table editor class definition file
  25. * ____________________________________________________________
  26. *
  27. * Copyright (c) 1999-2002 John McCreesh <jpmcc@users.sourceforge.net>
  28. * Copyright (c) 2001-2002 Jim Kraai <jkraai@users.sourceforge.net>
  29. * Versions 5.0 and higher developed by Ondrej Jombik <nepto@php.net>
  30. * Copyright (c) 2002-2004 Platon SDG, http://platon.sk/
  31. * All rights reserved.
  32. *
  33. * See README file for more information about this software.
  34. * See COPYING file for license information.
  35. *
  36. * Download the latest version from
  37. * http://platon.sk/projects/phpMyEdit/
  38. */
  39. /* $Platon: phpMyEdit/phpMyEdit.class.php,v 1.121 2004/01/26 17:17:49 nepto Exp $ */
  40. /* This is a generic table editing program. The table and fields to be
  41. edited are defined in the calling program.
  42. This program works in three passes.
  43. * Pass 1 (the last part of the program) displays the selected MySQL
  44. table in a scrolling table on the screen. Radio buttons are used to
  45. select a record for editing or deletion. If the user chooses Add,
  46. Change, Copy, View or Delete buttons.
  47. * Pass 2 starts, displaying the selected record. If the user chooses
  48. the Save button from this screen.
  49. * Pass 3 processes the update and the display returns to the
  50. original table view (Pass 1).
  51. */
  52. class phpMyEdit_timer /* {{{ */
  53. {
  54. var $startTime;
  55. var $started;
  56. function phpMyEdit_timer($start = true)
  57. {
  58. $this->started = false;
  59. if ($start) {
  60. $this->start();
  61. }
  62. }
  63. function start()
  64. {
  65. $startMtime = explode(' ', microtime());
  66. $this->startTime = (double) $startMtime[0] + (double) $startMtime[1];
  67. $this->started = true;
  68. }
  69. function end($iterations = 1)
  70. {
  71. // get the time, check whether the timer was started later
  72. $endMtime = explode(' ', microtime());
  73. if ($this->started) {
  74. $endTime = (double)($endMtime[0])+(double)($endMtime[1]);
  75. $dur = $endTime - $this->startTime;
  76. $avg = 1000 * $dur / $iterations;
  77. $avg = round(1000 * $avg) / 1000;
  78. return $avg;
  79. } else {
  80. return 'phpMyEdit_timer ERROR: timer not started';
  81. }
  82. }
  83. } /* }}} */
  84. if (! function_exists('array_search')) { /* {{{ */
  85. function array_search($needle, $haystack)
  86. {
  87. foreach ($haystack as $key => $value) {
  88. if ($needle == $value)
  89. return $key;
  90. }
  91. return false;
  92. }
  93. } /* }}} */
  94. if (! function_exists('realpath')) { /* {{{ */
  95. function realpath($path)
  96. {
  97. return $path;
  98. }
  99. } /* }}} */
  100. class phpMyEdit
  101. {
  102. // Class variables {{{
  103. // Database handling
  104. var $hn; // hostname
  105. var $un; // user name
  106. var $pw; // password
  107. var $db; // database
  108. var $tb; // table
  109. var $dbh; // database handle
  110. // Record manipulation
  111. var $key; // name of field which is the unique key
  112. var $key_num; // number of field which is the unique key
  113. var $key_type; // type of key field (int/real/string/date etc.)
  114. var $key_delim; // character used for key value quoting
  115. var $rec; // number of record selected for editing
  116. var $inc; // number of records to display
  117. var $fm; // first record to display
  118. var $fl; // is the filter row displayed (boolean)
  119. var $fds; // sql field names
  120. var $num_fds; // number of fields
  121. var $options; // options for users: ACDFVPI
  122. var $fdd; // field definitions
  123. var $qfn; // value of all filters used during the last pass
  124. var $sfn; // sort field number (- = descending sort order)
  125. // Operation
  126. var $navop; // navigation buttons/operations
  127. var $sw; // filter display/hide/clear button
  128. var $operation; // operation to do: Add, Change, Delete
  129. var $saveadd;
  130. var $moreadd;
  131. var $mailchange;
  132. var $docchange;
  133. var $rtfgen_detail;
  134. var $rtfgen;
  135. var $savechange;
  136. var $adminchange;
  137. var $savedelete;
  138. var $canceladd;
  139. var $cancelview;
  140. var $cancelchange;
  141. var $canceldelete;
  142. // Additional features
  143. var $labels; // multilingual labels
  144. var $cgi; // CGI variable features array
  145. var $url; // URL array
  146. var $message; // informational message to print
  147. var $notify; // change notification e-mail adresses
  148. var $logtable; // name of optional logtable
  149. var $navigation; // navigation style
  150. var $tabs; // TAB names
  151. var $timer = null; // phpMyEdit_timer object
  152. // Predefined variables
  153. var $comp_ops = array('<'=>'<','<='=>'<=','='=>'=','>='=>'>=','>'=>'>');
  154. var $sql_aggrs = array(
  155. 'sum' => 'Total',
  156. 'avg' => 'Average',
  157. 'min' => 'Minimum',
  158. 'max' => 'Maximum',
  159. 'count' => 'Count');
  160. var $page_types = array(
  161. 'L' => 'list',
  162. 'F' => 'filter',
  163. 'A' => 'add',
  164. 'V' => 'view',
  165. 'C' => 'change',
  166. 'P' => 'copy',
  167. 'D' => 'delete'
  168. );
  169. // }}}
  170. /*
  171. * column specific functions
  172. */
  173. function col_has_sql($k) { return isset($this->fdd[$k]['sql']); }
  174. function col_has_sqlw($k) { return isset($this->fdd[$k]['sqlw']) && !$this->virtual($k); }
  175. function col_has_values($k) { return isset($this->fdd[$k]['values']) || isset($this->fdd[$k]['values2']); }
  176. function col_has_URL($k) { return isset($this->fdd[$k]['URL'])
  177. || isset($this->fdd[$k]['URLprefix']) || isset($this->fdd[$k]['URLpostfix']); }
  178. function col_has_multiple_select($k)
  179. { return $this->fdd[$k]['select'] == 'M' && ! $this->fdd[$k]['values']['table']; }
  180. function col_has_datemask($k)
  181. { return isset($this->fdd[$k]['datemask']) || isset($this->fdd[$k]['strftimemask']); }
  182. /*
  183. * functions for indicating whether navigation style is enabled
  184. */
  185. function nav_buttons() { return stristr($this->navigation, 'B'); }
  186. function nav_text_links() { return stristr($this->navigation, 'T'); }
  187. function nav_graphic_links() { return stristr($this->navigation, 'G'); }
  188. function nav_up() { return stristr($this->navigation, 'U'); }
  189. function nav_down() { return stristr($this->navigation, 'D'); }
  190. /*
  191. * functions for indicating whether operations are enabled
  192. */
  193. function initial_sort_suppressed() { return (stristr ($this->options, 'I')); }
  194. function add_enabled() { return stristr($this->options, 'A'); }
  195. function change_enabled() { return stristr($this->options, 'C'); }
  196. function delete_enabled($key_rec=null) {
  197. if (is_null($key_rec) && $_GET['rec']) $key_rec = $_GET['rec'];
  198. if (is_null($key_rec) && $_POST['rec']) $key_rec = $_POST['rec'];
  199. if (function_exists('flag_enabled')) if (flag_enabled($key_rec) !== 1) return false;
  200. return stristr($this->options, 'D');
  201. }
  202. function filter_enabled() { return stristr($this->options, 'F'); }
  203. function view_enabled() { return stristr($this->options, 'V'); }
  204. function copy_enabled() { return stristr($this->options, 'P') && $this->add_enabled(); }
  205. function tabs_enabled() { return $this->display['tabs'] && count($this->tabs) > 0; }
  206. function hidden($k) { return stristr($this->fdd[$k]['input'],'H') || stristr($this->fdd[$k]['options'],'H'); }
  207. function password($k) { return stristr($this->fdd[$k]['input'],'W') || stristr($this->fdd[$k]['options'],'W'); }
  208. function readonly($k) { return stristr($this->fdd[$k]['input'],'R') || stristr($this->fdd[$k]['options'],'R') || $this->virtual($k); }
  209. function virtual($k) { return stristr($this->fdd[$k]['input'],'V') && $this->col_has_sql($k); }
  210. function add_operation() { return $this->operation == $this->labels['Add'] && $this->add_enabled(); }
  211. function change_operation() { return $this->operation == $this->labels['Change'] && $this->change_enabled(); }
  212. function copy_operation() { return $this->operation == $this->labels['Copy'] && $this->copy_enabled(); }
  213. function delete_operation() { return $this->operation == $this->labels['Delete'] && $this->delete_enabled(); }
  214. function view_operation() { return $this->operation == $this->labels['View'] && $this->view_enabled(); }
  215. function filter_operation() { return $this->fl && $this->filter_enabled() && $this->list_operation(); }
  216. function list_operation() { /* covers also filtering page */ return ! $this->change_operation()
  217. && ! $this->add_operation() && ! $this->copy_operation()
  218. && ! $this->delete_operation() && ! $this->view_operation(); }
  219. function next_operation() { return $this->navop == $this->labels['Next']; }
  220. function prev_operation() { return $this->navop == $this->labels['Prev']; }
  221. function first_operation() { return $this->navop == $this->labels['First']; }
  222. function last_operation() { return $this->navop == $this->labels['Last']; }
  223. function goto_operation() { return $this->navop == $this->labels['Go to']; }
  224. function clear_operation() { return $this->sw == $this->labels['Clear']; }
  225. function add_canceled() { return $this->canceladd == $this->labels['Cancel']; }
  226. function view_canceled() { return $this->cancelview == $this->labels['Cancel']; }
  227. function change_canceled() { return $this->cancelchange == $this->labels['Cancel']; }
  228. function delete_canceled() { return $this->canceldelete == $this->labels['Cancel']; }
  229. function is_values2($k, $val = 'X') /* {{{ */
  230. {
  231. return $val === null ||
  232. (isset($this->fdd[$k]['values2']) && !isset($this->fdd[$k]['values']['table']));
  233. } /* }}} */
  234. function processed($k) /* {{{ */
  235. {
  236. if ($this->virtual($k)) {
  237. return false;
  238. }
  239. $options = @$this->fdd[$k]['options'];
  240. if (! isset($options)) {
  241. return true;
  242. }
  243. return
  244. ($this->saveadd == $this->labels['Save'] && stristr($options, 'A')) ||
  245. ($this->moreadd == $this->labels['More'] && stristr($options, 'A')) ||
  246. ($this->savechange == $this->labels['Save'] && stristr($options, 'C')) ||
  247. ($this->morechange == $this->labels['Apply'] && stristr($options, 'C')) ||
  248. // ($this->mailchange == $this->labels['Mail'] && stristr($options, 'C')) ||
  249. // ($this->docchange == $this->labels['Document'] && stristr($options, 'C')) ||
  250. ($this->savechange == $this->labels['Save'] && stristr($options, 'P')) ||
  251. ($this->adminchange == $this->labels['Save'] && stristr($options, 'P')) ||
  252. ($this->adminchange == $this->labels['Save'] && stristr($options, 'C')) ||
  253. ($this->savedelete == $this->labels['Save'] && stristr($options, 'D'));
  254. } /* }}} */
  255. function displayed($k) /* {{{ */
  256. {
  257. if (is_numeric($k)) {
  258. $k = $this->fds[$k];
  259. }
  260. $options = @$this->fdd[$k]['options'];
  261. if (! isset($options)) {
  262. return true;
  263. }
  264. return
  265. ($this->add_operation() && stristr($options, 'A')) ||
  266. ($this->view_operation() && stristr($options, 'V')) ||
  267. ($this->change_operation() && stristr($options, 'C')) ||
  268. ($this->copy_operation() && stristr($options, 'P')) ||
  269. ($this->delete_operation() && stristr($options, 'D')) ||
  270. ($this->filter_operation() && stristr($options, 'F')) ||
  271. ($this->list_operation() && stristr($options, 'L'));
  272. } /* }}} */
  273. function debug_var($name, $val) /* {{{ */
  274. {
  275. if (is_array($val) || is_object($val)) {
  276. echo "<pre>$name\n";
  277. ob_start();
  278. //print_r($val);
  279. var_dump($val);
  280. $content = ob_get_contents();
  281. ob_end_clean();
  282. echo htmlspecialchars($content);
  283. echo "</pre>\n";
  284. } else {
  285. echo 'debug_var()::<i>',htmlspecialchars($name),'</i>';
  286. echo '::<b>',htmlspecialchars($val),'</b>::',"<br>\n";
  287. }
  288. } /* }}} */
  289. function myquery($qry, $line = 0, $debug = 0) /* {{{ */
  290. {
  291. global $debug_query;
  292. if ($debug_query || $debug) {
  293. $line = intval($line);
  294. echo '<h4>MySQL query at line ',$line,'</h4>',htmlspecialchars($qry),'<hr>',"\n";
  295. }
  296. $ret = @mysql_db_query($this->db, $qry, $this->dbh);
  297. if (! $ret) {
  298. echo '<font color=red>';
  299. echo '<h4>MySQL error ',mysql_errno($this->dbh),'</h4>';
  300. echo htmlspecialchars(mysql_error($this->dbh)),'<hr>',"\n";
  301. echo '</font>';
  302. }
  303. return $ret;
  304. } /* }}} */
  305. function make_language_labels($language) /* {{{ */
  306. {
  307. // just try the first language and variant
  308. // this isn't content-negotiation rfc compliant
  309. $language = strtoupper(substr($language,0,5));
  310. // try the full language w/ variant
  311. $file = $this->dir['lang'].'PME.lang.'.$language.'.inc';
  312. if (false && ! file_exists($file)) {
  313. // try the language w/o variant
  314. $file = $this->dir['lang'].'PME.lang.'.substr($language,0,2).'.inc';
  315. }
  316. if (true || ! file_exists($file)) {
  317. // default to classical English
  318. $file = $this->dir['lang'].'PME.lang.EN.inc';
  319. }
  320. $ret = @include($file);
  321. if (! is_array($ret)) {
  322. return $ret;
  323. }
  324. $small = array(
  325. 'Search' => 'v',
  326. 'Hide' => '^',
  327. 'Clear' => 'X',
  328. 'Query' => htmlspecialchars('>'));
  329. if ((!$this->nav_text_links() && !$this->nav_graphic_links())
  330. || !isset($ret['Search']) || !isset($ret['Query'])
  331. || !isset($ret['Hide']) || !isset($ret['Clear'])) {
  332. foreach ($small as $key => $val) {
  333. $ret[$key] = $val;
  334. }
  335. }
  336. return $ret;
  337. } /* }}} */
  338. function set_values($field_num, $prepend = null, $append = null, $strict = false) /* {{{ */
  339. {
  340. return (array) $prepend + (array) $this->fdd[$field_num]['values2']
  341. + (isset($this->fdd[$field_num]['values']['table']) || $strict
  342. ? $this->set_values_from_table($field_num, $strict)
  343. : array())
  344. + (array) $append;
  345. } /* }}} */
  346. function set_values_from_table($field_num, $strict = false) /* {{{ */
  347. {
  348. $db = &$this->fdd[$field_num]['values']['db'];
  349. $table = &$this->fdd[$field_num]['values']['table'];
  350. $key = &$this->fdd[$field_num]['values']['column'];
  351. $desc = &$this->fdd[$field_num]['values']['description'];
  352. isset($db) || $db = $this->db;
  353. $qparts['type'] = 'select';
  354. if ($table) {
  355. $qparts['select'] = 'DISTINCT '.$table.'.'.$key;
  356. if ($desc && is_array($desc) && is_array($desc['columns'])) {
  357. $qparts['select'] .= ',CONCAT('; // )
  358. $num_cols = sizeof($desc['columns']);
  359. if (isset($desc['divs'][-1])) {
  360. $qparts['select'] .= '"'.addslashes($desc['divs'][-1]).'",';
  361. }
  362. foreach ($desc['columns'] as $key => $val) {
  363. if ($val) {
  364. $qparts['select'] .= $val;
  365. if ($desc['divs'][$key]) {
  366. $qparts['select'] .= ',"'.addslashes($desc['divs'][$key]).'"';
  367. }
  368. $qparts['select'] .= ',';
  369. }
  370. }
  371. $qparts['select']{strlen($qparts['select']) - 1} = ')';
  372. $qparts['select'] .= ' AS PMEalias'.$field_num;
  373. $qparts['orderby'] = empty($desc['orderby'])
  374. ? 'PMEalias'.$field_num : $desc['orderby'];
  375. } else if ($desc && is_array($desc)) {
  376. // TODO
  377. } else if ($desc) {
  378. $qparts['select'] .= ','.$table.'.'.$desc;
  379. $qparts['orderby'] = $desc;
  380. } else if ($key) {
  381. $qparts['orderby'] = $key;
  382. }
  383. //$qparts['from'] = "$db.$table.$sel;
  384. $qparts['from'] = "$db.$table";
  385. $qparts['where'] = $this->fdd[$field_num]['values']['filters'];
  386. if ($this->fdd[$field_num]['values']['orderby']) {
  387. $qparts['orderby'] = $this->fdd[$field_num]['values']['orderby'];
  388. }
  389. } else { /* simple value extraction */
  390. $key = &$this->fds[$field_num];
  391. $this->virtual($field_num) && $key = $this->fqn($field_num);
  392. $qparts['select'] = 'DISTINCT '.$key.' AS PMEkey';
  393. $qparts['orderby'] = 'PMEkey';
  394. $qparts['from'] = $this->db.'.'.$this->tb;
  395. }
  396. $values = array();
  397. $res = $this->myquery($this->query_make($qparts), __LINE__);
  398. while ($row = @mysql_fetch_array($res, MYSQL_NUM)) {
  399. $values[$row[0]] = $desc ? $row[1] : $row[0];
  400. }
  401. return $values;
  402. } /* }}} */
  403. function fqn($field, $dont_desc = false, $dont_cols = false) /* {{{ */
  404. {
  405. is_numeric($field) || $field = array_search($field, $this->fds);
  406. // if read SQL expression exists use it
  407. if ($this->col_has_sql($field))
  408. return $this->fdd[$field]['sql'];
  409. // on copy/change always use simple key retrieving
  410. if ($this->add_operation()
  411. || $this->copy_operation()
  412. || $this->change_operation()) {
  413. $ret = 'PMEtable0.'.$this->fds[$field];
  414. } else {
  415. if ($this->fdd[$this->fds[$field]]['values']['description'] && ! $dont_desc) {
  416. $desc = &$this->fdd[$this->fds[$field]]['values']['description'];
  417. if (is_array($desc) && is_array($desc['columns'])) {
  418. $ret = 'CONCAT('; // )
  419. $num_cols = sizeof($desc['columns']);
  420. if (isset($desc['divs'][-1])) {
  421. $ret .= '"'.addslashes($desc['divs'][-1]).'",';
  422. }
  423. foreach ($desc['columns'] as $key => $val) {
  424. if ($val) {
  425. $ret .= 'PMEjoin'.$field.'.'.$val;
  426. if ($desc['divs'][$key]) {
  427. $ret .= ',"'.addslashes($desc['divs'][$key]).'"';
  428. }
  429. $ret .= ',';
  430. }
  431. }
  432. $ret{strlen($ret) - 1} = ')';
  433. } else if (is_array($desc)) {
  434. // TODO
  435. } else {
  436. $ret = 'PMEjoin'.$field.'.'.$this->fdd[$this->fds[$field]]['values']['description'];
  437. }
  438. // TODO: remove me
  439. } elseif (0 && $this->fdd[$this->fds[$field]]['values']['column'] && ! $dont_cols) {
  440. $ret = 'PMEjoin'.$field.'.'.$this->fdd[$this->fds[$field]]['values']['column'];
  441. } else {
  442. $ret = 'PMEtable0.'.$this->fds[$field];
  443. }
  444. // TODO: not neccessary, remove me!
  445. if (is_array($this->fdd[$this->fds[$field]]['values2'])) {
  446. }
  447. }
  448. return $ret;
  449. } /* }}} */
  450. function create_column_list() /* {{{ */
  451. {
  452. $fields = array();
  453. for ($k = 0; $k < $this->num_fds; $k++) {
  454. if (! $this->displayed[$k] && $k != $this->key_num) {
  455. continue;
  456. }
  457. $fields[] = $this->fqn($k).' AS qf'.$k;
  458. if ($this->col_has_values($k)) {
  459. $fields[] = $this->fqn($k, true, true).' AS qf'.$k.'_idx';
  460. }
  461. if ($this->col_has_datemask($k)) {
  462. $fields[] = 'UNIX_TIMESTAMP('.$this->fqn($k).') AS qf'.$k.'_timestamp';
  463. }
  464. }
  465. return join(',', $fields);
  466. } /* }}} */
  467. function query_make($parts) /* {{{ */
  468. {
  469. foreach ($parts as $k => $v) {
  470. $parts[$k] = trim($parts[$k]);
  471. }
  472. switch ($parts['type']) {
  473. case 'select':
  474. $ret = 'SELECT ';
  475. if ($parts['DISTINCT'])
  476. $ret .= 'DISTINCT ';
  477. $ret .= $parts['select'];
  478. $ret .= ' FROM '.$parts['from'];
  479. if ($parts['where'] != '')
  480. $ret .= ' WHERE '.$parts['where'];
  481. if ($parts['groupby'] != '')
  482. $ret .= ' GROUP BY '.$parts['groupby'];
  483. if ($parts['having'] != '')
  484. $ret .= ' HAVING '.$parts['having'];
  485. if ($parts['orderby'] != '')
  486. $ret .= ' ORDER BY '.$parts['orderby'];
  487. if ($parts['limit'] != '')
  488. $ret .= ' LIMIT '.$parts['limit'];
  489. if ($parts['procedure'] != '')
  490. $ret .= ' PROCEDURE '.$parts['procedure'];
  491. break;
  492. case 'update':
  493. $ret = 'UPDATE '.$parts['table'];
  494. $ret .= ' SET '.$parts['fields'];
  495. if ($parts['where'] != '')
  496. $ret .= ' WHERE '.$parts['where'];
  497. break;
  498. case 'insert':
  499. $ret = 'INSERT INTO '.$parts['table'];
  500. $ret .= ' VALUES '.$parts['values'];
  501. break;
  502. case 'delete':
  503. $ret = 'DELETE FROM '.$parts['table'];
  504. if ($parts['where'] != '')
  505. $ret .= ' WHERE '.$parts['where'];
  506. break;
  507. default:
  508. die('unknown query type');
  509. break;
  510. }
  511. return $ret;
  512. } /* }}} */
  513. function create_join_clause() /* {{{ */
  514. {
  515. $tbs[] = $this->tb;
  516. $join = $this->tb.' AS PMEtable0';
  517. for ($k = 0,$numfds = sizeof($this->fds); $k<$numfds; $k++) {
  518. $field = $this->fds[$k];
  519. if($this->fdd[$field]['values']['db']) {
  520. $db = $this->fdd[$field]['values']['db'];
  521. } else {
  522. $db = $this->db;
  523. }
  524. $table = $this->fdd[$field]['values']['table'];
  525. $id = $this->fdd[$field]['values']['column'];
  526. $desc = $this->fdd[$field]['values']['description'];
  527. if ($desc != '' && $id != '') {
  528. $alias = 'PMEjoin'.$k;
  529. if (!in_array($alias,$tbs)) {
  530. $join .= " LEFT OUTER JOIN $db.$table AS $alias";
  531. $join .= " ON $alias.$id = PMEtable0.$field";
  532. $tbs[]=$alias;
  533. }
  534. }
  535. }
  536. return $join;
  537. } /* }}} */
  538. function make_where_from_query_opts($qp = null, $text = 0) /* {{{ */
  539. {
  540. if ($qp == null) {
  541. $qp = $this->query_opts;
  542. }
  543. $where = array();
  544. foreach ($qp as $field => $ov) {
  545. if (is_numeric($field)) {
  546. $tmp_where = array();
  547. foreach ($ov as $field2 => $ov2) {
  548. $tmp_where[] = sprintf('%s %s %s', $field2, $ov2['oper'], $ov2['value']);
  549. }
  550. $where[] = '('.join(' OR ', $tmp_where).')';
  551. } else {
  552. if (is_array($ov['value'])) {
  553. $tmp_ov_val = '';
  554. foreach ($ov['value'] as $ov_val) {
  555. strlen($tmp_ov_val) > 0 && $tmp_ov_val .= ' OR ';
  556. $tmp_ov_val .= sprintf('FIND_IN_SET("%s",%s)', $ov_val, $field);
  557. }
  558. $where[] = "($tmp_ov_val)";
  559. } else {
  560. $where[] = sprintf('%s %s %s', $field, $ov['oper'], $ov['value']);
  561. }
  562. }
  563. }
  564. // Add any coder specified filters
  565. if (! $text && $this->filters) {
  566. $where[] = '('.$this->filters.')';
  567. }
  568. if (count($where) > 0) {
  569. if ($text) {
  570. return str_replace('%', '*', join(' AND ',$where));
  571. } else {
  572. return join(' AND ',$where);
  573. }
  574. }
  575. return false;
  576. } /* }}} */
  577. function gather_query_opts() /* {{{ */
  578. {
  579. $this->query_opts = array();
  580. $this->prev_qfn = $this->qfn;
  581. $this->qfn = '';
  582. if ($this->clear_operation()) {
  583. return;
  584. }
  585. // gathers query options into an array, $this->query_opts
  586. $qo = array();
  587. for ($k = 0; $k < $this->num_fds; $k++) {
  588. $l = 'qf'.$k;
  589. $lc = 'qf'.$k.'_comp';
  590. $li = 'qf'.$k.'_id';
  591. $m = $this->get_cgi_var($l);
  592. $mc = $this->get_cgi_var($lc);
  593. $mi = $this->get_cgi_var($li);
  594. if (! isset($m) && ! isset($mi)) {
  595. continue;
  596. }
  597. if (is_array($m) || is_array($mi)) {
  598. if (is_array($mi)) {
  599. $m = $mi;
  600. $l = $li;
  601. }
  602. if (in_array('*', $m)) {
  603. continue;
  604. }
  605. if ($this->col_has_values($k) && $this->col_has_multiple_select($k)) {
  606. foreach (array_keys($m) as $key) {
  607. $m[$key] = addslashes($m[$key]);
  608. }
  609. $qo[$this->fqn($k)] = array('value' => $m);
  610. } else {
  611. $qf_op = '';
  612. foreach (array_keys($m) as $key) {
  613. if ($qf_op == '') {
  614. $qf_op = 'IN';
  615. $qf_val = '"'.addslashes($m[$key]).'"';
  616. $afilter = ' IN ("'.addslashes($m[$key]).'"'; // )
  617. } else {
  618. $afilter = $afilter.',"'.addslashes($m[$key]).'"';
  619. $qf_val .= ',"'.addslashes($m[$key]).'"';
  620. }
  621. $this->qfn .= '&'.$l.'['.rawurlencode($key).']='.rawurlencode($m[$key]);
  622. }
  623. $afilter = $afilter.')';
  624. // XXX: $dont_desc and $dont_cols hack
  625. $dont_desc = isset($this->fdd[$k]['values']['description']);
  626. $dont_cols = isset($this->fdd[$k]['values']['column']);
  627. $qo[$this->fqn($k, $dont_desc, $dont_cols)] =
  628. array('oper' => $qf_op, 'value' => "($qf_val)"); // )
  629. }
  630. } else if (isset($mi)) {
  631. if ($mi == '*') {
  632. continue;
  633. }
  634. if ($this->fdd[$k]['select'] != 'M' && $this->fdd[$k]['select'] != 'D' && $mi == '') {
  635. continue;
  636. }
  637. $afilter = addslashes($mi);
  638. $qo[$this->fqn($k, true, true)] = array('oper' => '=', 'value' => "'$afilter'");
  639. $this->qfn .= '&'.$li.'='.rawurlencode($mi);
  640. } else if (isset($m)) {
  641. if ($m == '*') {
  642. continue;
  643. }
  644. if ($this->fdd[$k]['select'] != 'M' && $this->fdd[$k]['select'] != 'D' && $m == '') {
  645. continue;
  646. }
  647. $afilter = addslashes($m);
  648. if ($this->fdd[$k]['select'] == 'N') {
  649. $mc = in_array($mc, $this->comp_ops) ? $mc : '=';
  650. $qo[$this->fqn($k)] = array('oper' => $mc, 'value' => "'$afilter'");
  651. $this->qfn .= '&'.$l .'='.rawurlencode($m);
  652. $this->qfn .= '&'.$lc.'='.rawurlencode($mc);
  653. } else {
  654. $afilter = '%'.str_replace('*', '%', $afilter).'%';
  655. $ids = array();
  656. $ar = array();
  657. $ar[$this->fqn($k)] = array('oper' => 'LIKE', 'value' => "'$afilter'");
  658. if (is_array($this->fdd[$k]['values2'])) {
  659. foreach ($this->fdd[$k]['values2'] as $key => $val) {
  660. if (strlen($m) > 0 && stristr($val, $m)) {
  661. $ids[] = '"'.addslashes($key).'"';
  662. }
  663. }
  664. if (count($ids) > 0) {
  665. $ar[$this->fqn($k, true, true)]
  666. = array('oper' => 'IN', 'value' => '('.join(',', $ids).')');
  667. }
  668. }
  669. $qo[] = $ar;
  670. $this->qfn .= '&'.$l.'='.rawurlencode($m);
  671. }
  672. }
  673. }
  674. $this->query_opts = $qo;
  675. } /* }}} */
  676. /*
  677. * Create JavaScripts
  678. */
  679. function form_begin() /* {{{ */
  680. {
  681. /*
  682. Need a lot of work in here
  683. using something like:
  684. $fdd['fieldname']['validate']['js_regex']='/something/';
  685. $fdd['fieldname']['validate']['php_regex']='something';
  686. */
  687. $page_name = htmlspecialchars($this->page_name);
  688. if ($this->add_operation() || $this->change_operation() || $this->copy_operation()
  689. || $this->view_operation() || $this->delete_operation()) {
  690. $field_to_tab = '';
  691. for ($tab = 0, $k = 0; $k < $this->num_fds; $k++) {
  692. if (isset($this->fdd[$k]['tab'])) {
  693. if ($tab == 0 && $k > 0) {
  694. $this->tabs[0] = 'Initial TAB';
  695. $tab++;
  696. }
  697. $this->tabs[$tab] = @$this->fdd[$k]['tab'];
  698. $tab++;
  699. }
  700. $field_to_tab .= max(0, $tab - 1).', ';
  701. }
  702. if ($this->tabs_enabled()) {
  703. // initial TAB styles
  704. echo '<style type="text/css" media="screen">',"\n";
  705. echo ' #phpMyEdit_tab0 { display: block; }',"\n";
  706. for ($i = 1; $i < count($this->tabs); $i++) {
  707. echo ' #phpMyEdit_tab',$i,' { display: none; }',"\n";
  708. }
  709. echo '</style>',"\n";
  710. // TAB javascripts
  711. echo '<script type="text/javascript"><!--',"\n\n";
  712. echo 'var phpMyEdit_field_to_tab = [',$field_to_tab,'-1];',"\n";
  713. $css_class_name1 = $this->getCSSclass('tab', $position);
  714. $css_class_name2 = $this->getCSSclass('tab-selected', $position);
  715. echo 'var phpMyEdit_current_tab = "phpMyEdit_tab0";
  716. function phpMyEdit_show_tab(tab_name)
  717. {';
  718. if ($this->nav_up()) {
  719. echo '
  720. document.getElementById(phpMyEdit_current_tab+"_up_label").className = "',$css_class_name1,'";
  721. document.getElementById(phpMyEdit_current_tab+"_up_link").className = "',$css_class_name1,'";
  722. document.getElementById(tab_name+"_up_label").className = "',$css_class_name2,'";
  723. document.getElementById(tab_name+"_up_link").className = "',$css_class_name2,'";';
  724. }
  725. if ($this->nav_down()) {
  726. echo '
  727. document.getElementById(phpMyEdit_current_tab+"_down_label").className = "',$css_class_name1,'";
  728. document.getElementById(phpMyEdit_current_tab+"_down_link").className = "',$css_class_name1,'";
  729. document.getElementById(tab_name+"_down_label").className = "',$css_class_name2,'";
  730. document.getElementById(tab_name+"_down_link").className = "',$css_class_name2,'";';
  731. }
  732. echo '
  733. document.getElementById(phpMyEdit_current_tab).style.display = "none";
  734. document.getElementById(tab_name).style.display = "block";
  735. phpMyEdit_current_tab = tab_name;
  736. }',"\n\n";
  737. echo '// --></script>', "\n";
  738. }
  739. }
  740. echo '<script type="text/javascript"><!--',"\n";
  741. echo '
  742. function phpMyEdit_trim(str)
  743. {
  744. while (str.substring(0, 1) == " "
  745. || str.substring(0, 1) == "\\n"
  746. || str.substring(0, 1) == "\\r")
  747. {
  748. str = str.substring(1, str.length);
  749. }
  750. while (str.substring(str.length - 1, str.length) == " "
  751. || str.substring(str.length - 1, str.length) == "\\n"
  752. || str.substring(str.length - 1, str.length) == "\\r")
  753. {
  754. str = str.substring(0, str.length - 1);
  755. }
  756. return str;
  757. }
  758. function phpMyEdit_form_control(theForm)
  759. {',"\n";
  760. if ($this->add_operation() || $this->change_operation() || $this->copy_operation()) {
  761. $required_ar = array();
  762. for ($k = 0; $k < $this->num_fds; $k++) {
  763. if ($this->displayed[$k] && $this->fdd[$k]['required']
  764. && ! $this->readonly($k) && ! $this->hidden($k)) {
  765. $required_ar[] = $k;
  766. if (isset($this->fdd[$k]['regex']['js'])) {
  767. /* TODO: Use a javascript regex to validate it */
  768. }
  769. }
  770. }
  771. if (count($required_ar) > 0) {
  772. foreach ($required_ar as $field_num) {
  773. if ($this->col_has_values($field_num)) {
  774. $condition = 'theForm.%s.selectedIndex == -1';
  775. $multiple = $this->col_has_multiple_select($field_num);
  776. } else {
  777. $condition = 'phpMyEdit_trim(theForm.%s.value) == ""';
  778. $multiple = false;
  779. }
  780. /* Multiple selects have their name like ``name[]''.
  781. It is not possible to work with them directly, because
  782. theForm.name[].something will result into JavaScript
  783. syntax error. Following search algorithm is provided
  784. as a workaround for this.
  785. */
  786. if ($multiple) {
  787. echo '
  788. multiple_select = null;
  789. for (i = 0; i < theForm.length; i++) {
  790. if (theForm.elements[i].name == "',$this->fds[$field_num],'[]") {
  791. multiple_select = theForm.elements[i];
  792. break;
  793. }
  794. }
  795. if (multiple_select != null && multiple_select.selectedIndex == -1) {
  796. alert("',$this->labels['Please enter'],' ',$this->fdd[$field_num]['name'],'.");';
  797. if ($this->tabs_enabled()) {
  798. echo '
  799. phpMyEdit_show_tab("phpMyEdit_tab"+phpMyEdit_field_to_tab['.$field_num.']);';
  800. }
  801. echo '
  802. return false;
  803. }',"\n";
  804. } else {
  805. echo '
  806. if (',sprintf($condition, $this->fds[$field_num]),') {
  807. alert("',$this->labels['Please enter'],' ',$this->fdd[$field_num]['name'],'.");';
  808. if ($this->tabs_enabled()) {
  809. echo '
  810. phpMyEdit_show_tab("phpMyEdit_tab"+phpMyEdit_field_to_tab['.$field_num.']);';
  811. }
  812. echo '
  813. theForm.',$this->fds[$field_num],'.focus();
  814. return false;
  815. }',"\n";
  816. }
  817. }
  818. }
  819. }
  820. echo '
  821. return true;
  822. }',"\n\n";
  823. echo '// --></script>', "\n";
  824. global $smarty;
  825. echo '<script type="text/javascript"><!--',"\n";
  826. echo '
  827. function newmail()
  828. {
  829. this.location.href("mailto:?body="
  830. +"Betrieb:%20"+document.phpMyEdit_form.Betrieb.value+"%0A"
  831. +"Abteilung:%20"+document.phpMyEdit_form.Stufe2.value+"%0A"
  832. +"Verkäufer:%20"+document.phpMyEdit_form.Stufe5.value+"%0A"
  833. +"FG.-Nummer:%20"+document.phpMyEdit_form.FAGNR.value+"%0A%0A"
  834. +"Kunde:%0A"+document.phpMyEdit_form.KNAME.value+"%0A%0A"
  835. +"Belegnummer:%20"+document.phpMyEdit_form.O500_BELEGNR1.value+"%0A"
  836. +"Rechnungsbetrag:%20"+document.phpMyEdit_form.O500_HW2BUCHGBETR.value+"%0A"
  837. +"Offener Betrag:%20"+document.phpMyEdit_form.O500_HW2BETR_OFFEN.value+"%0A");
  838. }',"\n\n";
  839. echo '// --></script>', "\n";
  840. echo '<script type="text/javascript"><!--',"\n";
  841. echo '
  842. function opendoc()
  843. {
  844. var formular = document.phpMyEdit_form;
  845. doc = window.open("rtf/rtf_beitreibungsauftrag.php?report=' . $_SERVER["PHP_SELF"] .
  846. '&KNAME="+encodeURIComponent(formular.KNAME.value)
  847. +"&KNDNR="+encodeURIComponent(formular.KNDNR.value)
  848. +"&Kstra="+encodeURIComponent(formular.Kstra.value)
  849. +"&Kdplz="+encodeURIComponent(formular.Kdplz.value)
  850. +"&Kdort="+encodeURIComponent(formular.Kdort.value)
  851. +"&Ktelf="+formular.Ktelf.value
  852. +"&BelNr="+formular.O500_BELEGNR1.value
  853. +"&ReDat="+formular.REDAT.value
  854. +"&Verka="+encodeURIComponent(formular.Stufe5.value)
  855. +"&Betri="+encodeURIComponent(formular.Betrieb.value + " - " + formular.Stufe2.value)
  856. +"&OffBe="+formular.O500_HW2BETR_OFFEN.value
  857. +"&RechBe="+formular.O500_HW2BUCHGBETR.value
  858. +"&Mahnst="+encodeURIComponent(formular.O500_MAHNSTUFE.value)
  859. +"&NextMahnst="+formular.Next_MAHNSTUFE.value, "Dokument");
  860. doc.focus;
  861. }',"\n\n";
  862. echo '// --></script>', "\n";
  863. echo '<script type="text/javascript"><!--',"\n";
  864. echo '
  865. function overview()
  866. {
  867. rtf = window.open("rtf/rtf_over.php?report=' . $_SERVER["PHP_SELF"] .
  868. '&Betrieb=' . urlencode($_POST["betr"]) . '&Stufe2=' . urlencode($_POST["stufe_2"]) .
  869. '&Stufe5=' . urlencode($_POST["stufe_5"]) .
  870. '&Mahnstufe=' . urlencode($_POST["mahnst"]) .
  871. '&from=' . $_POST["datefrom"] . '&until=' . $_POST["dateuntil"] .
  872. '&Kunde=' . urlencode($_POST["k_name"]) .
  873. '&Reklamation=' . $_POST["rekl"] .
  874. '&Versicherung=' . $_POST["vers"] .
  875. '&Rechtsanwalt=' . @$_POST["ra"] .
  876. '&wv=' . $_POST["Wiedervorl"] .
  877. '&Mahnen=' . $_POST["Mahnen_ent"] .
  878. '&Reserve_3=' . $_POST["rechgut"] .
  879. '&Wochen=' . urlencode($_POST["woch"]) . '", "RTF");
  880. rtf.focus();
  881. }',"\n\n";
  882. echo '// --></script>', "\n";
  883. echo '<script type="text/javascript"><!--',"\n";
  884. echo '
  885. function ticker()
  886. {
  887. rtf = window.open("rtf/rtf_ticker.php?report=' . $_SERVER["PHP_SELF"] .
  888. '&fgst="+document.phpMyEdit_form.Fgst.value+"&modell="+document.phpMyEdit_form.Modell.value
  889. +"&version="+document.phpMyEdit_form.Version.value
  890. +"&ps="+document.phpMyEdit_form.KW_PS.value
  891. +"&motor="+document.phpMyEdit_form.Motor.value
  892. +"&farbe="+document.phpMyEdit_form.Farbe.value
  893. +"&farbedet="+document.phpMyEdit_form.Farbe_detail.value
  894. +"&polster="+document.phpMyEdit_form.Polsterung.value
  895. +"&km="+document.phpMyEdit_form.Letzter_KM.value
  896. +"&vkbrutto="+document.phpMyEdit_form.VK_Brutto.value
  897. +"&optdet="+document.phpMyEdit_form.Optionen.value
  898. +"&ez="+document.phpMyEdit_form.EZ.value, "RTF");
  899. rtf.focus();
  900. }',"\n\n";
  901. echo '// --></script>', "\n";
  902. echo '<script type="text/javascript"><!--',"\n";
  903. echo '
  904. function accessor()
  905. {
  906. acc = window.open("rtf/rtf_accessories.php?report=' . $_SERVER["PHP_SELF"] .
  907. '&modell="+document.phpMyEdit_form.Modell.value
  908. +"&farbe="+document.phpMyEdit_form.Farbe.value
  909. +"&farbedet="+document.phpMyEdit_form.Farbe_detail.value
  910. +"&polster="+document.phpMyEdit_form.Polsterung.value
  911. +"&vkbrutto="+document.phpMyEdit_form.VK_Brutto.value
  912. +"&optdet="+document.phpMyEdit_form.Optionen.value, "Accessories");
  913. acc.focus();
  914. }',"\n\n";
  915. echo '// --></script>', "\n";
  916. echo '<script type="text/javascript"><!--',"\n";
  917. echo '
  918. function leasing_off()
  919. {
  920. leas = window.open("rtf/rtf_leasing_offer.php?report=' . $_SERVER["PHP_SELF"] . '", "RTF");
  921. leas.focus();
  922. }',"\n\n";
  923. echo '// --></script>', "\n";
  924. /*
  925. * Statt der for-Schleife, die ja net geht, eine while-Schleife benutzen.
  926. * jedes Mal prüfen, wie groß die Menge der UPE_Netto[n] ist, wenn 0, dann Abbruch
  927. * i nach jedem Durchlauf hochzählen.
  928. *
  929. * Was ist, wenn die Seite in Tabs eingeteilt ist, sprich select_goto aktiv ist?!
  930. */
  931. echo '<script type="text/javascript"><!--',"\n";
  932. echo '
  933. function change_input()
  934. {
  935. var confirmed = 0;
  936. var cancel = 0;
  937. var i = 1;
  938. var v1, v2, value = 0;
  939. if (document.getElementsByName("VK_Netto_change")[0].value != "") {
  940. if ( confirmed == 0 ) {
  941. Check = confirm("Haben sie ihre Eingabe überprüft?");
  942. }
  943. if (Check == false) abort;
  944. while (cancel == 0) {
  945. if (document.getElementsByName("VK_Netto["+i+"]").length == 1){
  946. if ( document.getElementsByName("VK_Netto_change")[0].value.substr(document.getElementsByName("VK_Netto_change")[0].value.length-1,1) == "%" ){
  947. if ( document.getElementsByName("VK_Netto_change")[0].value.substr(0,1) == "-" ){
  948. v1 = parseFloat(document.getElementsByName("VK_Netto["+i+"]")[0].value);
  949. v2 = 0.01*parseFloat(document.getElementsByName("VK_Netto_change")[0].value.substr(1,document.getElementsByName("VK_Netto_change")[0].value.length-1));
  950. if ( v2 > 1 ) {
  951. alert("Man kann den Preis nicht um mehr als 100% verringern!");
  952. break;
  953. }
  954. value = v1-(v2*v1);
  955. document.getElementsByName("VK_Netto["+i+"]")[0].value = eval(value);
  956. } else if ( document.getElementsByName("VK_Netto_change")[0].value.substr(0,1) == "+" ){
  957. v1 = parseFloat(document.getElementsByName("VK_Netto["+i+"]")[0].value);
  958. v2 = 0.01*parseFloat(document.getElementsByName("VK_Netto_change")[0].value.substr(1,document.getElementsByName("VK_Netto_change")[0].value.length-1));
  959. value = v1 + (v2*v1);
  960. document.getElementsByName("VK_Netto["+i+"]")[0].value = eval(value);
  961. }
  962. } else if ( document.getElementsByName("VK_Netto_change")[0].value.substr(0,1) == "-" ){
  963. v1 = parseFloat(document.getElementsByName("VK_Netto["+i+"]")[0].value);
  964. v2 = parseFloat(document.getElementsByName("VK_Netto_change")[0].value.substr(1,document.getElementsByName("VK_Netto_change")[0].value.length));
  965. if ( v2 > v1 ) {
  966. alert("Ein Preis kleiner als 0 ist nicht sinnvoll!");
  967. break;
  968. }
  969. value = v1 - v2;
  970. document.getElementsByName("VK_Netto["+i+"]")[0].value = eval(value);
  971. } else if ( document.getElementsByName("VK_Netto_change")[0].value.substr(0,1) == "+" ){
  972. v1 = parseFloat(document.getElementsByName("VK_Netto["+i+"]")[0].value);
  973. v2 = parseFloat(document.getElementsByName("VK_Netto_change")[0].value.substr(1,document.getElementsByName("VK_Netto_change")[0].value.length));
  974. value = v1 + v2;
  975. document.getElementsByName("VK_Netto["+i+"]")[0].value = eval(value);
  976. } else {
  977. document.getElementsByName("VK_Netto["+i+"]")[0].value = document.getElementsByName("VK_Netto_change")[0].value;
  978. }
  979. } else {
  980. cancel = 1;
  981. }
  982. i++;
  983. }
  984. }
  985. }',"\n\n";
  986. echo '// --></script>', "\n";
  987. /*
  988. $part = substr($_SERVER['SCRIPT_NAME'], strpos($_SERVER['SCRIPT_NAME'], "/")+1);
  989. $strDoc = '';
  990. $strDoc = file_get_contents(substr($part, strpos($part, "/")+1));
  991. $match = substr($strDoc, strpos($strDoc, 'reportName')+14);
  992. $match = substr($match, 0, strpos($match, ';')-1);
  993. */
  994. echo '<script type="text/javascript"><!--',"\n";
  995. echo '
  996. function detail()
  997. {
  998. var adresse = "rtf/rtf_detail.php?report=' . $_SERVER["PHP_SELF"] . '&";
  999. for (i=0; i < document.getElementsByTagName("input").length; i++) {
  1000. if ( document.getElementsByTagName("input")[i].type == "text" ) {
  1001. adresse = adresse + document.getElementsByTagName("input")[i].name + "=" + encodeURIComponent(document.getElementsByTagName("input")[i].value) + "&";
  1002. <!--alert(adresse);-->
  1003. }
  1004. }
  1005. for (i=0; i < document.getElementsByTagName("select").length; i++) {
  1006. adresse = adresse + document.getElementsByTagName("select")[i].name + "=" + encodeURIComponent(document.getElementsByTagName("select")[i].value) + "&";
  1007. <!--alert(adresse);-->
  1008. }
  1009. for (i=0; i < document.getElementsByTagName("textarea").length; i++) {
  1010. adresse = adresse + document.getElementsByTagName("textarea")[i].name + "=" + encodeURIComponent(document.getElementsByTagName("textarea")[i].value) + "&";
  1011. <!--alert(adresse);-->
  1012. }
  1013. rtf = window.open(adresse, "RTF");
  1014. rtf.focus();
  1015. }',"\n\n";
  1016. echo '// --></script>', "\n";
  1017. echo '<script type="text/javascript"><!--',"\n";
  1018. echo '
  1019. function pdf_detail()
  1020. {
  1021. doc = window.open("pdf_detail.php?KNAME="+document.phpMyEdit_form.KNAME.value
  1022. +"&Kstra="+document.phpMyEdit_form.Kstra.value
  1023. +"&Kdplz="+document.phpMyEdit_form.Kdplz.value
  1024. +"&Kdort="+document.phpMyEdit_form.Kdort.value
  1025. +"&Ktelf="+document.phpMyEdit_form.Ktelf.value
  1026. +"&BelNr="+document.phpMyEdit_form.O500_BELEGNR1.value
  1027. +"&ReDat="+document.phpMyEdit_form.REDAT.value
  1028. +"&Verka="+document.phpMyEdit_form.Stufe5.value
  1029. +"&Betri="+document.phpMyEdit_form.Betrieb.value+" - "+document.phpMyEdit_form.Stufe2.value
  1030. +"&OffBe="+document.phpMyEdit_form.O500_HW2BETR_OFFEN.value
  1031. +"&RechBe="+document.phpMyEdit_form.O500_HW2BUCHGBETR.value
  1032. +"&Mahnst="+document.phpMyEdit_form.O500_MAHNSTUFE.value, "pdf");
  1033. doc.focus;
  1034. }',"\n\n";
  1035. echo '// --></script>', "\n";
  1036. if ($this->filter_operation()) {
  1037. echo '<script type="text/javascript"><!--',"\n";
  1038. echo '
  1039. function phpMyEdit_filter_handler(theForm, theEvent)
  1040. {
  1041. var pressed_key = null;
  1042. if (theEvent.which) {
  1043. pressed_key = theEvent.which;
  1044. } else {
  1045. pressed_key = theEvent.keyCode;
  1046. }
  1047. if (pressed_key == 13) { // enter pressed
  1048. theForm.submit();
  1049. return false;
  1050. }
  1051. return true;
  1052. }',"\n\n";
  1053. echo '// --></script>', "\n";
  1054. }
  1055. if ($this->display['form']) {
  1056. echo '<form class="',$this->getCSSclass('form'),'" method="POST"';
  1057. echo ' action="',$page_name,'" onSubmit="return dateFormatEdit();" name="phpMyEdit_form">',"\n";
  1058. }
  1059. return true;
  1060. } /* }}} */
  1061. function form_end() /* {{{ */
  1062. {
  1063. if ($this->display['form']) {
  1064. echo '</form>',"\n";
  1065. }
  1066. } /* }}} */
  1067. function display_tab_labels($position) /* {{{ */
  1068. {
  1069. if (! is_array($this->tabs)) {
  1070. return false;
  1071. }
  1072. echo '<table class="',$this->getCSSclass('tab', $position),'">',"\n";
  1073. echo '<tr class="',$this->getCSSclass('tab', $position),'">',"\n";
  1074. for ($i = 0; $i < count($this->tabs); $i++) {
  1075. $css_class_name = $this->getCSSclass($i ? 'tab' : 'tab-selected', $position);
  1076. echo '<td class="',$css_class_name,'" id="phpMyEdit_tab',$i,'_',$position,'_label">';
  1077. echo '<a class="',$css_class_name,'" id="phpMyEdit_tab',$i,'_',$position,'_link';
  1078. echo '" href="javascript:phpMyEdit_show_tab(\'phpMyEdit_tab',$i,'\')">';
  1079. echo $this->tabs[$i],'</a></td>',"\n";
  1080. }
  1081. echo '<td class="',$this->getCSSclass('tab-end', $position),'">&nbsp;</td>',"\n";
  1082. echo '</tr>',"\n";
  1083. echo '</table>',"\n";
  1084. } /* }}} */
  1085. /*
  1086. * Display functions
  1087. */
  1088. function display_add_record() /* {{{ */
  1089. {
  1090. global $smarty;
  1091. for ($tab = 0, $k = 0; $k < $this->num_fds; $k++) {
  1092. if (isset($this->fdd[$k]['tab']) && $this->tabs_enabled() && $k > 0) {
  1093. $tab++;
  1094. #echo '</table>',"\n";
  1095. #echo '</div>',"\n";
  1096. #echo '<div id="phpMyEdit_tab',$tab,'">',"\n";
  1097. #echo '<table class="',$this->getCSSclass('main'),'" summary="',$this->tb,'">',"\n";
  1098. }
  1099. if (! $this->displayed[$k]) {
  1100. continue;
  1101. }
  1102. if ($this->hidden($k)) {
  1103. $htmlHidden = $this->htmlHidden($this->fds[$k], $this->fdd[$k]['default']);
  1104. $smarty->append("form_hidden", $htmlHidden);
  1105. continue;
  1106. }
  1107. $css_postfix = @$this->fdd[$k]['css']['postfix'];
  1108. $css_class_name = $this->getCSSclass('input', null, 'next', $css_postfix);
  1109. #echo '<tr class="',$this->getCSSclass('row', null, true, $css_postfix),'">',"\n";
  1110. #echo '<td class="',$this->getCSSclass('key', null, true, $css_postfix),'">',$this->fdd[$k]['name'],'</td>',"\n";
  1111. #echo '<td class="',$this->getCSSclass('value', null, true, $css_postfix),'"';
  1112. #echo $this->getColAttributes($k),">\n";
  1113. $smarty->assign($this->fds[$k]."Txt", $this->fdd[$k]['name']);
  1114. if ($this->col_has_values($k)) {
  1115. $vals = $this->set_values($k);
  1116. $selected = @$this->fdd[$k]['default'];
  1117. $multiple = $this->col_has_multiple_select($k);
  1118. $readonly = $this->readonly($k);
  1119. $strip_tags = true;
  1120. $escape = true;
  1121. $htmlSelect = $this->htmlSelect($this->fds[$k], $css_class_name, $vals, $selected,
  1122. $multiple, $readonly, $strip_tags, $escape);
  1123. $smarty->assign($this->fds[$k]."Val", $htmlSelect);
  1124. } elseif (isset ($this->fdd[$k]['textarea'])) {
  1125. ob_start();
  1126. echo '<textarea class="',$css_class_name,'" name="',$this->fds[$k],'"';
  1127. echo ($this->readonly($k) ? ' disabled' : '');
  1128. if (intval($this->fdd[$k]['textarea']['rows']) > 0) {
  1129. echo ' rows="',$this->fdd[$k]['textarea']['rows'],'"';
  1130. }
  1131. if (intval($this->fdd[$k]['textarea']['cols']) > 0) {
  1132. echo ' cols="',$this->fdd[$k]['textarea']['cols'],'"';
  1133. }
  1134. if (isset($this->fdd[$k]['textarea']['wrap'])) {
  1135. echo ' wrap="',$this->fdd[$k]['textarea']['wrap'],'"';
  1136. } else {
  1137. echo ' wrap="virtual"';
  1138. }
  1139. echo '>',htmlspecialchars($this->fdd[$k]['default']),'</textarea>',"\n";
  1140. $smarty->assign($this->fds[$k]."Val", ob_get_contents());
  1141. ob_end_clean();
  1142. } else {
  1143. ob_start();
  1144. // Simple edit box required
  1145. $size_ml_props = '';
  1146. $maxlen = intval($this->fdd[$k]['maxlen']);
  1147. $size = isset($this->fdd[$k]['size']) ? $this->fdd[$k]['size'] : min($maxlen, 60);
  1148. $size && $size_ml_props .= ' size="'.$size.'"';
  1149. $maxlen && $size_ml_props .= ' maxlength="'.$maxlen.'"';
  1150. echo '<input class="',$css_class_name,'" type="text" ';
  1151. echo ($this->readonly($k) ? 'disabled ' : ''),' name="',$this->fds[$k],'"';
  1152. echo $size_ml_props,' value="';
  1153. echo htmlspecialchars($this->fdd[$k]['default']),'">';
  1154. $smarty->assign($this->fds[$k]."Val", ob_get_contents());
  1155. ob_end_clean();
  1156. }
  1157. #echo '</td>',"\n";
  1158. if ($this->guidance) {
  1159. $css_class_name = $this->getCSSclass('help', null, true, $css_postfix);
  1160. $cell_value = $this->fdd[$k]['help'] ? $this->fdd[$k]['help'] : '&nbsp;';
  1161. #echo '<td class="',$css_class_name,'">',$cell_value,'</td>',"\n";
  1162. }
  1163. #echo '</tr>',"\n";
  1164. }
  1165. } /* }}} */
  1166. function display_copy_change_delete_record() /* {{{ */
  1167. {
  1168. global $smarty;
  1169. /*
  1170. * For delete or change: SQL SELECT to retrieve the selected record
  1171. */
  1172. $qparts['type'] = 'select';
  1173. $qparts['select'] = $this->create_column_list();
  1174. $qparts['from'] = $this->create_join_clause();
  1175. $qparts['where'] = '('.$this->fqn($this->key).'='
  1176. .$this->key_delim.$this->rec.$this->key_delim.')';
  1177. $res = $this->myquery($this->query_make($qparts),__LINE__);
  1178. if (! ($row = @mysql_fetch_array($res, MYSQL_ASSOC))) {
  1179. return false;
  1180. }
  1181. $xrow = array();
  1182. for ($tab = 0, $k = 0; $k < $this->num_fds; $k++) {
  1183. $xrow[$this->fds[$k]] = $row["qf$k"];
  1184. if (isset($this->fdd[$k]['tab']) && $this->tabs_enabled() && $k > 0) {
  1185. $tab++;
  1186. #echo '</table>',"\n";
  1187. #echo '</div>',"\n";
  1188. #echo '<div id="phpMyEdit_tab',$tab,'">',"\n";
  1189. #echo '<table class="',$this->getCSSclass('main'),'" summary="',$this->tb,'">',"\n";
  1190. }
  1191. if (! $this->displayed[$k]) {
  1192. continue;
  1193. }
  1194. if ($this->copy_operation() || $this->change_operation()) {
  1195. if ($this->hidden($k)) {
  1196. if ($k != $this->key_num) {
  1197. $htmlHidden = $this->htmlHidden($this->fds[$k], $row["qf$k"]);
  1198. $smarty->append("form_hidden", $htmlHidden);
  1199. }
  1200. continue;
  1201. }
  1202. $css_postfix = @$this->fdd[$k]['css']['postfix'];
  1203. #echo '<tr class="',$this->getCSSclass('row', null, 'next', $css_postfix),'">',"\n";
  1204. #echo '<td class="',$this->getCSSclass('key', null, true, $css_postfix),'">',$this->fdd[$k]['name'],'</td>',"\n";
  1205. $smarty->assign($this->fds[$k]."Txt", $this->fdd[$k]['name']);
  1206. /* There are two possibilities of readonly fields handling:
  1207. 1. Display plain text for readonly timestamps and dates.
  1208. 2. Display disabled input field
  1209. In all cases particular readonly field will NOT be saved. */
  1210. ob_start();
  1211. if ($this->col_has_datemask($k) && $this->readonly($k)) {
  1212. echo $this->display_delete_field($row, $k);
  1213. } elseif ($this->password($k)) {
  1214. echo $this->display_password_field($row, $k);
  1215. } else {
  1216. echo $this->display_change_field($row, $k);
  1217. }
  1218. $smarty->assign($this->fds[$k]."Val", ob_get_contents());
  1219. ob_end_clean();
  1220. if ($this->guidance) {
  1221. $css_class_name = $this->getCSSclass('help', null, true, $css_postfix);
  1222. $cell_value = $this->fdd[$k]['help'] ? $this->fdd[$k]['help'] : '&nbsp;';
  1223. #echo '<td class="',$css_class_name,'">',$cell_value,'</td>',"\n";
  1224. }
  1225. #echo '</tr>',"\n";
  1226. } elseif ($this->delete_operation() || $this->view_operation()) {
  1227. $css_postfix = @$this->fdd[$k]['css']['postfix'];
  1228. #echo '<tr class="',$this->getCSSclass('row', null, 'next', $css_postfix),'">',"\n";
  1229. #echo '<td class="',$this->getCSSclass('key', null, true, $css_postfix),'">',$this->fdd[$k]['name'],'</td>',"\n";
  1230. $smarty->assign($this->fds[$k]."Txt", $this->fdd[$k]['name']);
  1231. ob_start();
  1232. if ($this->password($k)) {
  1233. #echo '<td class="',$this->getCSSclass('value', null, true, $css_postfix),'"';
  1234. #echo $this->getColAttributes($k),'>',$this->labels['hidden'],'</td>',"\n";
  1235. echo $this->labels['hidden'];
  1236. } else {
  1237. $this->display_delete_field($row, $k);
  1238. }
  1239. $smarty->assign($this->fds[$k]."Val", ob_get_contents());
  1240. ob_end_clean();
  1241. if ($this->guidance) {
  1242. $css_class_name = $this->getCSSclass('help', null, true, $css_postfix);
  1243. $cell_value = $this->fdd[$k]['help'] ? $this->fdd[$k]['help'] : '&nbsp;';
  1244. #echo '<td class="',$css_class_name,'">',$cell_value,'</td>',"\n";
  1245. }
  1246. #echo '</tr>',"\n";
  1247. }
  1248. }
  1249. $smarty->assign('rows', $xrow);
  1250. } /* }}} */
  1251. function display_change_field($row, $k) /* {{{ */
  1252. {
  1253. $css_postfix = @$this->fdd[$k]['css']['postfix'];
  1254. $css_class_name = $this->getCSSclass('input', null, true, $css_postfix);
  1255. #echo '<td class="',$this->getCSSclass('value', null, true, $css_postfix),'"';
  1256. #echo $this->getColAttributes($k),">\n";
  1257. if ($this->col_has_values($k)) {
  1258. $vals = $this->set_values($k);
  1259. $multiple = $this->col_has_multiple_select($k);
  1260. $readonly = $this->readonly($k);
  1261. $strip_tags = true;
  1262. $escape = true;
  1263. echo $this->htmlSelect($this->fds[$k], $css_class_name, $vals, $row["qf$k"],
  1264. $multiple, $readonly, $strip_tags, $escape);
  1265. } elseif (isset($this->fdd[$k]['textarea'])) {
  1266. echo '<textarea class="',$css_class_name,'" name="',$this->fds[$k],'"';
  1267. echo ($this->readonly($k) ? ' disabled' : '');
  1268. if (intval($this->fdd[$k]['textarea']['rows']) > 0) {
  1269. echo ' rows="',$this->fdd[$k]['textarea']['rows'],'"';
  1270. }
  1271. if (intval($this->fdd[$k]['textarea']['cols']) > 0) {
  1272. echo ' cols="',$this->fdd[$k]['textarea']['cols'],'"';
  1273. }
  1274. if (isset($this->fdd[$k]['textarea']['wrap'])) {
  1275. echo ' wrap="',$this->fdd[$k]['textarea']['wrap'],'"';
  1276. } else {
  1277. echo ' wrap="virtual"';
  1278. }
  1279. echo '>',htmlspecialchars($row["qf$k"]),'</textarea>',"\n";
  1280. } else {
  1281. $size_ml_props = '';
  1282. $maxlen = intval($this->fdd[$k]['maxlen']);
  1283. $size = isset($this->fdd[$k]['size']) ? $this->fdd[$k]['size'] : min($maxlen, 60);
  1284. $size && $size_ml_props .= ' size="'.$size.'"';
  1285. $maxlen && $size_ml_props .= ' maxlength="'.$maxlen.'"';
  1286. echo '<input class="',$css_class_name,'" type="text" ';
  1287. echo ($this->readonly($k) ? 'disabled ' : ''),'name="',$this->fds[$k],'" value="';
  1288. echo htmlspecialchars($row["qf$k"]),'" ',$size_ml_props,'>',"\n";
  1289. }
  1290. #echo '</td>',"\n";
  1291. } /* }}} */
  1292. function display_password_field($row, $k) /* {{{ */
  1293. {
  1294. $css_postfix = @$this->fdd[$k]['css']['postfix'];
  1295. #echo '<td class="',$this->getCSSclass('value', null, true, $css_postfix),'"';
  1296. #echo $this->getColAttributes($k),">\n";
  1297. $size_ml_props = '';
  1298. $maxlen = intval($this->fdd[$k]['maxlen']);
  1299. $size = isset($this->fdd[$k]['size']) ? $this->fdd[$k]['size'] : min($maxlen, 60);
  1300. $size && $size_ml_props .= ' size="'.$size.'"';
  1301. $maxlen && $size_ml_props .= ' maxlength="'.$maxlen.'"';
  1302. echo '<input class="',$this->getCSSclass('value', null, true, $css_postfix),'" type="password" ';
  1303. echo ($this->readonly($k) ? 'disabled ' : ''),'name="',$this->fds[$k],'" value="';
  1304. echo htmlspecialchars($row["qf$k"]),'" ',$size_ml_props,'>',"\n";
  1305. #echo '</td>',"\n";
  1306. } /* }}} */
  1307. function display_delete_field($row, $k) /* {{{ */
  1308. {
  1309. $css_postfix = @$this->fdd[$k]['css']['postfix'];
  1310. $css_class_name = $this->getCSSclass('value', null, true, $css_postfix);
  1311. #echo '<td class="',$css_class_name,'"',$this->getColAttributes($k),">\n";
  1312. echo $this->cellDisplay($k, $row, $css_class_name);
  1313. #echo '</td>',"\n";
  1314. } /* }}} */
  1315. /**
  1316. * Returns CSS class name
  1317. */
  1318. function getCSSclass($name, $position = null, $divider = null, $postfix = null) /* {{{ */
  1319. {
  1320. static $div_idx = -1;
  1321. $elements = array($this->css['prefix'], $name);
  1322. if ($this->page_type && $this->css['page_type']) {
  1323. if ($this->page_type != 'L' && $this->page_type != 'F') {
  1324. $elements[] = $this->page_types[$this->page_type];
  1325. }
  1326. }
  1327. if ($position && $this->css['position']) {
  1328. $elements[] = $position;
  1329. }
  1330. if ($divider && $this->css['divider']) {
  1331. if ($divider === 'next') {
  1332. $div_idx++;
  1333. if ($this->css['divider'] > 0 && $div_idx >= $this->css['divider']) {
  1334. $div_idx = 0;
  1335. }
  1336. }
  1337. $elements[] = $div_idx;
  1338. }
  1339. if ($postfix) {
  1340. $elements[] = $postfix;
  1341. }
  1342. return join($this->css['separator'], $elements);
  1343. } /* }}} */
  1344. /**
  1345. * Returns field cell HTML attributes
  1346. */
  1347. function getColAttributes($k) /* {{{ */
  1348. {
  1349. $colattrs = '';
  1350. if (isset($this->fdd[$k]['colattrs'])) {
  1351. $colattrs .= ' ';
  1352. $colattrs .= trim($this->fdd[$k]['colattrs']);
  1353. }
  1354. if (isset($this->fdd[$k]['nowrap'])) {
  1355. $colattrs .= ' nowrap';
  1356. }
  1357. return $colattrs;
  1358. } /* }}} */
  1359. /**
  1360. * Substitutes variables in string
  1361. * (this is very simple but secure eval() replacement)
  1362. */
  1363. function substituteVars($str, $subst_ar) /* {{{ */
  1364. {
  1365. $array = preg_split('/\\$(\w+)/', $str, -1, PREG_SPLIT_DELIM_CAPTURE);
  1366. for ($i = 1; $i < count($array); $i += 2) {
  1367. if (isset($subst_ar[$array[$i]]))
  1368. $array[$i] = $subst_ar[$array[$i]];
  1369. }
  1370. return join('', $array);
  1371. } /* }}} */
  1372. /**
  1373. * Print URL
  1374. */
  1375. function urlDisplay($k, $link_val, $disp_val, $css, $key) /* {{{ */
  1376. {
  1377. $ret = '';
  1378. $name = $this->fds[$k];
  1379. $page = $this->page_name;
  1380. $url = 'rec='.$key.'&fm='.$this->fm.'&fl='.$this->fl;
  1381. $url .= '&qfn='.rawurlencode($this->qfn).$this->qfn;
  1382. $url .= '&'.$this->get_sfn_cgi_vars().$this->cgi['persist'];
  1383. $ar = array(
  1384. 'key' => $key,
  1385. 'name' => $name,
  1386. 'link' => $link_val,
  1387. 'value' => $disp_val,
  1388. 'css' => $css,
  1389. 'page' => $page,
  1390. 'url' => $url
  1391. );
  1392. $urllink = isset($this->fdd[$k]['URL'])
  1393. ? $this->substituteVars($this->fdd[$k]['URL'], $ar)
  1394. : $link_val;
  1395. $urldisp = isset($this->fdd[$k]['URLdisp'])
  1396. ? $this->substituteVars($this->fdd[$k]['URLdisp'], $ar)
  1397. : $disp_val;
  1398. $target = isset($this->fdd[$k]['URLtarget'])
  1399. ? 'target="'.htmlspecialchars($this->fdd[$k]['URLtarget']).'" '
  1400. : '';
  1401. $prefix_found = false;
  1402. $postfix_found = false;
  1403. $prefix_ar = @$this->fdd[$k]['URLprefix'];
  1404. $postfix_ar = @$this->fdd[$k]['URLpostfix'];
  1405. is_array($prefix_ar) || $prefix_ar = array($prefix_ar);
  1406. is_array($postfix_ar) || $postfix_ar = array($postfix_ar);
  1407. foreach ($prefix_ar as $prefix) {
  1408. if (! strncmp($prefix, $urllink, strlen($prefix))) {
  1409. $prefix_found = true;
  1410. break;
  1411. }
  1412. }
  1413. foreach ($postfix_ar as $postfix) {
  1414. if (! strncmp($postfix, $urllink, strlen($postfix))) {
  1415. $postfix_found = true;
  1416. break;
  1417. }
  1418. }
  1419. $prefix_found || $urllink = array_shift($prefix_ar).$urllink;
  1420. $postfix_found || $urllink = $urllink.array_shift($postfix_ar);
  1421. if (strlen($urllink) <= 0 || strlen($urldisp) <= 0) {
  1422. $ret = '&nbsp;';
  1423. } else {
  1424. $urllink = htmlspecialchars($urllink);
  1425. $urldisp = htmlspecialchars($urldisp);
  1426. $ret = '<a '.$target.'class="'.$css.'" href="'.$urllink.'">'.$urldisp.'</a>';
  1427. }
  1428. return $ret;
  1429. } /* }}} */
  1430. function cellDisplay($k, $row, $css) /* {{{ */
  1431. {
  1432. $escape = isset($this->fdd[$k]['escape']) ? $this->fdd[$k]['escape'] : true;
  1433. $key_rec = $row['qf'.$this->key_num];
  1434. if (@$this->fdd[$k]['datemask']) {
  1435. $value = intval($row["qf$k".'_timestamp']);
  1436. $value = $value ? @date($this->fdd[$k]['datemask'], $value) : '';
  1437. } else if (@$this->fdd[$k]['strftimemask']) {
  1438. $value = intval($row["qf$k".'_timestamp']);
  1439. $value = $value ? @strftime($this->fdd[$k]['strftimemask'], $value) : '';
  1440. } else if ($this->is_values2($k, $row["qf$k"])) {
  1441. $value = $row['qf'.$k.'_idx'];
  1442. if ($this->fdd[$k]['select'] == 'M') {
  1443. $value_ar = explode(',', $value);
  1444. $value_ar2 = array();
  1445. foreach ($value_ar as $value_key) {
  1446. if (isset($this->fdd[$k]['values2'][$value_key])) {
  1447. $value_ar2[$value_key] = $this->fdd[$k]['values2'][$value_key];
  1448. $escape = false;
  1449. }
  1450. }
  1451. $value = join(', ', $value_ar2);
  1452. } else {
  1453. if (isset($this->fdd[$k]['values2'][$value])) {
  1454. $value = $this->fdd[$k]['values2'][$value];
  1455. $escape = false;
  1456. }
  1457. }
  1458. } else {
  1459. $value = $row["qf$k"];
  1460. }
  1461. $original_value = $value;
  1462. if (@$this->fdd[$k]['strip_tags']) {
  1463. $value = strip_tags($value);
  1464. }
  1465. if (intval($this->fdd[$k]['trimlen']) > 0 && strlen($value) > $this->fdd[$k]['trimlen']) {
  1466. $value = ereg_replace("[\r\n\t ]+",' ',$value);
  1467. $value = substr($value, 0, $this->fdd[$k]['trimlen'] - 3).'...';
  1468. }
  1469. if (@$this->fdd[$k]['mask']) {
  1470. $value = sprintf($this->fdd[$k]['mask'], $value);
  1471. }
  1472. if (isset($this->fdd[$k]['eval'])) {
  1473. eval($this->fdd[$k]['eval']);
  1474. }
  1475. if ($this->col_has_URL($k)) {
  1476. return $this->urlDisplay($k, $original_value, $value, $css, $key_rec);
  1477. }
  1478. if (strlen($value) <= 0) {
  1479. return '&nbsp;';
  1480. }
  1481. if ($escape) {
  1482. $value = htmlspecialchars($value);
  1483. }
  1484. return nl2br($value);
  1485. } /* }}} */
  1486. /**
  1487. * Creates HTML submit input element
  1488. *
  1489. * @param name element name
  1490. * @param label key in the language hash used as label
  1491. * @param css_class_name CSS class name
  1492. * @param js_validation if add JavaScript validation subroutine to button
  1493. * @param disabled if mark the button as disabled
  1494. */
  1495. function htmlSubmit($name, $label, $css_class_name, $js_validation = true, $disabled = false) /* {{{ */
  1496. {
  1497. // Note that <input disabled> isn't valid HTML, but most browsers support it
  1498. $markdisabled = $disabled ? ' disabled' : '';
  1499. $ret = '<input'.$markdisabled.' type="submit" class="'.$css_class_name
  1500. .'" name="'.ltrim($markdisabled).$name
  1501. .'" value="'.(isset($this->labels[$label]) ? $this->labels[$label] : $label);
  1502. if ($name == 'mailchange'){
  1503. $ret = '<input'.$markdisabled.' type="button" class="'.$css_class_name
  1504. .'" name="'.ltrim($markdisabled).$name
  1505. .'" value="'.__(isset($this->labels[$label]) ? $this->labels[$label] : $label);
  1506. $ret .= '" onClick=newmail() "';
  1507. }
  1508. else if ($name == 'docchange'){
  1509. $ret = '<input'.$markdisabled.' type="button" class="'.$css_class_name
  1510. .'" name="'.ltrim($markdisabled).$name
  1511. .'" value="'.__(isset($this->labels[$label]) ? $this->labels[$label] : $label);
  1512. $ret .= '" onClick=opendoc() "';
  1513. }
  1514. else if ($name == 'rtfgen'){
  1515. $ret = '<input'.$markdisabled.' type="button" class="'.$css_class_name
  1516. .'" name="'.ltrim($markdisabled).$name
  1517. .'" value="'.__(isset($this->labels[$label]) ? $this->labels[$label] : $label);
  1518. $ret .= '" onClick=overview() "';
  1519. }
  1520. else if ($name == 'adminchange'){
  1521. $ret = '<input'.$markdisabled.' type="submit" class="'.$css_class_name
  1522. .'" name="adminchange'
  1523. .'" value="'.__('Save');
  1524. $ret .= '" onClick="change_input();" "';
  1525. }
  1526. else if ($name == 'rtfgen_detail'){
  1527. $ret = '<input'.$markdisabled.' type="button" class="'.$css_class_name
  1528. .'" name="'.ltrim($markdisabled).$name
  1529. .'" value="'.__(isset($this->labels[$label]) ? $this->labels[$label] : $label);
  1530. $ret .= '" onClick=detail() "';
  1531. }
  1532. else if ($name == 'rtfgen_ticker'){
  1533. $ret = '<input'.$markdisabled.' type="button" class="'.$css_class_name
  1534. .'" name="'.ltrim($markdisabled).$name
  1535. .'" value="'.__(isset($this->labels[$label]) ? $this->labels[$label] : $label);
  1536. $ret .= '" onClick=ticker() "';
  1537. }
  1538. else if ($name == 'rtfgen_ticker_all'){
  1539. $ret = '<input'.$markdisabled.' type="button" class="'.$css_class_name
  1540. .'" name="'.ltrim($markdisabled).$name
  1541. .'" value="'.__(isset($this->labels[$label]) ? $this->labels[$label] : $label);
  1542. $ret .= '" onClick=ticker_all() "';
  1543. }
  1544. else if ($name == 'leasing_offer'){
  1545. $ret = '<input'.$markdisabled.' type="button" class="'.$css_class_name
  1546. .'" name="'.ltrim($markdisabled).$name
  1547. .'" value="'.__(isset($this->labels[$label]) ? $this->labels[$label] : $label);
  1548. $ret .= '" onClick=leasing_off() "';
  1549. }
  1550. else if ($name == 'accessories'){
  1551. $ret = '<input'.$markdisabled.' type="button" class="'.$css_class_name
  1552. .'" name="'.ltrim($markdisabled).$name
  1553. .'" value="'.__(isset($this->labels[$label]) ? $this->labels[$label] : $label);
  1554. $ret .= '" onClick=accessor() "';
  1555. }
  1556. else if ($name == 'execute'){
  1557. $ret = '<input'.$markdisabled.' type="button" class="'.$css_class_name
  1558. .'" name="'.ltrim($markdisabled).$name
  1559. .'" value="'.__(isset($this->labels[$label]) ? $this->labels[$label] : $label);
  1560. $ret .= '" "';
  1561. }
  1562. else if ($js_validation) {
  1563. $ret .= '" onClick="return phpMyEdit_form_control(this.form);';
  1564. }
  1565. $ret .= '">';
  1566. return $ret;
  1567. } /* }}} */
  1568. /**
  1569. * Creates HTML hidden input element
  1570. *
  1571. * @param name element name
  1572. * @param value value
  1573. */
  1574. function htmlHidden($name, $value) /* {{{ */
  1575. {
  1576. return '<input type="hidden" name="'.htmlspecialchars($name)
  1577. .'" value="'.htmlspecialchars($value).'">'."\n";
  1578. } /* }}} */
  1579. /**
  1580. * Creates HTML select element (tag)
  1581. *
  1582. * @param name element name
  1583. * @param css CSS class name
  1584. * @param kv_array key => value array
  1585. * @param selected selected key (it can be single string, array of
  1586. * keys or multiple values separated by comma)
  1587. * @param multiple bool for multiple selection
  1588. * @param readonly bool for readonly/disabled selection
  1589. * @param strip_tags bool for stripping tags from values
  1590. * @param escape bool for HTML escaping values
  1591. */
  1592. function htmlSelect($name, $css, $kv_array, $selected = null, /* ...) {{{ */
  1593. /* booleans: */ $multiple = false, $readonly = false, $strip_tags = false, $escape = true)
  1594. {
  1595. $ret = '<select class="'.htmlspecialchars($css).'" name="'.htmlspecialchars($name);
  1596. if ($multiple) {
  1597. $ret .= '[]" multiple size="'.$this->multiple;
  1598. if (! is_array($selected) && $selected !== null) {
  1599. $selected = explode(',', $selected);
  1600. }
  1601. }
  1602. $ret .= '"'.($readonly ? ' disabled' : '').'>'."\n";
  1603. if (! is_array($selected)) {
  1604. $selected = $selected === null ? array() : array($selected);
  1605. }
  1606. $found = false;
  1607. foreach ($kv_array as $key => $value) {
  1608. $ret .= '<option value="'.htmlspecialchars($key).'"';
  1609. if ((! $found || $multiple) && in_array((string) $key, $selected, 1)
  1610. || (count($selected) == 0 && ! $found && ! $multiple)) {
  1611. $ret .= ' selected';
  1612. $found = true;
  1613. }
  1614. $strip_tags && $value = strip_tags($value);
  1615. $escape && $value = htmlspecialchars($value);
  1616. $ret .= '>'.$value.'</option>'."\n";
  1617. }
  1618. $ret .= '</select>';
  1619. return $ret;
  1620. } /* }}} */
  1621. /**
  1622. * Returns original variables HTML code for use in forms or links.
  1623. *
  1624. * @param mixed $origvars string or array of original varaibles
  1625. * @param string $method type of method ("POST" or "GET")
  1626. * @param mixed $default_value default value of variables
  1627. * if null, empty values will be skipped
  1628. * @return get HTML code of original varaibles
  1629. */
  1630. function get_origvars_html($origvars, $method = 'POST', $default_value = '') /* {{{ */
  1631. {
  1632. $ret = '';
  1633. $method = strtoupper($method);
  1634. if ($method == 'POST') {
  1635. if (! is_array($origvars)) {
  1636. $new_origvars = array();
  1637. foreach (explode('&', $origvars) as $param) {
  1638. $parts = explode('=', $param, 2);
  1639. if (! isset($parts[1])) {
  1640. $parts[1] = $default_value;
  1641. }
  1642. if (strlen($parts[0]) <= 0) {
  1643. continue;
  1644. }
  1645. $new_origvars[$parts[0]] = $parts[1];
  1646. }
  1647. $origvars =& $new_origvars;
  1648. }
  1649. foreach ($origvars as $key => $val) {
  1650. if (strlen($val) <= 0 && $default_value === null) {
  1651. continue;
  1652. }
  1653. $key = rawurldecode($key);
  1654. $val = rawurldecode($val);
  1655. $ret .= '<input type="hidden" name="';
  1656. $ret .= htmlspecialchars($key).'"';
  1657. $ret .= ' value="'.htmlspecialchars($val).'"';
  1658. $ret .= " />\n";
  1659. }
  1660. } else if (! strncmp('GET', $method, 3)) {
  1661. if (! is_array($origvars)) {
  1662. $ret .= $origvars;
  1663. } else {
  1664. foreach ($origvars as $key => $val) {
  1665. if (strlen($val) <= 0 && $default_value === null) {
  1666. continue;
  1667. }
  1668. $ret == '' || $ret .= '&amp;';
  1669. $ret .= htmlspecialchars(rawurlencode($key));
  1670. $ret .= '=';
  1671. $ret .= htmlspecialchars(rawurlencode($val));
  1672. }
  1673. }
  1674. if ($method[strlen($method) - 1] == '+') {
  1675. $ret = "?$ret";
  1676. }
  1677. } else {
  1678. trigger_error('Unsupported Platon::get_origvars_html() method: '
  1679. .$method, E_USER_ERROR);
  1680. }
  1681. return $ret;
  1682. } /* }}} */
  1683. function get_sfn_cgi_vars($alternative_sfn = null) /* {{{ */
  1684. {
  1685. if ($alternative_sfn === null) { // FAST! (cached return value)
  1686. static $ret = null;
  1687. $ret == null && $ret = $this->get_sfn_cgi_vars($this->sfn);
  1688. return $ret;
  1689. }
  1690. $ret = '';
  1691. $i = 0;
  1692. foreach ($alternative_sfn as $val) {
  1693. $ret != '' && $ret .= '&';
  1694. $ret .= "sfn[$i]=".rawurlencode($val);
  1695. $i++;
  1696. }
  1697. return $ret;
  1698. } /* }}} */
  1699. function get_cgi_var($name, $default_value = null) /* {{{ */
  1700. {
  1701. if (isset($this) && isset($this->cgi['overwrite'][$name])) {
  1702. return $this->cgi['overwrite'][$name];
  1703. }
  1704. static $magic_quotes_gpc = null;
  1705. if ($magic_quotes_gpc === null) {
  1706. $magic_quotes_gpc = get_magic_quotes_gpc();
  1707. }
  1708. global $HTTP_GET_VARS;
  1709. $var = @$HTTP_GET_VARS[$name];
  1710. if (! isset($var)) {
  1711. global $HTTP_POST_VARS;
  1712. $var = @$HTTP_POST_VARS[$name];
  1713. }
  1714. if (isset($var)) {
  1715. if ($magic_quotes_gpc) {
  1716. if (is_array($var)) {
  1717. foreach (array_keys($var) as $key) {
  1718. $var[$key] = stripslashes($var[$key]);
  1719. }
  1720. } else {
  1721. $var = stripslashes($var);
  1722. }
  1723. }
  1724. } else {
  1725. $var = @$default_value;
  1726. }
  1727. if (isset($this) && $var === null && isset($this->cgi['append'][$name])) {
  1728. return $this->cgi['append'][$name];
  1729. }
  1730. return $var;
  1731. } /* }}} */
  1732. function get_server_var($name) /* {{{ */
  1733. {
  1734. if (isset($_SERVER[$name])) {
  1735. return $_SERVER[$name];
  1736. }
  1737. global $HTTP_SERVER_VARS;
  1738. if (isset($HTTP_SERVER_VARS[$name])) {
  1739. return $HTTP_SERVER_VARS[$name];
  1740. }
  1741. global $$name;
  1742. if (isset($$name)) {
  1743. return $$name;
  1744. }
  1745. return null;
  1746. } /* }}} */
  1747. /*
  1748. * Debug functions
  1749. */
  1750. function print_get_vars ($miss = 'No GET variables found') // debug only /* {{{ */
  1751. {
  1752. global $HTTP_GET_VARS;
  1753. // we parse form GET variables
  1754. if (is_array($HTTP_GET_VARS)) {
  1755. echo "<p> Variables per GET ";
  1756. foreach ($HTTP_GET_VARS as $k => $v) {
  1757. if (is_array($v)) {
  1758. foreach ($v as $akey => $aval) {
  1759. // $HTTP_GET_VARS[$k][$akey] = strip_tags($aval);
  1760. // $$k[$akey] = strip_tags($aval);
  1761. echo "$k\[$akey\]=$aval ";
  1762. }
  1763. } else {
  1764. // $HTTP_GET_VARS[$k] = strip_tags($val);
  1765. // $$k = strip_tags($val);
  1766. echo "$k=$v ";
  1767. }
  1768. }
  1769. echo '</p>';
  1770. } else {
  1771. echo '<p>';
  1772. echo $miss;
  1773. echo '</p>';
  1774. }
  1775. } /* }}} */
  1776. function print_post_vars($miss = 'No POST variables found') // debug only /* {{{ */
  1777. {
  1778. global $HTTP_POST_VARS;
  1779. // we parse form POST variables
  1780. if (is_array($HTTP_POST_VARS)) {
  1781. echo "<p>Variables per POST ";
  1782. foreach ($HTTP_POST_VARS as $k => $v) {
  1783. if (is_array($v)) {
  1784. foreach ($v as $akey => $aval) {
  1785. // $HTTP_POST_VARS[$k][$akey] = strip_tags($aval);
  1786. // $$k[$akey] = strip_tags($aval);
  1787. echo "$k\[$akey\]=$aval ";
  1788. }
  1789. } else {
  1790. // $HTTP_POST_VARS[$k] = strip_tags($val);
  1791. // $$k = strip_tags($val);
  1792. echo "$k=$v ";
  1793. }
  1794. }
  1795. echo '</p>';
  1796. } else {
  1797. echo '<p>';
  1798. echo $miss;
  1799. echo '</p>';
  1800. }
  1801. } /* }}} */
  1802. function print_vars ($miss = 'Current instance variables') // debug only /* {{{ */
  1803. {
  1804. echo "$miss ";
  1805. echo 'page_name=',$this->page_name,' ';
  1806. echo 'hn=',$this->hn,' ';
  1807. echo 'un=',$this->un,' ';
  1808. echo 'pw=',$this->pw,' ';
  1809. echo 'db=',$this->db,' ';
  1810. echo 'tb=',$this->tb,' ';
  1811. echo 'key=',$this->key,' ';
  1812. echo 'key_type=',$this->key_type,' ';
  1813. echo 'inc=',$this->inc,' ';
  1814. echo 'options=',$this->options,' ';
  1815. echo 'fdd=',$this->fdd,' ';
  1816. echo 'fl=',$this->fl,' ';
  1817. echo 'fm=',$this->fm,' ';
  1818. echo 'sfn=',htmlspecialchars($this->get_sfn_cgi_vars()),' ';
  1819. echo 'qfn=',$this->qfn,' ';
  1820. echo 'sw=',$this->sw,' ';
  1821. echo 'rec=',$this->rec,' ';
  1822. echo 'navop=',$this->navop,' ';
  1823. echo 'saveadd=',$this->saveadd,' ';
  1824. echo 'moreadd=',$this->moreadd,' ';
  1825. echo 'canceladd=',$this->canceladd,' ';
  1826. echo 'savechange=',$this->savechange,' ';
  1827. echo 'adminchange=',$this->adminchange,' ';
  1828. echo 'morechange=',$this->morechange,' ';
  1829. echo 'mailchange=',$this->mailchange,' ';
  1830. echo 'docchange=',$this->docchange,' ';
  1831. echo 'rtfgen_detail=',$this->rtfgen_detail,' ';
  1832. echo 'rtfgen_ticker=',$this->rtfgen_ticker,' ';
  1833. echo 'leasing_offer=',$this->leasing_offer,' ';
  1834. echo 'accessories=',$this->accessories,' ';
  1835. echo 'cancelchange=',$this->cancelchange,' ';
  1836. echo 'savedelete=',$this->savedelete,' ';
  1837. echo 'canceldelete=',$this->canceldelete,' ';
  1838. echo 'cancelview=',$this->cancelview,' ';
  1839. echo 'operation=',$this->operation,' ';
  1840. echo "\n";
  1841. } /* }}} */
  1842. /*
  1843. * Display buttons at top and bottom of page
  1844. */
  1845. function display_list_table_buttons($total_recs, $position) /* {{{ */
  1846. {
  1847. #echo '<table class="',$this->getCSSclass('navigation', $position),'">',"\n";
  1848. #echo '<tr class="',$this->getCSSclass('navigation', $position),'">',"\n";
  1849. #echo '<td class="',$this->getCSSclass('buttons', $position),'">',"\n";
  1850. $listall = $this->inc <= 0; // Are we doing a listall?
  1851. $disabledprev = !($this->fm > 0 && !$listall);
  1852. $disablednext = !($this->fm + $this->inc < $total_recs && ! $listall);
  1853. $disabledgoto = !($listall || ($disablednext && $disabledprev)) ? '' : ' disabled';
  1854. $current_page = intval($this->fm / $this->inc) + 1;
  1855. $total_pages = max(1, ceil($total_recs / abs($this->inc)));
  1856. $bAdmin = $this->htmlSubmit('adminchange', 'Save', $this->getCSSclass('save', $position), false);
  1857. ob_start();
  1858. echo '<input class="',$this->getCSSclass('afa', $position);
  1859. echo '" type="text" name="AfA_change">',"\n";
  1860. $iAfa = ob_get_contents();
  1861. ob_end_clean();
  1862. ob_start();
  1863. echo '<input class="',$this->getCSSclass('upenetto', $position);
  1864. echo '" type="text" name="UPE_Netto_change">',"\n";
  1865. $iUPENetto = ob_get_contents();
  1866. ob_end_clean();
  1867. ob_start();
  1868. echo '<input class="',$this->getCSSclass('vknetto', $position);
  1869. echo '" type="text" name="VK_Netto_change">',"\n";
  1870. $iVKNetto = ob_get_contents();
  1871. ob_end_clean();
  1872. $brtfta = $this->htmlSubmit('rtfgen_ticker_all', __('Print Ticker for all'), $this->getCSSclass('rtfgen_ticker_all', $position), true);
  1873. if (!$listall) {
  1874. $bFirst = $this->htmlSubmit('navop', 'First', $this->getCSSclass('first', $position), false, $disabledprev);
  1875. $bPrev = $this->htmlSubmit('navop', 'Prev', $this->getCSSclass('prev', $position), false, $disabledprev);
  1876. }
  1877. if ($this->add_enabled()) {
  1878. $bAdd = $this->htmlSubmit('operation', 'Add', $this->getCSSclass('add', $position), false, false);
  1879. }
  1880. $bRtf = $this->htmlSubmit('rtfgen', __("Print", "Print", "GENERAL"), $this->getCSSclass('rtfgen', $position), false, false);
  1881. $brtfd = $this->htmlSubmit('rtfgen_detail', 'Print', $this->getCSSclass('rtfgen_detail', $position), true);
  1882. if ($this->nav_buttons()) {
  1883. if ($this->view_enabled()) {
  1884. $bView = $this->htmlSubmit('operation', 'View', $this->getCSSclass('view', $position), false, !$total_recs);
  1885. }
  1886. if ($this->change_enabled()) {
  1887. $bChange = $this->htmlSubmit('operation', 'Change', $this->getCSSclass('change', $position), false, !$total_recs);
  1888. }
  1889. if ($this->copy_enabled()) {
  1890. $bCopy = $this->htmlSubmit('operation', 'Copy', $this->getCSSclass('copy', $position), false, !$total_recs);
  1891. }
  1892. if ($this->delete_enabled()) {
  1893. $bDelete= $this->htmlSubmit('operation', 'Delete', $this->getCSSclass('delete', $position), false, !$total_recs);
  1894. }
  1895. }
  1896. if (!$listall) { //nav buttons are not displayed if explicit listall
  1897. $bNext = $this->htmlSubmit('navop', 'Next', $this->getCSSclass('next', $position), false, $disablednext);
  1898. $bLast = $this->htmlSubmit('navop', 'Last', $this->getCSSclass('last', $position), false, $disablednext);
  1899. $bGoto = $this->htmlSubmit('navop', 'Go to', $this->getCSSclass('goto', $position), false,
  1900. ($listall || ($disablednext && $disabledprev)));
  1901. ob_start();
  1902. echo '<select',$disabledgoto,' class="',$this->getCSSclass('goto', $position);
  1903. echo '" name="',ltrim($disabledgoto),'navfm',$position,'" onChange="return this.form.submit();">',"\n";
  1904. for ($i = 0; $i < $total_pages; $i++) {
  1905. echo '<option',($this->fm == $this->inc * $i) ? ' selected' : '';
  1906. echo ' value="',$this->inc * $i,'">',$i + 1,'</option>',"\n";
  1907. }
  1908. echo '</select>';
  1909. $sGoto = ob_get_contents();
  1910. ob_end_clean();
  1911. }
  1912. #echo '</td>',"\n";
  1913. // Message is now written here
  1914. if (strlen(@$this->message) > 0) {
  1915. $tMessage = '<td class="'.$this->getCSSclass('message', $position).'">'.$this->message.'</td>'."\n";
  1916. }
  1917. // Display page and records statistics
  1918. echo '<td class="',$this->getCSSclass('stats', $position),'">',"\n";
  1919. if ($listall) {
  1920. $current_page = 1;
  1921. $total_pages = 1;
  1922. }
  1923. #echo '&nbsp; ',$this->labels['Records'],':&nbsp;',$total_recs;
  1924. #echo '</td></tr></table>',"\n";
  1925. global $smarty;
  1926. $smarty->assign('button_first', $bFirst);
  1927. $smarty->assign('button_prev', $bPrev);
  1928. $smarty->assign('button_add', $bAdd);
  1929. $smarty->assign('button_save', $bSave);
  1930. $smarty->assign('button_admin', $bAdmin);
  1931. $smarty->assign('button_rtfgen', $bRtf);
  1932. $smarty->assign('button_view', $bView);
  1933. $smarty->assign('button_change', $bChange);
  1934. $smarty->assign('button_copy', $bCopy);
  1935. $smarty->assign('button_delete', $bDelete);
  1936. $smarty->assign('button_next', $bNext);
  1937. $smarty->assign('button_last', $bLast);
  1938. $smarty->assign('button_goto', $bGoto);
  1939. $smarty->assign('button_rtfgen_ticker_all', $brtfta);
  1940. // $smarty->assign('button_print',
  1941. // '<input type=button value="'.__('Print').'" '.
  1942. // ' onClick="location.href=\''.$_SERVER['PHP_SELF'].'?dopdf=1\';">');
  1943. $smarty->assign('select_goto', $sGoto);
  1944. $smarty->assign('input_afa', $iAfa);
  1945. $smarty->assign('input_upenetto', $iUPENetto);
  1946. $smarty->assign('input_vknetto', $iVKNetto);
  1947. $smarty->assign('text_message', $tMessage);
  1948. $smarty->assign('label_page', $this->labels['Page']);
  1949. $smarty->assign('current_page', $current_page);
  1950. $smarty->assign('label_of', $this->labels['of']);
  1951. $smarty->assign('total_pages', $total_pages);
  1952. $smarty->assign('label_records', $this->labels['Records']);
  1953. $smarty->assign('total_recs', $total_recs);
  1954. $smarty->assign('REPORT_COUNT', $total_recs);
  1955. } /* }}} */
  1956. /*
  1957. * Display buttons at top and bottom of page
  1958. */
  1959. function display_record_buttons($position) /* {{{ */
  1960. {
  1961. #echo '<table class="',$this->getCSSclass('navigation', $position),'">',"\n";
  1962. #echo '<tr class="',$this->getCSSclass('navigation', $position),'">',"\n";
  1963. #echo '<td class="',$this->getCSSclass('buttons', $position),'">',"\n";
  1964. $brtft = $this->htmlSubmit('rtfgen_ticker', __('Print Ticker'), $this->getCSSclass('rtfgen_ticker', $position), true);
  1965. $LeasOff = $this->htmlSubmit('leasing_offer', __('Leasing Offer'), $this->getCSSclass('leasing_offer', $position), true);
  1966. $Accessories = $this->htmlSubmit('accessories', __('Accessories'), $this->getCSSclass('accessories', $position), true);
  1967. if ($this->change_operation()) {
  1968. $bMail = $this->htmlSubmit('mailchange', __('Mail'), $this->getCSSclass('mail', $position), true);
  1969. $bDocument = $this->htmlSubmit('docchange', __('Document'), $this->getCSSclass('document', $position), true);
  1970. $brtfd = $this->htmlSubmit('rtfgen_detail', 'Print', $this->getCSSclass('rtfgen_detail', $position), true);
  1971. $bSave = $this->htmlSubmit('savechange', 'Save', $this->getCSSclass('save', $position), true);
  1972. $bApply = $this->htmlSubmit('morechange', 'Apply', $this->getCSSclass('more', $position), true);
  1973. $bCancel = $this->htmlSubmit('cancelchange', 'Cancel', $this->getCSSclass('cancel', $position), false);
  1974. } elseif ($this->add_operation()) {
  1975. $bSave = $this->htmlSubmit('saveadd', 'Save', $this->getCSSclass('save', $position), true);
  1976. $bMore = $this->htmlSubmit('moreadd', 'More', $this->getCSSclass('more', $position), true);
  1977. $bCancel = $this->htmlSubmit('canceladd', 'Cancel', $this->getCSSclass('cancel', $position), false);
  1978. } elseif ($this->copy_operation()) {
  1979. $bSave = $this->htmlSubmit('saveadd', 'Save', $this->getCSSclass('save', $position), true);
  1980. $bCancel = $this->htmlSubmit('canceladd', 'Cancel', $this->getCSSclass('cancel', $position), false);
  1981. } elseif ($this->delete_operation()) {
  1982. $bDelete = $this->htmlSubmit('savedelete', 'Delete', $this->getCSSclass('save', $position), true);
  1983. $bCancel = $this->htmlSubmit('canceldelete', 'Cancel', $this->getCSSclass('cancel', $position), false);
  1984. } elseif ($this->view_operation()) {
  1985. if ($this->change_enabled()) {
  1986. $bChange = $this->htmlSubmit('operation', 'Change', $this->getCSSclass('save', $position), true);
  1987. }
  1988. $bCancel = $this->htmlSubmit('cancelview', 'Cancel', $this->getCSSclass('cancel', $position), false);
  1989. }
  1990. // Message is now written here
  1991. #echo '</td>',"\n";
  1992. if (strlen(@$this->message) > 0) {
  1993. $tMessage = '<td class="'.$this->getCSSclass('message', $position).'">'.$this->message.'</td>'."\n";
  1994. }
  1995. #echo '</tr></table>',"\n";
  1996. global $smarty;
  1997. $smarty->assign('button_mail', $bMail);
  1998. $smarty->assign('button_document', $bDocument);
  1999. $smarty->assign('button_rtfgen_detail', $brtfd);
  2000. $smarty->assign('button_rtfgen_ticker', $brtft);
  2001. $smarty->assign('button_leasing_offer', $LeasOff);
  2002. $smarty->assign('button_accessories', $Accessories);
  2003. $smarty->assign('button_save', $bSave);
  2004. $smarty->assign('button_apply', $bApply);
  2005. $smarty->assign('button_cancel', $bCancel);
  2006. $smarty->assign('button_more', $bMore);
  2007. $smarty->assign('button_delete', $bDelete);
  2008. $smarty->assign('button_change', $bChange);
  2009. $smarty->assign('text_message', $tMessage);
  2010. } /* }}} */
  2011. /*
  2012. * Table Page Listing
  2013. */
  2014. function list_table() /* {{{ */
  2015. {
  2016. // Cancel Triggers
  2017. if ($this->add_canceled() && isset($this->triggers['insert']['cancel'])) {
  2018. include($this->triggers['insert']['cancel']);
  2019. }
  2020. if ($this->view_canceled() && isset($this->triggers['select']['cancel'])) {
  2021. include($this->triggers['select']['cancel']);
  2022. }
  2023. if ($this->change_canceled() && isset($this->triggers['update']['cancel'])) {
  2024. include($this->triggers['update']['cancel']);
  2025. }
  2026. if ($this->delete_canceled() && isset($this->triggers['delete']['cancel'])) {
  2027. include($this->triggers['delete']['cancel']);
  2028. }
  2029. if ($this->fm == '') {
  2030. $this->fm = 0;
  2031. }
  2032. if ($this->prev_operation()) {
  2033. $this->fm = $this->fm - $this->inc;
  2034. if ($this->fm < 0) {
  2035. $this->fm = 0;
  2036. }
  2037. }
  2038. if ($this->first_operation()) {
  2039. $this->fm = 0;
  2040. } // last operation must be performed below, after retrieving total_recs
  2041. if ($this->next_operation()) {
  2042. $this->fm += $this->inc;
  2043. }
  2044. if ($this->goto_operation()) {
  2045. $this->fm = $this->navfm;
  2046. }
  2047. // If sort sequence has changed, restart listing
  2048. $this->qfn != $this->prev_qfn && $this->fm = 0;
  2049. if (0) { // DEBUG
  2050. echo 'qfn vs. prev_qfn comparsion ';
  2051. echo '[<b>',htmlspecialchars($this->qfn),'</b>]';
  2052. echo '[<b>',htmlspecialchars($this->prev_qfn),'</b>]<br>';
  2053. echo 'comparsion <u>',($this->qfn == $this->prev_qfn ? 'proved' : 'failed'),'</u>';
  2054. echo '<hr>';
  2055. }
  2056. /*
  2057. * If user is allowed to Change/Delete records, we need an extra column
  2058. * to allow users to select a record
  2059. */
  2060. $select_recs = $this->key != '' &&
  2061. ($this->change_enabled() || $this->delete_enabled() || $this->view_enabled());
  2062. // Are we doing a listall?
  2063. $listall = $this->inc <= 0;
  2064. /*
  2065. * Display the MySQL table in an HTML table
  2066. */
  2067. global $smarty;
  2068. ob_start();
  2069. $this->form_begin();
  2070. echo $this->get_origvars_html($this->get_sfn_cgi_vars());
  2071. echo '<input type="hidden" name="fl" value="',$this->fl,'">',"\n";
  2072. // Display buttons at top and/or bottom of page.
  2073. // Setup query to get num_rows. (sparky)
  2074. $total_recs = 0;
  2075. $count_parts = array(
  2076. 'type' => 'select',
  2077. 'select' => 'count(*)',
  2078. 'from' => $this->create_join_clause(),
  2079. 'where' => $this->make_where_from_query_opts());
  2080. $res = $this->myquery($this->query_make($count_parts), __LINE__);
  2081. $row = @mysql_fetch_array($res, MYSQL_NUM);
  2082. $total_recs = $row[0];
  2083. if ($this->last_operation()) {
  2084. $this->fm = (int)(($total_recs-1)/$this->inc)*$this->inc;
  2085. }
  2086. if ($this->nav_up()) {
  2087. $this->display_list_table_buttons($total_recs, 'up');
  2088. #echo '<hr class="',$this->getCSSclass('hr', 'up'),'">',"\n";
  2089. }
  2090. if ($this->cgi['persist'] != '') {
  2091. echo $this->get_origvars_html($this->cgi['persist']);
  2092. }
  2093. if (! $this->filter_operation()) {
  2094. echo $this->get_origvars_html($this->qfn);
  2095. }
  2096. echo '<input type="hidden" name="qfn" value="',htmlspecialchars($this->qfn),'">',"\n";
  2097. echo '<input type="hidden" name="fm" value="',htmlspecialchars($this->fm),'">',"\n";
  2098. $smarty->assign('form_begin', ob_get_contents());
  2099. ob_end_clean();
  2100. #echo '<table class="',$this->getCSSclass('main'),'" summary="',$this->tb,'">',"\n";
  2101. #echo '<tr class="',$this->getCSSclass('header'),'">',"\n";
  2102. /*
  2103. * System (navigation, selection) columns counting
  2104. */
  2105. $sys_cols = 0;
  2106. $sys_cols += intval($this->filter_enabled() || $select_recs);
  2107. if ($sys_cols > 0) {
  2108. $sys_cols += intval($this->nav_buttons()
  2109. && ($this->nav_text_links() || $this->nav_graphic_links()));
  2110. }
  2111. /*
  2112. * We need an initial column(s) (sys columns)
  2113. * if we have filters, Changes or Deletes enabled
  2114. */
  2115. /*
  2116. if ($sys_cols) {
  2117. echo '<th class="',$this->getCSSclass('header'),'" colspan="',$sys_cols,'">';
  2118. if (false && $this->filter_enabled()) {
  2119. if ($this->filter_operation()) {
  2120. echo '<input class="',$this->getCSSclass('hide'),'" type="submit" name="sw" value="';
  2121. echo $this->labels['Hide'],'">';
  2122. echo '<input class="',$this->getCSSclass('clear'),'" type="submit" name="sw" value="';
  2123. echo $this->labels['Clear'],'">';
  2124. } else {
  2125. echo '<input class="',$this->getCSSclass('search'),'" type="submit" name="sw" value="';
  2126. echo $this->labels['Search'],'">';
  2127. }
  2128. } else {
  2129. echo '&nbsp;';
  2130. }
  2131. echo '</th>',"\n";
  2132. }*/
  2133. $columnCount = 1;
  2134. for ($k = 0; $k < $this->num_fds; $k++) {
  2135. $fd = $this->fds[$k];
  2136. if ($this->displayed[$k]) {
  2137. $css_postfix = @$this->fdd[$k]['css']['postfix'];
  2138. $css_class_name = $this->getCSSclass('header', null, null, $css_postfix);
  2139. $fdn = $this->fdd[$fd]['name'];
  2140. if (! $this->fdd[$fd]['sort'] || $this->password($fd)) {
  2141. #echo '<th class="',$css_class_name,'">',$fdn,'</th>',"\n";
  2142. } else {
  2143. // Clicking on the current sort field reverses the sort order
  2144. $new_sfn = $this->sfn;
  2145. array_unshift($new_sfn, in_array("$k", $new_sfn, 1) ? "-$k" : $k);
  2146. // echo '<th class="',$css_class_name,'">';
  2147. $fdn = '<a class="'.$css_class_name.'" href="'
  2148. .htmlspecialchars($this->page_name.'?fm=0&fl='.$this->fl
  2149. .'&qfn='.rawurlencode($this->qfn).$this->qfn
  2150. .'&'.$this->get_sfn_cgi_vars($new_sfn).$this->cgi['persist'])
  2151. .'">'.$fdn.'</a>';
  2152. // echo '</th>',"\n";
  2153. }
  2154. $smarty->assign($fd."Txt2", $fdn);
  2155. $columnCount++;
  2156. }
  2157. }
  2158. $smarty->assign('columnCount', ($columnCount));
  2159. #echo '</tr>',"\n";
  2160. /*
  2161. * Prepare the SQL Query from the data definition file
  2162. */
  2163. $qparts['type'] = 'select';
  2164. $qparts['select'] = $this->create_column_list();
  2165. // Even if the key field isn't displayed, we still need its value
  2166. if ($select_recs) {
  2167. if (!in_array ($this->key, $this->fds)) {
  2168. $qparts['select'] .= ','.$this->fqn($this->key);
  2169. }
  2170. }
  2171. $qparts['from'] = $this->create_join_clause();
  2172. $qparts['where'] = $this->make_where_from_query_opts();
  2173. $handle = fopen('query2.txt',"w");
  2174. fwrite($handle, $qparts['where']);
  2175. fclose($handle);
  2176. $this->filter = $qparts['where'];
  2177. // build up the ORDER BY clause
  2178. if (isset($this->sfn)) {
  2179. // WTF $raw_sort_fields?
  2180. //$raw_sort_fields = array();
  2181. $sort_fields = array();
  2182. $sort_fields_w = array();
  2183. foreach ($this->sfn as $field) {
  2184. if ($field[0] == '-') {
  2185. $field = substr($field, 1);
  2186. $desc = true;
  2187. } else {
  2188. $field = $field;
  2189. $desc = false;
  2190. }
  2191. //$raw_sort_field = 'qf'.$field;
  2192. $sort_field = $this->fqn($field);
  2193. $sort_field_w = $this->fdd[$field]['name'];
  2194. $this->col_has_sql($field) && $sort_field_w .= ' (sql)';
  2195. if ($desc) {
  2196. $sort_field .= ' DESC';
  2197. $sort_field_w .= ' '.$this->labels['descending'];
  2198. } else {
  2199. $sort_field_w .= ' '.$this->labels['ascending'];
  2200. }
  2201. //$raw_sort_fields[] = $raw_sort_field;
  2202. $sort_fields[] = $sort_field;
  2203. $sort_fields_w[] = $sort_field_w;
  2204. }
  2205. if (count($sort_fields) > 0) {
  2206. $sort_fields = array_reverse($sort_fields);
  2207. $sort_fields_w = array_reverse($sort_fields_w);
  2208. $qparts['orderby'] = join(',', $sort_fields);
  2209. }
  2210. }
  2211. $to = $this->fm + $this->inc;
  2212. if ($listall) {
  2213. #$qparts['limit'] = $this->fm.',-1';
  2214. } else {
  2215. $qparts['limit'] = $this->fm.','.$this->inc;
  2216. }
  2217. /*
  2218. * Main list_table() query
  2219. *
  2220. * Each row of the HTML table is one record from the SQL query. We must
  2221. * perform this query before filter printing, because we want to use
  2222. * mysql_field_len() function. We will also fetch the first row to get
  2223. * the field names.
  2224. */
  2225. $query = $this->query_make($qparts);
  2226. $res = $this->myquery($query, __LINE__);
  2227. if ($res == false) {
  2228. $this->error('invalid SQL query', $query);
  2229. return false;
  2230. }
  2231. $row = @mysql_fetch_array($res, MYSQL_ASSOC);
  2232. /* FILTER {{{
  2233. *
  2234. * Draw the filter and fill it with any data typed in last pass and stored
  2235. * in the array parameter keyword 'filter'. Prepare the SQL WHERE clause.
  2236. */
  2237. if ($this->filter_operation()) {
  2238. // Filter row retrieval
  2239. $fields = false;
  2240. $filter_row = $row;
  2241. if (! is_array($filter_row)) {
  2242. unset($qparts['where']);
  2243. $query = $this->query_make($qparts);
  2244. $res = $this->myquery($query, __LINE__);
  2245. if ($res == false) {
  2246. $this->error('invalid SQL query', $query);
  2247. return false;
  2248. }
  2249. $filter_row = @mysql_fetch_array($res, MYSQL_ASSOC);
  2250. }
  2251. /* Variable $fields is used to get index of particular field in
  2252. result. That index can be passed in example to mysql_field_len()
  2253. function. Use field names as indexes to $fields array. */
  2254. if (is_array($filter_row)) {
  2255. $fields = array_flip(array_keys($filter_row));
  2256. }
  2257. /*
  2258. if ($fields != false) {
  2259. $css_class_name = $this->getCSSclass('filter');
  2260. echo '<tr class="',$css_class_name,'">',"\n";
  2261. echo '<td class="',$css_class_name,'" colspan="',$sys_cols,'">';
  2262. echo '<input class="',$this->getCSSclass('query'),'" type="submit" name="filter" value="';
  2263. echo $this->labels['Query'],'"></td>',"\n";
  2264. for ($k = 0; $k < $this->num_fds; $k++) {
  2265. if (! $this->displayed[$k]) {
  2266. continue;
  2267. }
  2268. $css_postfix = @$this->fdd[$k]['css']['postfix'];
  2269. $css_class_name = $this->getCSSclass('filter', null, null, $css_postfix);
  2270. $this->field_name = $this->fds[$k];
  2271. $fd = $this->field_name;
  2272. $this->field = $this->fdd[$fd];
  2273. $l = 'qf'.$k;
  2274. $lc = 'qf'.$k.'_comp';
  2275. $li = 'qf'.$k.'_id';
  2276. if ($this->clear_operation()) {
  2277. $m = null;
  2278. $mc = null;
  2279. $mi = null;
  2280. } else {
  2281. $m = $this->get_cgi_var($l);
  2282. $mc = $this->get_cgi_var($lc);
  2283. $mi = $this->get_cgi_var($li);
  2284. }
  2285. echo '<td class="',$css_class_name,'">';
  2286. if ($this->password($k)) {
  2287. echo '&nbsp;';
  2288. } else if ($this->fdd[$fd]['select'] == 'D' || $this->fdd[$fd]['select'] == 'M') {
  2289. // Multiple fields processing
  2290. // Default size is 2 and array required for values.
  2291. $from_table = ! $this->col_has_values($k) || isset($this->fdd[$k]['values']['table']);
  2292. $vals = $this->set_values($k, array('*' => '*'), null, $from_table);
  2293. $selected = $mi;
  2294. $multiple = $this->col_has_multiple_select($k);
  2295. $multiple |= $this->fdd[$fd]['select'] == 'M';
  2296. $readonly = false;
  2297. $strip_tags = true;
  2298. $escape = true;
  2299. echo $this->htmlSelect($l.'_id', $css_class_name, $vals,
  2300. $selected, $multiple, $readonly, $strip_tags, $escape);
  2301. } elseif ($this->fdd[$fd]['select'] == 'N' || $this->fdd[$fd]['select'] == 'T') {
  2302. $size_ml_props = '';
  2303. $maxlen = intval($this->fdd[$k]['maxlen']);
  2304. $maxlen > 0 || $maxlen = intval(@mysql_field_len($res, $fields["qf$k"]));
  2305. $size = isset($this->fdd[$k]['size']) ? $this->fdd[$k]['size']
  2306. : ($maxlen < 30 ? min($maxlen, 8) : 12);
  2307. $size && $size_ml_props .= ' size="'.$size.'"';
  2308. $maxlen && $size_ml_props .= ' maxlength="'.$maxlen.'"';
  2309. if ($this->fdd[$fd]['select'] == 'N') {
  2310. $mc = in_array($mc, $this->comp_ops) ? $mc : '=';
  2311. echo $this->htmlSelect($l.'_comp', $css_class_name, $this->comp_ops, $mc);
  2312. }
  2313. echo '<input class="',$css_class_name,'" value="';
  2314. echo htmlspecialchars(@$m),'" type="text" name="qf',$k,'"',$size_ml_props;
  2315. echo ' onKeyPress="return phpMyEdit_filter_handler(this.form, event);">';
  2316. } else {
  2317. echo '&nbsp;';
  2318. }
  2319. echo '</td>',"\n";
  2320. }
  2321. echo '</tr>',"\n";
  2322. }
  2323. */
  2324. } // }}}
  2325. /*
  2326. * Display sorting sequence
  2327. */
  2328. global $smarty;
  2329. ob_start();
  2330. if ($qparts['orderby'] && $this->display['sort']) {
  2331. $css_class_name = $this->getCSSclass('sortinfo');
  2332. #echo '<tr class="',$css_class_name,'">',"\n";
  2333. #echo '<td class="',$css_class_name,'" colspan="',$sys_cols,'">';
  2334. echo '<a class="',$css_class_name,'" href="';
  2335. echo htmlspecialchars($this->get_server_var('PHP_SELF').'?fl='.$this->fl.'&fm='.$this->fm
  2336. .'&qfn='.rawurlencode($this->qfn).$this->qfn.$this->cgi['persist']);
  2337. echo '">',$this->labels['Clear'],'</a>'; //</td>',"\n";
  2338. echo ' &raquo; ';
  2339. #echo '<td class="',$css_class_name,'" colspan="',$this->num_fields_displayed,'">';
  2340. echo $this->labels['Sorted By'],': ',join(', ', $sort_fields_w); //,'</td></tr>',"\n";
  2341. }
  2342. $smarty->assign('sortInfo', ob_get_contents());
  2343. ob_end_clean();
  2344. /*
  2345. * Display the current query
  2346. */
  2347. $text_query = $this->make_where_from_query_opts(null, true);
  2348. /*if ($text_query != '' && $this->display['query']) {
  2349. $css_class_name = $this->getCSSclass('queryinfo');
  2350. echo '<tr class="',$css_class_name,'">',"\n";
  2351. echo '<td class="',$css_class_name,'" colspan="',$sys_cols,'">';
  2352. echo '<a class="',$css_class_name,'" href="';
  2353. echo htmlspecialchars($this->get_server_var('PHP_SELF').'?fl='.$this->fl.'&fm='.$this->fm
  2354. .'&qfn='.rawurlencode($this->qfn).'&'.$this->get_sfn_cgi_vars().$this->cgi['persist']);
  2355. echo '">',$this->labels['Clear'],'</a></td>',"\n";
  2356. echo '<td class="',$css_class_name,'" colspan="',$this->num_fields_displayed,'">';
  2357. echo $this->labels['Current Query'],': ',htmlspecialchars($text_query),'</td></tr>',"\n";
  2358. }
  2359. */
  2360. if ($this->nav_text_links() || $this->nav_graphic_links()) {
  2361. $qstrparts = array();
  2362. strlen($this->fl) > 0 && $qstrparts[] = 'fl='.$this->fl;
  2363. strlen($this->fm) > 0 && $qstrparts[] = 'fm='.$this->fm;
  2364. count($this->sfn) > 0 && $qstrparts[] = $this->get_sfn_cgi_vars();
  2365. strlen($this->cgi['persist']) > 0 && $qstrparts[] = $this->cgi['persist'];
  2366. $qpview = $qstrparts;
  2367. $qpcopy = $qstrparts;
  2368. $qpchange = $qstrparts;
  2369. $qpdelete = $qstrparts;
  2370. $qpview[] = 'operation='.$this->labels['View'];
  2371. $qpcopy[] = 'operation='.$this->labels['Copy'];
  2372. $qpchange[] = 'operation='.urlencode($this->labels['Change']);
  2373. $qpdelete[] = 'operation='.urlencode($this->labels['Delete']);
  2374. $qpviewStr = '?'.join('&',$qpview).$this->qfn;
  2375. $qpcopyStr = '?'.join('&',$qpcopy).$this->qfn;
  2376. $qpchangeStr = '?'.join('&',$qpchange).$this->qfn;
  2377. $qpdeleteStr = '?'.join('&',$qpdelete).$this->qfn;
  2378. }
  2379. $smarty->assign_by_ref('res', $res);
  2380. ob_start();
  2381. $this->form_end();
  2382. $smarty->assign('form_end', ob_get_contents());
  2383. ob_end_clean();
  2384. }
  2385. function move_first() {
  2386. global $smarty;
  2387. $res = $smarty->get_template_vars('res');
  2388. @mysql_data_seek($res, 0);
  2389. }
  2390. function fetch_row() {
  2391. global $smarty;
  2392. $res = $smarty->get_template_vars('res');
  2393. $qpchange[] = 'operation='.urlencode($this->labels['Change'])."&fm=".$this->fm;
  2394. $qpcopy[] = 'operation='.$this->labels['Copy']."&fm=".$this->fm;
  2395. $qpdelete[] = 'operation='.urlencode($this->labels['Delete'])."&fm=".$this->fm;
  2396. $qpchangeStr = '?'.join('&',$qpchange).$this->qfn;
  2397. $qpcopyStr = '?'.join('&',$qpcopy).$this->qfn;
  2398. $qpdeleteStr = '?'.join('&',$qpdelete).$this->qfn;
  2399. $res2 = mysql_connect('localhost', 'qbuilder', 'qbuilder');
  2400. mysql_select_db('qbuilder', $res2);
  2401. $row = @mysql_fetch_array($res, MYSQL_ASSOC);
  2402. if ($row == false) return false;
  2403. $key_rec = urlencode($row['qf'.$this->key_num]);
  2404. $qchangeStr = $qpchangeStr . '&rec='.$key_rec;
  2405. $qcopyStr = $qpcopyStr . '&rec='.$key_rec;
  2406. $qdeleteStr = $qpdeleteStr . '&rec='.$key_rec;
  2407. //$smarty->assign('selectedrec', $this->rec); // Hier wird der zuletzt selektierte key gespeichert
  2408. //$smarty->assign('repid', $_SESSION['repid']);
  2409. //$smarty->assign('reptb', $_SESSION['reptb']);
  2410. $query2 = 'SELECT pkey FROM qb_report WHERE id=' . $_SESSION['repid'] . ';';
  2411. $result2 = mysql_query($query2);
  2412. $row2 = mysql_fetch_object($result2);
  2413. // mysql_select_db("qbuilder") or die ("DB existiert net.");
  2414. //echo 'SELECT ' . $row2->pkey . ' FROM ' . $_SESSION['reptb'] . ' WHERE qb_id = "' . $this->rec . '";';
  2415. $query3 = 'SELECT ' . $row2->pkey . ' FROM ' . $_SESSION['reptb'] . ' WHERE qb_id = "' . $this->rec . '";';
  2416. $result3 = mysql_query($query3);
  2417. $row3 = @mysql_fetch_object($result3);//$result3);
  2418. $identifier = '';
  2419. //$smarty->assign('selectedrec', $row2->pkey);
  2420. foreach ( explode(',', $row2->pkey) as $pkey ) {
  2421. if ( strlen($row3->$pkey) != 0 ) {
  2422. $identifier .= $row3->$pkey;
  2423. }
  2424. }
  2425. $smarty->assign('thisrec', $identifier);
  2426. $css_class_name = $this->getCSSclass('navigation', null, true);
  2427. if ($this->nav_graphic_links()) {
  2428. $printed_out = false;
  2429. if ($this->change_enabled()) {
  2430. ob_start();
  2431. $printed_out && print('&nbsp;');
  2432. $printed_out = true;
  2433. echo '<a class="',$css_class_name,'" href="';
  2434. echo htmlspecialchars($this->page_name.$qchangeStr),'"><img class="';
  2435. echo $css_class_name,'" src="',$this->url['images'];
  2436. echo 'pme-change.png" height="15" width="16" border="0" alt="';
  2437. echo htmlspecialchars($this->labels['Change']),'" title="';
  2438. echo htmlspecialchars($this->labels['Change']),'"></a>';
  2439. $xrow['link_change'] = ob_get_contents();
  2440. ob_end_clean();
  2441. }
  2442. if ($this->copy_enabled()) {
  2443. ob_start();
  2444. $printed_out && print('&nbsp;');
  2445. $printed_out = true;
  2446. echo ' <a class="',$css_class_name,'" href="';
  2447. echo htmlspecialchars($this->page_name.$qcopyStr),'"><img class="';
  2448. echo $css_class_name,'" src="',$this->url['images'];
  2449. echo 'pme-copy.png" height="15" width="16" border="0" alt="';
  2450. echo htmlspecialchars($this->labels['Copy']),'" title="';
  2451. echo htmlspecialchars($this->labels['Copy']),'"></a>';
  2452. $xrow['link_copy'] = ob_get_contents();
  2453. ob_end_clean();
  2454. }
  2455. if ($this->delete_enabled($key_rec)) {
  2456. ob_start();
  2457. $printed_out && print('&nbsp;');
  2458. $printed_out = true;
  2459. echo '<a class="',$css_class_name,'" href="';
  2460. echo htmlspecialchars($this->page_name.$qdeleteStr),'"><img class="';
  2461. echo $css_class_name,'" src="',$this->url['images'];
  2462. echo 'pme-delete.png" height="15" width="16" border="0" alt="';
  2463. echo htmlspecialchars($this->labels['Delete']),'" title="';
  2464. echo htmlspecialchars($this->labels['Delete']),'"></a>';
  2465. $xrow['link_delete'] = ob_get_contents();
  2466. ob_end_clean();
  2467. }
  2468. } /* }}} */
  2469. for ($k = 0; $k < $this->num_fds; $k++) { /* {{{ */
  2470. $fd = $this->fds[$k];
  2471. if (! $this->displayed[$k]) {
  2472. continue;
  2473. }
  2474. $css_postfix = @$this->fdd[$k]['css']['postfix'];
  2475. $css_class_name = $this->getCSSclass('cell', null, true, $css_postfix);
  2476. if ($this->password($k)) {
  2477. $xrow[$fd] = $this->labels['hidden'];
  2478. continue;
  2479. }
  2480. $xrow[$fd] = $this->cellDisplay($k, $row, $css_class_name);
  2481. } /* }}} */
  2482. return $xrow;
  2483. }
  2484. function assign_rows() {
  2485. global $smarty;
  2486. $rows_count = intval($smarty->get_template_vars('rows_count'));
  2487. if ($rows_count > 0) {
  2488. /*$tpl_vars = $smarty->get_template_vars();
  2489. print_r($tpl_vars);*/
  2490. $rows = $smarty->get_template_vars('rows_next');
  2491. $smarty->assign_by_ref('rows', $rows);
  2492. } else {
  2493. $this->move_first();
  2494. $rows = $this->fetch_row();
  2495. $smarty->assign_by_ref('rows', $rows);
  2496. }
  2497. $smarty->assign_by_ref('rows_next', $this->fetch_row());
  2498. if ($rows) {
  2499. $rows_count++;
  2500. $smarty->assign('rows_count', $rows_count);
  2501. }
  2502. return $rows;
  2503. }
  2504. function display_record() /* {{{ */
  2505. {
  2506. // PRE Triggers
  2507. $ret = true;
  2508. if (($this->change_operation() || $this->change_operation()) && isset($this->triggers['update']['pre'])) {
  2509. $ret = include($this->triggers['update']['pre']);
  2510. // if PRE update fails, then back to view operation
  2511. if (! $ret) {
  2512. $this->operation = $this->labels['View'];
  2513. $ret = true;
  2514. }
  2515. }
  2516. if (($this->add_operation() || $this->copy_operation())
  2517. && isset($this->triggers['insert']['pre'])) {
  2518. $ret = include($this->triggers['insert']['pre']);
  2519. }
  2520. if ($this->view_operation() && isset($this->triggers['select']['pre'])) {
  2521. $ret = include($this->triggers['select']['pre']);
  2522. }
  2523. if ($this->delete_operation() && isset($this->triggers['delete']['pre'])) {
  2524. $ret = include($this->triggers['delete']['pre']);
  2525. }
  2526. // if PRE insert/view/delete fail, then back to the list
  2527. if ($ret == false) {
  2528. $this->operation = '';
  2529. $this->list_table();
  2530. return;
  2531. }
  2532. global $smarty;
  2533. ob_start();
  2534. $this->form_begin();
  2535. if ($this->cgi['persist'] != '') {
  2536. echo $this->get_origvars_html($this->cgi['persist']);
  2537. }
  2538. echo $this->get_origvars_html($this->get_sfn_cgi_vars());
  2539. echo $this->get_origvars_html($this->qfn);
  2540. echo '<input type="hidden" name="qfn" value="',htmlspecialchars($this->qfn),'">',"\n";
  2541. echo '<input type="hidden" name="rec" value="',($this->copy_operation()?'':$this->rec),'">',"\n";
  2542. echo '<input type="hidden" name="fm" value="',$this->fm,'">',"\n";
  2543. echo '<input type="hidden" name="fl" value="',$this->fl,'">',"\n";
  2544. $smarty->assign('form_begin', ob_get_contents());
  2545. ob_end_clean();
  2546. if ($this->nav_up()) {
  2547. $this->display_record_buttons('up');
  2548. #echo '<hr class="',$this->getCSSclass('hr', 'up'),'">',"\n";
  2549. if ($this->tabs_enabled()) {
  2550. $this->display_tab_labels('up');
  2551. }
  2552. }
  2553. if ($this->tabs_enabled()) {
  2554. #echo '<div id="phpMyEdit_tab0">',"\n";
  2555. }
  2556. #echo '<table class="',$this->getCSSclass('main'),'" summary="',$this->tb,'">',"\n";
  2557. if ($this->add_operation()) {
  2558. $this->display_add_record();
  2559. } else {
  2560. $this->display_copy_change_delete_record();
  2561. }
  2562. #echo '</table>',"\n";
  2563. #echo '</div>',"\n";
  2564. if ($this->nav_down()) {
  2565. /*
  2566. if ($this->tabs_enabled()) {
  2567. $this->display_tab_labels('down');
  2568. }
  2569. echo '<hr class="',$this->getCSSclass('hr', 'down'),'">',"\n";
  2570. $this->display_record_buttons('down');
  2571. */
  2572. }
  2573. ob_start();
  2574. $this->form_end();
  2575. $smarty->assign('form_end', ob_get_contents());
  2576. ob_end_clean();
  2577. } /* }}} */
  2578. /*
  2579. * Action functions
  2580. */
  2581. function do_add_record() /* {{{ */
  2582. {
  2583. // Preparing query
  2584. $query = '';
  2585. $key_col_val = '';
  2586. for ($k = 0; $k < $this->num_fds; $k++) {
  2587. if ($this->processed($k)) {
  2588. }
  2589. }
  2590. $vals_quoted = array();
  2591. $newvals = array();
  2592. for ($k = 0; $k < $this->num_fds; $k++) {
  2593. if ($this->processed($k)) {
  2594. $fd = $this->fds[$k];
  2595. if ($this->readonly($k)) {
  2596. $fn = (string) @$this->fdd[$k]['default'];
  2597. } else {
  2598. $fn = $this->get_cgi_var($this->fds[$k]);
  2599. }
  2600. if ($fd == $this->key) {
  2601. $key_col_val = $fn;
  2602. }
  2603. if ($query == '') {
  2604. $query = 'INSERT INTO '.$this->tb.' ('.$fd; // )
  2605. } else {
  2606. $query .= ','.$fd;
  2607. }
  2608. $newvals[$this->fds[$k]] = is_array($fn) ? join(',',$fn) : $fn;
  2609. if ($this->col_has_sqlw($k)) {
  2610. $val = $newvals[$this->fds[$k]];
  2611. $val_as = addslashes($val);
  2612. $val_qas = '"'.addslashes($val).'"';
  2613. $vals_quoted[$k] = $this->substituteVars(
  2614. $this->fdd[$k]['sqlw'], array(
  2615. 'val_qas' => $val_qas,
  2616. 'val_as' => $val_as,
  2617. 'val' => $val
  2618. ));
  2619. } else {
  2620. $vals_quoted[$k] = addslashes($newvals[$this->fds[$k]]);
  2621. $vals_quoted[$k] = "'".$vals_quoted[$k]."'";
  2622. }
  2623. }
  2624. }
  2625. // Creating array of changed keys ($changed)
  2626. $changed = array_keys($newvals);
  2627. // Before trigger
  2628. if (isset($this->triggers['insert']['before'])) {
  2629. $ret = include($this->triggers['insert']['before']);
  2630. if ($ret == false) {
  2631. return false;
  2632. }
  2633. }
  2634. // Real query (no additional query in this method)
  2635. $query .= ') VALUES ('.join(',',$vals_quoted).')'; // )
  2636. $res = $this->myquery($query, __LINE__);
  2637. $this->message = @mysql_affected_rows($this->dbh).' '.$this->labels['record added'];
  2638. if (! $res) {
  2639. return false;
  2640. }
  2641. // Notify list
  2642. if (@$this->notify['insert'] || @$this->notify['all']) {
  2643. $this->email_notify(false, $newvals);
  2644. }
  2645. // Note change in log table
  2646. if ($this->logtable) {
  2647. $query = sprintf('INSERT INTO %s'
  2648. .' (updated, user, host, operation, tab, rowkey, col, oldval, newval)'
  2649. .' VALUES (NOW(), "%s", "%s", "insert", "%s", "%s", "", "", "%s")',
  2650. $this->logtable, addslashes($this->get_server_var('REMOTE_USER')),
  2651. addslashes($this->get_server_var('REMOTE_ADDR')), addslashes($this->tb),
  2652. addslashes($key_col_val), addslashes(serialize($newvals)));
  2653. $this->myquery($query, __LINE__);
  2654. }
  2655. // After trigger
  2656. if (isset($this->triggers['insert']['after'])) {
  2657. $ret = include($this->triggers['insert']['after']);
  2658. if ($ret == false) {
  2659. return false;
  2660. }
  2661. }
  2662. return true;
  2663. } /* }}} */
  2664. function do_change_record() /* {{{ */
  2665. {
  2666. // Preparing queries
  2667. $query_real = '';
  2668. $query_oldrec = '';
  2669. $newvals = array();
  2670. $oldvals = array();
  2671. $changed = array();
  2672. for ($k = 0; $k < $this->num_fds; $k++) {
  2673. $fd = $this->fds[$k];
  2674. $fn = $this->get_cgi_var($fd);
  2675. $multiple = is_array($fn) ? false : true;
  2676. if(!$multiple){
  2677. $ids = array_keys($fn);
  2678. break;
  2679. }
  2680. }
  2681. if($multiple){
  2682. //old save function (if only one record is edited)
  2683. for ($k = 0; $k < $this->num_fds; $k++) {
  2684. if ($this->processed($k) && !$this->readonly($k)) {
  2685. $fd = $this->fds[$k];
  2686. $fn = $this->get_cgi_var($fd);
  2687. $newvals[$this->fds[$k]] = is_array($fn) ? join(',',$fn) : $fn;
  2688. if ($this->col_has_sqlw($k)) {
  2689. $val = $newvals[$this->fds[$k]];
  2690. $val_as = addslashes($val);
  2691. $val_qas = '"'.addslashes($val).'"';
  2692. $newValue = $this->substituteVars(
  2693. $this->fdd[$k]['sqlw'], array(
  2694. 'val_qas' => $val_qas,
  2695. 'val_as' => $val_as,
  2696. 'val' => $val
  2697. ));
  2698. } else {
  2699. $newValue = $newvals[$this->fds[$k]];
  2700. $newValue = "'".addslashes($newValue)."'";
  2701. }
  2702. if ($query_real == '') {
  2703. $query_real = 'UPDATE '.$this->tb.' SET '.$fd.'='.$newValue;
  2704. $query_oldrec = 'SELECT '.$fd;
  2705. } else {
  2706. $query_real .= ','.$fd.'='.$newValue;
  2707. $query_oldrec .= ','.$fd;
  2708. }
  2709. }
  2710. }
  2711. $where_part = " WHERE (".$this->key.'='.$this->key_delim.$this->rec.$this->key_delim.')';
  2712. if ($query_real) $query_real .= $where_part;
  2713. if ($query_oldrec == '') $query_oldrec = 'SELECT * ';
  2714. $query_oldrec .= ' FROM ' . $this->tb . $where_part;
  2715. // Additional query (must go before real query)
  2716. $res = $this->myquery($query_oldrec, __LINE__);
  2717. $oldvals = @mysql_fetch_array($res, MYSQL_ASSOC);
  2718. @mysql_free_result($res);
  2719. // Creating array of changed keys ($changed)
  2720. for ($k = 0; $k < $this->num_fds; $k++) {
  2721. $key = $this->fds[$k];
  2722. if (! $this->processed($k) || $this->readonly($k) || $oldvals[$key] == $newvals[$key]) {
  2723. continue;
  2724. }
  2725. $changed[] = $key;
  2726. }
  2727. // Before trigger
  2728. if (isset($this->triggers['update']['before'])) {
  2729. $ret = include($this->triggers['update']['before']);
  2730. if ($ret == false) {
  2731. return false;
  2732. }
  2733. }
  2734. // Real query
  2735. if ($query_real) {
  2736. $res = $this->myquery($query_real, __LINE__);
  2737. $this->message = @mysql_affected_rows($this->dbh).' '.$this->labels['record changed'];
  2738. if (! $res) {
  2739. return false;
  2740. }
  2741. }
  2742. // Another additional query (must go after real query)
  2743. $res = $this->myquery($query_oldrec, __LINE__);
  2744. $newvals = @mysql_fetch_array($res, MYSQL_ASSOC);
  2745. @mysql_free_result($res);
  2746. // Creating array of changed keys ($changed)
  2747. $changed = array();
  2748. for ($k = 0; $k < $this->num_fds; $k++) {
  2749. $key = $this->fds[$k];
  2750. if (! $this->processed($k) || $this->readonly($k) || $oldvals[$key] == $newvals[$key]) {
  2751. continue;
  2752. }
  2753. $changed[] = $key;
  2754. }
  2755. // Notify list
  2756. if (@$this->notify['update'] || @$this->notify['all']) {
  2757. if (count($changed) > 0) {
  2758. $this->email_notify($oldvals, $newvals);
  2759. }
  2760. }
  2761. // Note change in log table
  2762. if ($this->logtable) {
  2763. foreach ($changed as $key) {
  2764. $qry = sprintf('INSERT INTO %s'
  2765. .' (updated, user, host, operation, tab, rowkey, col, oldval, newval)'
  2766. .' VALUES (NOW(), "%s", "%s", "update", "%s", "%s", "%s", "%s", "%s")',
  2767. $this->logtable, addslashes($this->get_server_var('REMOTE_USER')),
  2768. addslashes($this->get_server_var('REMOTE_ADDR')), addslashes($this->tb),
  2769. addslashes($this->rec), addslashes($key),
  2770. addslashes($oldvals[$key]), addslashes($newvals[$key]));
  2771. $this->myquery($qry, __LINE__);
  2772. }
  2773. }
  2774. // After trigger
  2775. if (isset($this->triggers['update']['after'])) {
  2776. $ret = include($this->triggers['update']['after']);
  2777. if ($ret == false) {
  2778. return false;
  2779. }
  2780. }
  2781. }
  2782. else
  2783. {
  2784. //new save function (if more records are edited)
  2785. foreach ($ids as $key => $id){
  2786. $this -> rec = $id;
  2787. for ($k = 0; $k < $this->num_fds; $k++) {
  2788. if ($this->processed($k) && !$this->readonly($k)) {
  2789. $fd = $this->fds[$k];
  2790. $fn = $this->get_cgi_var($fd);
  2791. if ( $fn == '' && $fd != 'Fgst') continue;
  2792. if ( $fd == 'Fgst' ) { $unique=$fn[$id]; continue; }
  2793. $fn = $fn[$id];
  2794. $newvals[$this->fds[$k]] = $fn;
  2795. if ($this->col_has_sqlw($k)) {
  2796. $val = $newvals[$this->fds[$k]];
  2797. $val_as = addslashes($val);
  2798. $val_qas = '"'.addslashes($val).'"';
  2799. $newValue = $this->substituteVars(
  2800. $this->fdd[$k]['sqlw'], array(
  2801. 'val_qas' => $val_qas,
  2802. 'val_as' => $val_as,
  2803. 'val' => $val
  2804. ));
  2805. } else {
  2806. $newValue = $newvals[$this->fds[$k]];
  2807. $newValue = "'".addslashes($newValue)."'";
  2808. }
  2809. if ($query_real == '') {
  2810. $query_real = 'UPDATE '.$this->tb.' SET '.$fd.'='.$newValue;
  2811. $query_oldrec = 'SELECT '.$fd;
  2812. } else {
  2813. $query_real .= ','.$fd.'='.$newValue;
  2814. $query_oldrec .= ','.$fd;
  2815. }
  2816. }
  2817. }
  2818. $filter = file_get_contents('query2.txt');
  2819. //$where_part = (($filter!=''||strpos($filter, "'"))?" WHERE " . substr($filter, 0, strlen($filter)-1) . ' AND Fgst="'.$this->key_delim.$unique.$this->key_delim.'")':" WHERE (" . $this->key.'="'.$this->key_delim.$this->rec.$this->key_delim.'")');
  2820. $where_part = (($filter!=''||strpos($filter, "'"))?' WHERE ' . substr($filter, 0, strlen($filter)-1) . ')':' WHERE (' . $this->key.'="'.$this->key_delim.$this->rec.$this->key_delim.'")');
  2821. $where_part = (($filter!=''||strpos($filter, "'"))?preg_replace('/\'\%\'/', '\''.$this->key_delim.$unique.$this->key_delim.'\'', $where_part):' WHERE (' . $this->key.'="'.$this->key_delim.$this->rec.$this->key_delim.'")');
  2822. if ($query_real) $query_real .= $where_part;
  2823. if ($query_oldrec == '') $query_oldrec = 'SELECT * ';
  2824. $query_oldrec .= ' FROM ' . $this->tb . $where_part;
  2825. // Additional query (must go before real query)
  2826. $res = $this->myquery($query_oldrec, __LINE__);
  2827. $oldvals = @mysql_fetch_array($res, MYSQL_ASSOC);
  2828. @mysql_free_result($res);
  2829. // Creating array of changed keys ($changed)
  2830. for ($k = 0; $k < $this->num_fds; $k++) {
  2831. $key = $this->fds[$k];
  2832. if (! $this->processed($k) || $this->readonly($k) || $oldvals[$key] == $newvals[$key]) {
  2833. continue;
  2834. }
  2835. $changed[] = $key;
  2836. }
  2837. // Before trigger
  2838. if (isset($this->triggers['update']['before'])) {
  2839. $ret = include($this->triggers['update']['before']);
  2840. if ($ret == false) {
  2841. return false;
  2842. }
  2843. }
  2844. //file_put_contents('query.txt', $query_real);
  2845. $handle = fopen('query.txt', 'w');
  2846. fwrite($handle, $query_real);
  2847. fclose($handle);
  2848. // Real query
  2849. if ($query_real) {
  2850. $res = $this->myquery($query_real, __LINE__);
  2851. $this->message += @mysql_affected_rows($this->dbh);
  2852. if (! $res) {
  2853. return false;
  2854. }
  2855. }
  2856. // Another additional query (must go after real query)
  2857. $res = $this->myquery($query_oldrec, __LINE__);
  2858. $newvals = @mysql_fetch_array($res, MYSQL_ASSOC);
  2859. @mysql_free_result($res);
  2860. // Creating array of changed keys ($changed)
  2861. $changed = array();
  2862. for ($k = 0; $k < $this->num_fds; $k++) {
  2863. $key = $this->fds[$k];
  2864. if (! $this->processed($k) || $this->readonly($k) || $oldvals[$key] == $newvals[$key]) {
  2865. continue;
  2866. }
  2867. $changed[] = $key;
  2868. }
  2869. // Notify list
  2870. if (@$this->notify['update'] || @$this->notify['all']) {
  2871. if (count($changed) > 0) {
  2872. $this->email_notify($oldvals, $newvals);
  2873. }
  2874. }
  2875. // Note change in log table
  2876. if ($this->logtable) {
  2877. foreach ($changed as $key) {
  2878. $qry = sprintf('INSERT INTO %s'
  2879. .' (updated, user, host, operation, tab, rowkey, col, oldval, newval)'
  2880. .' VALUES (NOW(), "%s", "%s", "update", "%s", "%s", "%s", "%s", "%s")',
  2881. $this->logtable, addslashes($this->get_server_var('REMOTE_USER')),
  2882. addslashes($this->get_server_var('REMOTE_ADDR')), addslashes($this->tb),
  2883. addslashes($this -> rec), addslashes($key),
  2884. addslashes($oldvals[$key]), addslashes($newvals[$key]));
  2885. $this->myquery($qry, __LINE__);
  2886. }
  2887. }
  2888. // After trigger
  2889. if (isset($this->triggers['update']['after'])) {
  2890. $ret = include($this->triggers['update']['after']);
  2891. if ($ret == false) {
  2892. return false;
  2893. }
  2894. }
  2895. unset($fd, $fn, $newvals, $query_oldrec, $query_real);
  2896. }
  2897. $this->message .= ' '.$this->labels['record changed'];
  2898. }
  2899. return true;
  2900. } /* }}} */
  2901. function do_delete_record() /* {{{ */
  2902. {
  2903. // Additional query
  2904. $query = 'SELECT * FROM '.$this->tb.' WHERE ('.$this->key.' = '
  2905. .$this->key_delim.$this->rec.$this->key_delim.')'; // )
  2906. $res = $this->myquery($query, __LINE__);
  2907. $oldvals = @mysql_fetch_array($res, MYSQL_ASSOC);
  2908. @mysql_free_result($res);
  2909. // Creating array of changed keys ($changed)
  2910. if (!is_array($oldvals)) $oldvals = array();
  2911. $changed = array_keys($oldvals);
  2912. // Before trigger
  2913. if (isset($this->triggers['delete']['before'])) {
  2914. $ret = include($this->triggers['delete']['before']);
  2915. if ($ret == false) {
  2916. return false;
  2917. }
  2918. }
  2919. // Real query
  2920. $query = 'DELETE FROM '.$this->tb.' WHERE ('.$this->key.' = '
  2921. .$this->key_delim.$this->rec.$this->key_delim.')'; // )
  2922. $res = $this->myquery($query, __LINE__);
  2923. $this->message = @mysql_affected_rows($this->dbh).' '.$this->labels['record deleted'];
  2924. if (! $res) {
  2925. return false;
  2926. }
  2927. // Notify list
  2928. if (@$this->notify['delete'] || @$this->notify['all']) {
  2929. $this->email_notify($oldvals, false);
  2930. }
  2931. // Note change in log table
  2932. if ($this->logtable) {
  2933. $query = sprintf('INSERT INTO %s'
  2934. .' (updated, user, host, operation, tab, rowkey, col, oldval, newval)'
  2935. .' VALUES (NOW(), "%s", "%s", "delete", "%s", "%s", "%s", "%s", "")',
  2936. $this->logtable, addslashes($this->get_server_var('REMOTE_USER')),
  2937. addslashes($this->get_server_var('REMOTE_ADDR')), addslashes($this->tb),
  2938. addslashes($this->rec), addslashes($key), addslashes(serialize($oldvals)));
  2939. $this->myquery($query, __LINE__);
  2940. }
  2941. // After trigger
  2942. if (isset($this->triggers['delete']['after'])) {
  2943. $ret = include($this->triggers['delete']['after']);
  2944. if ($ret == false) {
  2945. return false;
  2946. }
  2947. }
  2948. return true;
  2949. } /* }}} */
  2950. function email_notify($old_vals, $new_vals) /* {{{ */
  2951. {
  2952. if (! function_exists('mail')) {
  2953. return false;
  2954. }
  2955. if ($old_vals != false && $new_vals != false) {
  2956. $action = 'update';
  2957. $subject = 'Record updated in';
  2958. $body = 'An item with '.$this->fdd[$this->key]['name'].' = '
  2959. .$this->key_delim.$this->rec.$this->key_delim .' was updated in';
  2960. $vals = $new_vals;
  2961. } elseif ($new_vals != false) {
  2962. $action = 'insert';
  2963. $subject = 'Record added to';
  2964. $body = 'A new item was added into';
  2965. $vals = $new_vals;
  2966. } elseif ($old_vals != false) {
  2967. $action = 'delete';
  2968. $subject = 'Record deleted from';
  2969. $body = 'An item was deleted from';
  2970. $vals = $old_vals;
  2971. } else {
  2972. return false;
  2973. }
  2974. $addr = $this->get_server_var('REMOTE_ADDR');
  2975. $user = $this->get_server_var('REMOTE_USER');
  2976. $body = 'This notification e-mail was automatically generated by phpMyEdit.'."\n\n".$body;
  2977. $body .= ' table '.$this->tb.' in MySQL database '.$this->db.' on '.$this->page_name;
  2978. $body .= ' by '.($user == '' ? 'unknown user' : "user $user").' from '.$addr;
  2979. $body .= ' at '.date('d/M/Y H:i').' with the following fields:'."\n\n";
  2980. $i = 1;
  2981. foreach ($vals as $k => $text) {
  2982. $name = isset($this->fdd[$k]['name~'])
  2983. ? $this->fdd[$k]['name~'] : $this->fdd[$k]['name'];
  2984. if ($action == 'update') {
  2985. if ($old_vals[$k] == $new_vals[$k]) {
  2986. continue;
  2987. }
  2988. $body .= sprintf("[%02s] %s (%s)\n WAS: %s\n IS: %s\n",
  2989. $i, $name, $k, $old_vals[$k], $new_vals[$k]);
  2990. } else {
  2991. $body .= sprintf('[%02s] %s (%s): %s'."\n", $i, $name, $k, $text);
  2992. }
  2993. $i++;
  2994. }
  2995. $body .= "\n--\r\n"; // \r is needed for signature separating
  2996. $body .= "phpMyEdit\ninstant MySQL table editor and code generator\n";
  2997. $body .= "http://www.platon.sk/projects/phpMyEdit/\n\n";
  2998. $subject = @$this->notify['prefix'].$subject.' '.$this->db.'.'.$this->tb;
  2999. $subject = trim($subject); // just for sure
  3000. $wrap_w = intval(@$this->notify['wrap']);
  3001. $wrap_w > 0 || $wrap_w = 72;
  3002. $from = (string) @$this->notify['from'];
  3003. $from != '' || $from = 'webmaster@'.strtolower($this->get_server_var('SERVER_NAME'));
  3004. $headers = 'From: '.$from."\n".'X-Mailer: PHP/'.phpversion().' (phpMyEdit)';
  3005. $body = wordwrap($body, $wrap_w, "\n", 1);
  3006. $emails = (array) $this->notify[$action] + (array) $this->notify['all'];
  3007. foreach ($emails as $email) {
  3008. if (! empty($email)) {
  3009. mail(trim($email), $subject, $body, $headers);
  3010. }
  3011. }
  3012. return true;
  3013. } /* }}} */
  3014. /*
  3015. * Recreate functions
  3016. */
  3017. function recreate_fdd() /* {{{ */
  3018. {
  3019. // TODO: one level deeper browsing
  3020. $this->page_type = 'L'; // list by default
  3021. $this->filter_operation() && $this->page_type = 'F';
  3022. $this->view_operation() && $this->page_type = 'V';
  3023. $this->delete_operation() && $this->page_type = 'D';
  3024. $this->add_operation() && $this->page_type = 'A';
  3025. $this->change_operation() && $this->page_type = 'C';
  3026. $this->copy_operation() && $this->page_type = 'P';
  3027. // Restore backups (if exists)
  3028. foreach (array_keys($this->fdd) as $column) {
  3029. foreach (array_keys($this->fdd[$column]) as $col_option) {
  3030. if ($col_option[strlen($col_option) - 1] != '~')
  3031. continue;
  3032. $this->fdd[$column][substr($col_option, 0, strlen($col_option) - 1)]
  3033. = $this->fdd[$column][$col_option];
  3034. unset($this->fdd[$column][$col_option]);
  3035. }
  3036. }
  3037. foreach (array_keys($this->fdd) as $column) {
  3038. foreach (array_keys($this->fdd[$column]) as $col_option) {
  3039. if (! strchr($col_option, '|')) {
  3040. continue;
  3041. }
  3042. $col_ar = explode('|', $col_option, 2);
  3043. if (! stristr($col_ar[1], $this->page_type)) {
  3044. continue;
  3045. }
  3046. // Make field backups
  3047. $this->fdd[$column][$col_ar[0] .'~'] = $this->fdd[$column][$col_ar[0]];
  3048. $this->fdd[$column][$col_option.'~'] = $this->fdd[$column][$col_option];
  3049. // Set particular field
  3050. $this->fdd[$column][$col_ar[0]] = $this->fdd[$column][$col_option];
  3051. unset($this->fdd[$column][$col_option]);
  3052. }
  3053. }
  3054. } /* }}} */
  3055. function recreate_displayed() /* {{{ */
  3056. {
  3057. $field_num = 0;
  3058. $num_fields_displayed = 0;
  3059. $this->fds = array();
  3060. $this->displayed = array();
  3061. $this->guidance = false;
  3062. foreach (array_keys($this->fdd) as $key) {
  3063. if (preg_match('/^\d*$/', $key)) { // skipping numeric keys
  3064. continue;
  3065. }
  3066. $this->fds[$field_num] = $key;
  3067. /* We must use here displayed() function, because displayed[] array
  3068. is not created yet. We will simultaneously create that array as well. */
  3069. if ($this->displayed[$field_num] = $this->displayed($field_num)) {
  3070. $num_fields_displayed++;
  3071. }
  3072. if (is_array(@$this->fdd[$key]['values']) && ! isset($this->fdd[$key]['values']['table'])) {
  3073. foreach ($this->fdd[$key]['values'] as $val) {
  3074. $this->fdd[$key]['values2'][$val] = $val;
  3075. }
  3076. unset($this->fdd[$key]['values']);
  3077. }
  3078. isset($this->fdd[$key]['help']) && $this->guidance = true;
  3079. $this->fdd[$field_num] = $this->fdd[$key];
  3080. $field_num++;
  3081. }
  3082. $this->num_fds = $field_num;
  3083. $this->num_fields_displayed = $num_fields_displayed;
  3084. $this->key_num = array_search($this->key, $this->fds);
  3085. /* Adds first displayed column into sorting fields by replacing last
  3086. array entry. Also remove duplicite values and change column names to
  3087. their particular field numbers.
  3088. Note that entries like [0]=>'9' [1]=>'-9' are correct and they will
  3089. have desirable sorting behaviour. So there is no need to remove them.
  3090. */
  3091. for ($k = 0; ! $this->displayed[$k]; $k++);
  3092. #if (count($this->sfn)>0) $this->sfn[count($this->sfn) - 1] = "$k"; // important quotes
  3093. if (!is_array($this->sfn)) $this->sfn = array();
  3094. $this->sfn = array_unique($this->sfn);
  3095. $check_ar = array();
  3096. foreach ($this->sfn as $key => $val) {
  3097. if (preg_match('/^[-]?\d*$/', $val)) { // skipping numeric keys
  3098. $val = abs($val);
  3099. if (in_array($val, $check_ar) || $this->password($val)) {
  3100. unset($this->sfn[$key]);
  3101. } else {
  3102. $check_ar[] = $val;
  3103. }
  3104. continue;
  3105. }
  3106. if ($val[0] == '-') {
  3107. $val = substr($val, 1);
  3108. $minus = '-';
  3109. } else {
  3110. $minus = '';
  3111. }
  3112. if (($val = array_search($val, $this->fds)) === false || $this->password($val)) {
  3113. unset($this->sfn[$key]);
  3114. } else {
  3115. $val = intval($val);
  3116. if (in_array($val, $check_ar)) {
  3117. unset($this->sfn[$key]);
  3118. } else {
  3119. $this->sfn[$key] = $minus.$val;
  3120. $check_ar[] = $val;
  3121. }
  3122. }
  3123. }
  3124. $this->sfn = array_unique($this->sfn);
  3125. return true;
  3126. } /* }}} */
  3127. /*
  3128. * Error handling function
  3129. */
  3130. function error($message, $additional_info = '') /* {{{ */
  3131. {
  3132. echo '<h1>phpMyEdit error: ',htmlspecialchars($message),'</h1>',"\n";
  3133. if ($additional_info != '') {
  3134. echo '<hr>',htmlspecialchars($additional_info);
  3135. }
  3136. return false;
  3137. } /* }}} */
  3138. /*
  3139. * Database connection function
  3140. */
  3141. function connect() /* {{{ */
  3142. {
  3143. if (!isset($this->db)) {
  3144. $this->error('no database defined');
  3145. return false;
  3146. }
  3147. if (!isset ($this->tb)) {
  3148. $this->error('no table defined');
  3149. return false;
  3150. }
  3151. if ($this->dbh = @mysql_pconnect($this->hn, $this->un, $this->pw)) {
  3152. } else {
  3153. $this->error('could not connect to MySQL');
  3154. return false;
  3155. }
  3156. return true;
  3157. } /* }}} */
  3158. /*
  3159. * Database disconnection function
  3160. */
  3161. function disconnect() /* {{{ */
  3162. {
  3163. @mysql_close($this->dbh);
  3164. unset($this->dbh);
  3165. } /* }}} */
  3166. /*
  3167. * The workhorse
  3168. */
  3169. function execute() /* {{{ */
  3170. {
  3171. // DEBUG - uncomment to enable
  3172. /*
  3173. //phpinfo();
  3174. $this->print_get_vars();
  3175. $this->print_post_vars();
  3176. $this->print_vars();
  3177. echo "<pre>query opts:\n";
  3178. echo print_r($this->query_opts);
  3179. echo "</pre>\n";
  3180. echo "<pre>\n";
  3181. echo 'qfn: ' . print_r($this->fds);
  3182. echo "</pre>\n";
  3183. $fd = $this->fds[27];
  3184. $fn = $this->get_cgi_var($fd);
  3185. echo "<pre>\n";
  3186. echo $this->fds[27] . ': ' . $fn;
  3187. echo "</pre>\n";
  3188. echo "<pre>get vars:\n";
  3189. echo print_r($this->get_opts);
  3190. echo "</pre>\n";
  3191. */
  3192. // Let's do explicit quoting - it's safer
  3193. set_magic_quotes_runtime(0);
  3194. // Checking if language file inclusion was successful
  3195. if (! is_array($this->labels)) {
  3196. $this->error('could not locate language files', 'searched path: '.$this->dir['lang']);
  3197. return false;
  3198. }
  3199. // Database connection
  3200. if ($this->connect() == false) {
  3201. return false;
  3202. }
  3203. /*
  3204. * ======================================================================
  3205. * Pass 3: process any updates generated if the user has selected
  3206. * a save button during Pass 2
  3207. * ======================================================================
  3208. */
  3209. if ($this->saveadd == $this->labels['Save']) {
  3210. $this->add_enabled() && $this->do_add_record();
  3211. }
  3212. elseif ($this->moreadd == $this->labels['More']) {
  3213. $this->add_enabled() && $this->do_add_record();
  3214. $this->operation = $this->labels['Add']; // to force add operation
  3215. $this->recreate_fdd();
  3216. $this->recreate_displayed();
  3217. }
  3218. elseif ($this->savechange == $this->labels['Save']) {
  3219. $this->change_enabled() && $this->do_change_record();
  3220. }
  3221. elseif ($this->savechange == $this->labels['Save']) {
  3222. $this->change_enabled() && $this->do_change_record();
  3223. }
  3224. elseif ($this->adminchange == $this->labels['Save']) {
  3225. $this->change_enabled() && $this->do_change_record();
  3226. }
  3227. elseif ($this->morechange == $this->labels['Apply']) {
  3228. $this->change_enabled() && $this->do_change_record();
  3229. $this->operation = $this->labels['Change']; // to force change operation
  3230. $this->recreate_fdd();
  3231. $this->recreate_displayed();
  3232. }
  3233. elseif ($this->mailchange == $this->labels['Mail']) {
  3234. }
  3235. elseif ($this->rtfgen_detail == $this->labels['Print']) {
  3236. }
  3237. elseif ($this->docchange == $this->labels['Document']) {
  3238. }
  3239. elseif ($this->savedelete == $this->labels['Delete']) {
  3240. $this->delete_enabled() && $this->do_delete_record();
  3241. }
  3242. /*
  3243. * ======================================================================
  3244. * Pass 2: display an input/edit/confirmation screen if the user has
  3245. * selected an editing button on Pass 1 through this page
  3246. * ======================================================================
  3247. */
  3248. if ($this->add_operation()
  3249. || $this->change_operation() || $this->delete_operation()
  3250. || $this->view_operation() || $this->copy_operation()) {
  3251. $this->display_record();
  3252. }
  3253. /*
  3254. * ======================================================================
  3255. * Pass 1 and Pass 3: display the MySQL table in a scrolling window on
  3256. * the screen (skip this step in 'Add More' mode)
  3257. * ======================================================================
  3258. */
  3259. else {
  3260. $this->list_table();
  3261. }
  3262. $this->disconnect();
  3263. if ($this->display['time'] && $this->timer != null) {
  3264. echo $this->timer->end(),' miliseconds';
  3265. }
  3266. } /* }}} */
  3267. /*
  3268. * Class constructor
  3269. */
  3270. function phpMyEdit($opts) /* {{{ */
  3271. {
  3272. // Set desirable error reporting level
  3273. $error_reporting = @error_reporting(E_ALL & ~E_NOTICE);
  3274. // Instance class variables
  3275. $this->hn = $opts['hn'];
  3276. $this->un = $opts['un'];
  3277. $this->pw = $opts['pw'];
  3278. $this->db = $opts['db'];
  3279. $this->tb = $opts['tb'];
  3280. $this->key = $opts['key'];
  3281. $this->key_type = $opts['key_type'];
  3282. $this->inc = $opts['inc'];
  3283. $this->options = $opts['options'];
  3284. $this->fdd = $opts['fdd'];
  3285. $this->multiple = intval($opts['multiple']);
  3286. $this->multiple <= 0 && $this->multiple = 2;
  3287. $this->filters = @$opts['filters'];
  3288. $this->triggers = @$opts['triggers'];
  3289. $this->notify = @$opts['notify'];
  3290. $this->logtable = @$opts['logtable'];
  3291. $this->page_name = @$opts['page_name'];
  3292. if (! isset($this->page_name)) {
  3293. $this->page_name = basename($this->get_server_var('PHP_SELF'));
  3294. isset($this->page_name) || $this->page_name = $this->tb;
  3295. }
  3296. $this->display['query'] = @$opts['display']['query'];
  3297. $this->display['sort'] = @$opts['display']['sort'];
  3298. $this->display['time'] = @$opts['display']['time'];
  3299. if ($this->display['time']) {
  3300. $this->timer = new phpMyEdit_timer();
  3301. }
  3302. $this->display['tabs'] = isset($opts['display']['tabs'])
  3303. ? $opts['display']['tabs'] : true;
  3304. $this->display['form'] = isset($opts['display']['form'])
  3305. ? $opts['display']['form'] : true;
  3306. // Creating directory variables
  3307. $this->dir['root'] = dirname(realpath(__FILE__))
  3308. . (strlen(dirname(realpath(__FILE__))) > 0 ? '/' : '');
  3309. $this->dir['lang'] = $this->dir['root'].'lang/';
  3310. // Creating URL variables
  3311. $this->url['images'] = 'images/';
  3312. isset($opts['url']['images']) && $this->url['images'] = $opts['url']['images'];
  3313. // CSS classes policy
  3314. $this->css = @$opts['css'];
  3315. !isset($this->css['separator']) && $this->css['separator'] = '-';
  3316. !isset($this->css['prefix']) && $this->css['prefix'] = 'pme';
  3317. !isset($this->css['page_type']) && $this->css['page_type'] = false;
  3318. !isset($this->css['position']) && $this->css['position'] = false;
  3319. !isset($this->css['divider']) && $this->css['divider'] = 2;
  3320. $this->css['divider'] = intval(@$this->css['divider']);
  3321. // Navigation
  3322. $this->navigation = @$opts['navigation'];
  3323. if (! $this->nav_buttons() && ! $this->nav_text_links() && ! $this->nav_graphic_links()) {
  3324. $this->navigation .= 'B'; // buttons are default
  3325. }
  3326. if (! $this->nav_up() && ! $this->nav_down()) {
  3327. $this->navigation .= 'D'; // down position is default
  3328. }
  3329. // Language labels (must go after navigation)
  3330. $this->labels = $this->make_language_labels(isset($opts['language'])
  3331. ? $opts['language'] : $this->get_server_var('HTTP_ACCEPT_LANGUAGE'));
  3332. // CGI variables
  3333. $this->cgi['append'] = @$opts['cgi']['append'];
  3334. $this->cgi['overwrite'] = @$opts['cgi']['overwrite'];
  3335. $this->cgi['persist'] = '';
  3336. if (@is_array($opts['cgi']['persist'])) {
  3337. foreach ($opts['cgi']['persist'] as $key => $val) {
  3338. $this->cgi['persist'] .= '&'.urlencode($key).'='.urlencode($val);
  3339. }
  3340. }
  3341. // Sorting variables
  3342. $this->sfn = $this->get_cgi_var('sfn');
  3343. isset($this->sfn) || $this->sfn = array();
  3344. is_array($this->sfn) || $this->sfn = array($this->sfn);
  3345. isset($opts['sort_field']) || $opts['sort_field'] = array();
  3346. is_array($opts['sort_field']) || $opts['sort_field'] = array($opts['sort_field']);
  3347. $this->sfn = array_merge($this->sfn, $opts['sort_field']);
  3348. #$this->sfn[] = '0'; // this last entry will be replaced in recreate_displayed()
  3349. // Form variables all around
  3350. $this->fl = intval($this->get_cgi_var('fl'));
  3351. $this->fm = intval($this->get_cgi_var('fm'));
  3352. $this->qfn = $this->get_cgi_var('qfn');
  3353. $this->sw = $this->get_cgi_var('sw');
  3354. $this->rec = $this->get_cgi_var('rec', '');
  3355. $this->navop = $this->get_cgi_var('navop');
  3356. if (($this->navfm = $this->get_cgi_var('navfmup', $this->fm)) != $this->fm) {
  3357. $this->navop = $this->labels['Go to'];
  3358. } else if (($this->navfm = $this->get_cgi_var('navfmdown', $this->navfm)) != $this->fm) {
  3359. $this->navop = $this->labels['Go to'];
  3360. }
  3361. $this->operation = $this->get_cgi_var('operation');
  3362. $this->saveadd = $this->get_cgi_var('saveadd');
  3363. $this->moreadd = $this->get_cgi_var('moreadd');
  3364. $this->canceladd = $this->get_cgi_var('canceladd');
  3365. $this->savechange = $this->get_cgi_var('savechange');
  3366. $this->adminchange = $this->get_cgi_var('adminchange');
  3367. $this->morechange = $this->get_cgi_var('morechange');
  3368. $this->mailchange = $this->get_cgi_var('mailchange');
  3369. $this->docchange = $this->get_cgi_var('docchange');
  3370. $this->rtfgen_detail = $this->get_cgi_var('rtfgen_detail');
  3371. $this->cancelchange = $this->get_cgi_var('cancelchange');
  3372. $this->savedelete = $this->get_cgi_var('savedelete');
  3373. $this->canceldelete = $this->get_cgi_var('canceldelete');
  3374. $this->cancelview = $this->get_cgi_var('cancelview');
  3375. // Filter setting
  3376. if (isset($this->sw)) {
  3377. $this->sw == $this->labels['Search'] && $this->fl = 1;
  3378. $this->sw == $this->labels['Hide'] && $this->fl = 0;
  3379. //$this->sw == $this->labels['Clear'] && $this->fl = 0;
  3380. }
  3381. // TAB names
  3382. $this->tabs = array();
  3383. // Setting key_delim according to key_type
  3384. if ($this->key_type == 'real') {
  3385. /* If 'real' key_type does not work,
  3386. try change MySQL datatype from float to double */
  3387. $this->rec = doubleval($this->rec);
  3388. $this->key_delim = '';
  3389. } elseif ($this->key_type == 'int') {
  3390. $this->rec = intval($this->rec);
  3391. $this->key_delim = '';
  3392. } else {
  3393. $this->key_delim = '"';
  3394. // $this->rec remains unmodified
  3395. }
  3396. // Specific $fdd modifications depending on performed action
  3397. $this->recreate_fdd();
  3398. // Extract SQL Field Names and number of fields
  3399. $this->recreate_displayed();
  3400. // Gathering query options
  3401. $this->gather_query_opts();
  3402. // Call to action
  3403. !isset($opts['execute']) && $opts['execute'] = 1;
  3404. $opts['execute'] && $this->execute();
  3405. // Restore original error reporting level
  3406. @error_reporting($error_reporting);
  3407. } /* }}} */
  3408. }
  3409. /* Modeline for ViM {{{
  3410. * vim:set ts=4:
  3411. * vim600:fdm=marker fdl=0 fdc=0:
  3412. * }}} */
  3413. ?>