chpass.php 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  1. <?php
  2. require_once 'auth.php';
  3. #print_r($_REQUEST);
  4. if (!isset($_REQUEST['operation']) && !isset($_REQUEST['savechange'])
  5. && !isset($_REQUEST['cancelchange']) ) {
  6. echo "<script language=javascript>
  7. location.href = '".$_SERVER['PHP_SELF'].
  8. "?fl=0&fm=0&sfn[0]=0&operation=Change&rec=".$_SESSION['userid']."';
  9. </script>";
  10. }
  11. if (isset($_GET['operation']) && $_GET['rec'] !== $_SESSION['userid']) {
  12. echo "<script language=javascript>
  13. location.href = '".$_SERVER['PHP_SELF']."';
  14. </script>";
  15. }
  16. ?>
  17. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
  18. "http://www.w3.org/TR/html4/loose.dtd">
  19. <html>
  20. <head>
  21. <title><?=getTitle(__FILE__);?></title>
  22. <link rel="stylesheet" href="phpME.css" type="text/css"></link>
  23. </head>
  24. <body onLoad='documentOnLoad()'>
  25. <h3><?=getTitle(__FILE__);?></h3>
  26. <?php
  27. echo "
  28. <script language=javascript>
  29. function documentOnLoad() {
  30. ";
  31. if (in_array($_REQUEST['operation'],array(__('Change')))
  32. || isset($_REQUEST['morechange'])) {
  33. echo "document.forms[0].userid.readOnly = true;";
  34. //$opts['fdd']['userid']['input'] = 'R';
  35. }
  36. echo "
  37. }
  38. </script>
  39. ";
  40. /*
  41. * IMPORTANT NOTE: This generated file contains only a subset of huge amount
  42. * of options that can be used with phpMyEdit. To get information about all
  43. * features offered by phpMyEdit, check official documentation. It is available
  44. * online and also for download on phpMyEdit project management page:
  45. *
  46. * http://www.platon.sk/projects/main_page.php?project_id=5
  47. */
  48. // MySQL host name, user name, password, database, and table
  49. require_once 'config.php';
  50. $opts['hn'] = $adodb_host;
  51. $opts['un'] = $adodb_user;
  52. $opts['pw'] = $adodb_pass;
  53. $opts['db'] = $adodb_db;
  54. $opts['tb'] = 'qb_user';
  55. // Name of field which is the unique key
  56. $opts['key'] = 'userid';
  57. // Type of key field (int/real/string/date etc.)
  58. $opts['key_type'] = 'string';
  59. // Sorting field(s)
  60. $opts['sort_field'] = array('userid');
  61. // Number of records to display on the screen
  62. // Value of -1 lists all records in a table
  63. $opts['inc'] = 25;
  64. // Options you wish to give the users
  65. // A - add, C - change, P - copy, V - view, D - delete,
  66. // F - filter, I - initial sort suppressed
  67. $opts['options'] = 'C'; // VDP
  68. // Number of lines to display on multiple selection filters
  69. $opts['multiple'] = '4';
  70. // Navigation style: B - buttons (default), T - text links, G - graphic links
  71. // Buttons position: U - up, D - down (default)
  72. $opts['navigation'] = 'UG'; //'DB';
  73. // Display special page elements
  74. $opts['display'] = array(
  75. 'form' => true,
  76. 'query' => false,
  77. 'sort' => false,
  78. 'time' => false,
  79. 'tabs' => false
  80. );
  81. $opts['logtable'] = isLogTable($opts['tb']);
  82. /* Get the user's default language and use it if possible or you can
  83. specify particular one you want to use. Refer to official documentation
  84. for list of available languages. */
  85. $opts['language'] = $HTTP_SERVER_VARS['HTTP_ACCEPT_LANGUAGE'];
  86. /* Table-level filter capability. If set, it is included in the WHERE clause
  87. of any generated SELECT statement in SQL query. This gives you ability to
  88. work only with subset of data from table.
  89. $opts['filters'] = "column1 like '%11%' AND column2<17";
  90. $opts['filters'] = "section_id = 9";
  91. $opts['filters'] = "PMEtable0.sessions_count > 200";
  92. */
  93. $opts['filters'] = " userid = '".$_SESSION['userid']."'";
  94. /* Field definitions
  95. Fields will be displayed left to right on the screen in the order in which they
  96. appear in generated list. Here are some most used field options documented.
  97. ['name'] is the title used for column headings, etc.;
  98. ['maxlen'] maximum length to display add/edit/search input boxes
  99. ['trimlen'] maximum length of string content to display in row listing
  100. ['width'] is an optional display width specification for the column
  101. e.g. ['width'] = '100px';
  102. ['mask'] a string that is used by sprintf() to format field output
  103. ['sort'] true or false; means the users may sort the display on this column
  104. ['strip_tags'] true or false; whether to strip tags from content
  105. ['nowrap'] true or false; whether this field should get a NOWRAP
  106. ['required'] true or false; if generate javascript to prevent null entries
  107. ['select'] T - text, N - numeric, D - drop-down, M - multiple selection
  108. ['options'] optional parameter to control whether a field is displayed
  109. L - list, F - filter, A - add, C - change, P - copy, D - delete, V - view
  110. Another flags are:
  111. R - indicates that a field is read only
  112. W - indicates that a field is a password field
  113. H - indicates that a field is to be hidden and marked as hidden
  114. ['URL'] is used to make a field 'clickable' in the display
  115. e.g.: 'mailto:$value', 'http://$value' or '$page?stuff';
  116. ['URLtarget'] HTML target link specification (for example: _blank)
  117. ['textarea']['rows'] and/or ['textarea']['cols']
  118. specifies a textarea is to be used to give multi-line input
  119. e.g. ['textarea']['rows'] = 5; ['textarea']['cols'] = 10
  120. ['values'] restricts user input to the specified constants,
  121. e.g. ['values'] = array('A','B','C') or ['values'] = range(1,99)
  122. ['values']['table'] and ['values']['column'] restricts user input
  123. to the values found in the specified column of another table
  124. ['values']['description'] = 'desc_column'
  125. The optional ['values']['description'] field allows the value(s) displayed
  126. to the user to be different to those in the ['values']['column'] field.
  127. This is useful for giving more meaning to column values. Multiple
  128. descriptions fields are also possible. Check documentation for this.
  129. */
  130. $opts['fdd']['userid'] = array(
  131. 'name' => 'UserID',
  132. 'select' => 'T',
  133. 'maxlen' => 32,
  134. 'required' => true,
  135. 'sort' => true,
  136. 'sqlw' => 'LOWER("$val")'
  137. );
  138. $opts['fdd']['passwd'] = array(
  139. 'name' => 'Password',
  140. 'select' => 'T',
  141. 'maxlen' => 32,
  142. 'sort' => true,
  143. 'input' => 'W',
  144. 'sqlw' => 'IF (LENGTH("$val")>0,MD5("$val"),passwd)',
  145. 'sql' => '""'
  146. );
  147. // Now important call to phpMyEdit
  148. $moduleId = 'Change Password';
  149. $opts['options'] = getUserOptions($moduleId, $opts['options']);
  150. $opts['filters'] = getUserFilters($moduleId, $opts['filters']);
  151. require_once 'phpMyEdit.class.php';
  152. new phpMyEdit($opts);
  153. ?>
  154. </body>
  155. </html>