report_designer.php 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335
  1. <?php require_once 'auth.php'; ?>
  2. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
  3. "http://www.w3.org/TR/html4/loose.dtd">
  4. <html>
  5. <head>
  6. <title><?=getTitle(__FILE__);?></title>
  7. <link rel="stylesheet" href="phpME.css" type="text/css"></link>
  8. </head>
  9. <body onLoad='documentOnLoad()'>
  10. <h3><?=getTitle(__FILE__);?></h3>
  11. <script language=javascript>
  12. function documentOnLoad() {
  13. }
  14. </script>
  15. <script language=javascript>
  16. function windowOpen(u,W,H) {
  17. TopPosition = (screen.height) ? (screen.height-H)/2 : 0;
  18. LeftPosition = (screen.width) ? (screen.width-W)/2 : 0;
  19. settings = 'height='+H+',width='+W+',top='+TopPosition+',left='+LeftPosition+
  20. ',scrollbars=1,resizable=0,toolbar=0,location=0,directories=0,status=0,menubar=0';
  21. win = window.open(u,'_blank',settings);
  22. return win;
  23. }
  24. </script>
  25. <?php
  26. if ($isSupervisor) {
  27. $userAction['designReport'] = 1;
  28. $userAction['dictionary'] = 1;
  29. $userAction['right'] = 1;
  30. } else {
  31. $baseFile = $arrFILE[basename(__FILE__)];
  32. $userAction = getUserActions($_SESSION['userid'], $baseFile);
  33. }
  34. if (in_array($_REQUEST['operation'],array(__('Change'),__('Add'),__('Copy')))
  35. || isset($_REQUEST['morechange']) || isset($_REQUEST['moreadd'])) {
  36. ?>
  37. <?php if ($userAction['designReport'] === 1) { ?>
  38. <script language=javascript>
  39. function getId() {
  40. f = document.forms[0];
  41. if (f.id) return f.id.value;
  42. return '';
  43. }
  44. function designReport() {
  45. windowOpen('designreport.php?idReport='+getId(), 800, 600);
  46. }
  47. </script>
  48. <input type=button value='<?=__('Design Report')?>' onClick="designReport()">
  49. <?php } ?>
  50. <?php if ($userAction['dictionary'] === 1) { ?>
  51. <script language=javascript>
  52. function dictionary() {
  53. windowOpen('report_dictionary.php?id='+getId(), 800, 600);
  54. }
  55. </script>
  56. <input type=button value='<?=__('Dictionary')?>' onClick="dictionary()">
  57. <?php } ?>
  58. <?php if ($userAction['right'] === 1) { ?>
  59. <script language=javascript>
  60. function reportRight() {
  61. windowOpen('report_right.php?id='+getId(), 800, 600);
  62. }
  63. </script>
  64. <input type=button value='<?=__('Right')?>' onClick="reportRight()">
  65. <?php } ?>
  66. <?php
  67. }
  68. /*
  69. * IMPORTANT NOTE: This generated file contains only a subset of huge amount
  70. * of options that can be used with phpMyEdit. To get information about all
  71. * features offered by phpMyEdit, check official documentation. It is available
  72. * online and also for download on phpMyEdit project management page:
  73. *
  74. * http://www.platon.sk/projects/main_page.php?project_id=5
  75. */
  76. // MySQL host name, user name, password, database, and table
  77. require_once 'config.php';
  78. $opts['hn'] = $adodb_host;
  79. $opts['un'] = $adodb_user;
  80. $opts['pw'] = $adodb_pass;
  81. $opts['db'] = $adodb_db;
  82. $opts['tb'] = 'qb_report';
  83. // Name of field which is the unique key
  84. $opts['key'] = 'id';
  85. // Type of key field (int/real/string/date etc.)
  86. $opts['key_type'] = 'int';
  87. // Sorting field(s)
  88. $opts['sort_field'] = array('id');
  89. // Number of records to display on the screen
  90. // Value of -1 lists all records in a table
  91. $opts['inc'] = 25;
  92. // Options you wish to give the users
  93. // A - add, C - change, P - copy, V - view, D - delete,
  94. // F - filter, I - initial sort suppressed
  95. $opts['options'] = 'PACFD'; // DPV
  96. // Number of lines to display on multiple selection filters
  97. $opts['multiple'] = '4';
  98. // Navigation style: B - buttons (default), T - text links, G - graphic links
  99. // Buttons position: U - up, D - down (default)
  100. $opts['navigation'] = 'UG'; //'DB';
  101. // Display special page elements
  102. $opts['display'] = array(
  103. 'form' => true,
  104. 'query' => true,
  105. 'sort' => true,
  106. 'time' => true,
  107. 'tabs' => true
  108. );
  109. $opts['logtable'] = isLogTable($opts['tb']);
  110. /* Get the user's default language and use it if possible or you can
  111. specify particular one you want to use. Refer to official documentation
  112. for list of available languages. */
  113. $opts['language'] = $HTTP_SERVER_VARS['HTTP_ACCEPT_LANGUAGE'];
  114. /* Table-level filter capability. If set, it is included in the WHERE clause
  115. of any generated SELECT statement in SQL query. This gives you ability to
  116. work only with subset of data from table.
  117. $opts['filters'] = "column1 like '%11%' AND column2<17";
  118. $opts['filters'] = "section_id = 9";
  119. $opts['filters'] = "PMEtable0.sessions_count > 200";
  120. */
  121. /* Field definitions
  122. Fields will be displayed left to right on the screen in the order in which they
  123. appear in generated list. Here are some most used field options documented.
  124. ['name'] is the title used for column headings, etc.;
  125. ['maxlen'] maximum length to display add/edit/search input boxes
  126. ['trimlen'] maximum length of string content to display in row listing
  127. ['width'] is an optional display width specification for the column
  128. e.g. ['width'] = '100px';
  129. ['mask'] a string that is used by sprintf() to format field output
  130. ['sort'] true or false; means the users may sort the display on this column
  131. ['strip_tags'] true or false; whether to strip tags from content
  132. ['nowrap'] true or false; whether this field should get a NOWRAP
  133. ['required'] true or false; if generate javascript to prevent null entries
  134. ['select'] T - text, N - numeric, D - drop-down, M - multiple selection
  135. ['options'] optional parameter to control whether a field is displayed
  136. L - list, F - filter, A - add, C - change, P - copy, D - delete, V - view
  137. Another flags are:
  138. R - indicates that a field is read only
  139. W - indicates that a field is a password field
  140. H - indicates that a field is to be hidden and marked as hidden
  141. ['URL'] is used to make a field 'clickable' in the display
  142. e.g.: 'mailto:$value', 'http://$value' or '$page?stuff';
  143. ['URLtarget'] HTML target link specification (for example: _blank)
  144. ['textarea']['rows'] and/or ['textarea']['cols']
  145. specifies a textarea is to be used to give multi-line input
  146. e.g. ['textarea']['rows'] = 5; ['textarea']['cols'] = 10
  147. ['values'] restricts user input to the specified constants,
  148. e.g. ['values'] = array('A','B','C') or ['values'] = range(1,99)
  149. ['values']['table'] and ['values']['column'] restricts user input
  150. to the values found in the specified column of another table
  151. ['values']['description'] = 'desc_column'
  152. The optional ['values']['description'] field allows the value(s) displayed
  153. to the user to be different to those in the ['values']['column'] field.
  154. This is useful for giving more meaning to column values. Multiple
  155. descriptions fields are also possible. Check documentation for this.
  156. */
  157. if (in_array($_REQUEST['operation'],array(__('Copy')))) {
  158. $opts['fdd']['copyid'] = array(
  159. 'name' => 'ID',
  160. 'input' => 'H',
  161. 'sql' => 'id',
  162. 'default' => $_REQUEST['rec']
  163. );
  164. }
  165. $opts['fdd']['id'] = array(
  166. 'name' => 'ID',
  167. 'select' => 'T',
  168. 'options' => 'AVCPDR', // auto increment
  169. 'maxlen' => 11,
  170. 'default' => '0',
  171. 'sort' => true
  172. );
  173. $opts['fdd']['name'] = array(
  174. 'name' => 'Name',
  175. 'select' => 'T',
  176. 'maxlen' => 64,
  177. 'sort' => true,
  178. 'required' => true
  179. );
  180. $opts['fdd']['sql'] = array(
  181. 'name' => 'SQL',
  182. 'select' => 'T',
  183. 'maxlen' => 65535,
  184. 'textarea' => array(
  185. 'rows' => 5,
  186. 'cols' => 85),
  187. 'sort' => true,
  188. 'options' => 'ACDP'
  189. );
  190. $opts['fdd']['oninsert'] = array(
  191. 'name' => 'onInsert',
  192. 'select' => 'T',
  193. 'maxlen' => 65535,
  194. 'sort' => true,
  195. 'textarea' => array(
  196. 'rows' => 5,
  197. 'cols' => 85),
  198. 'options' => 'ACDP'
  199. );
  200. $opts['fdd']['onupdate'] = array(
  201. 'name' => 'onUpdate',
  202. 'select' => 'T',
  203. 'maxlen' => 65535,
  204. 'sort' => true,
  205. 'textarea' => array(
  206. 'rows' => 5,
  207. 'cols' => 85),
  208. 'options' => 'ACDP'
  209. );
  210. $opts['fdd']['ondelete'] = array(
  211. 'name' => 'onDelete',
  212. 'select' => 'T',
  213. 'maxlen' => 65535,
  214. 'sort' => true,
  215. 'options' => 'ACDP'
  216. );
  217. $opts['fdd']['isdelete'] = array(
  218. 'name' => 'isDelete',
  219. 'select' => 'T',
  220. 'maxlen' => 65535,
  221. 'sort' => true,
  222. 'options' => 'ACDP'
  223. );
  224. $opts['fdd']['readonly'] = array(
  225. 'name' => 'readOnly',
  226. 'select' => 'T',
  227. 'maxlen' => 65535,
  228. 'sort' => true,
  229. 'options' => 'ACDP'
  230. );
  231. $opts['fdd']['hidden'] = array(
  232. 'name' => 'hidden',
  233. 'select' => 'T',
  234. 'maxlen' => 65535,
  235. 'sort' => true,
  236. 'options' => 'ACDP'
  237. );
  238. $opts['fdd']['paramtxt'] = array(
  239. 'textarea' => array(
  240. 'rows' => 5,
  241. 'cols' => 85
  242. ),
  243. 'name' => 'ParamTxt',
  244. 'select' => 'T',
  245. 'maxlen' => 65535,
  246. 'sort' => true,
  247. 'options' => 'ACDP'
  248. );
  249. $opts['fdd']['paramsql'] = array(
  250. 'name' => 'ParamSQL',
  251. 'select' => 'T',
  252. 'maxlen' => 65535,
  253. 'sort' => true,
  254. 'textarea' => array(
  255. 'rows' => 5,
  256. 'cols' => 85),
  257. 'options' => 'ACDP'
  258. );
  259. $opts['fdd']['groupby'] = array(
  260. 'name' => 'GroupBy',
  261. 'select' => 'T',
  262. 'maxlen' => 65535,
  263. 'sort' => true,
  264. 'options' => 'ACDP'
  265. );
  266. $opts['fdd']['pkey'] = array(
  267. 'name' => 'PKey',
  268. 'select' => 'T',
  269. 'maxlen' => 65535,
  270. 'sort' => true,
  271. 'options' => 'ACDP'
  272. );
  273. $opts['fdd']['serialize'] = array(
  274. 'name' => 'serialize',
  275. 'select' => 'T',
  276. 'sort' => false,
  277. // 'sql' => "''",
  278. 'options' => 'ACP',
  279. 'input' => 'H'
  280. );
  281. $opts['triggers']['insert']['after'] = 'report_designer.TIA.inc.php';
  282. $opts['triggers']['delete']['after'] = 'report_designer.TDA.inc.php';
  283. // Now important call to phpMyEdit
  284. $moduleId = 'Report.Report Designer';
  285. $opts['options'] = getUserOptions($moduleId, $opts['options']);
  286. $opts['filters'] = getUserFilters($moduleId);
  287. require_once 'phpMyEdit.class.php';
  288. new phpMyEdit($opts);
  289. ?>
  290. </body>
  291. </html>