123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335 |
- <?php require_once 'auth.php'; ?>
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
- "http://www.w3.org/TR/html4/loose.dtd">
- <html>
- <head>
- <title><?=getTitle(__FILE__);?></title>
- <link rel="stylesheet" href="phpME.css" type="text/css"></link>
- </head>
- <body onLoad='documentOnLoad()'>
- <h3><?=getTitle(__FILE__);?></h3>
- <script language=javascript>
- function documentOnLoad() {
- }
- </script>
- <script language=javascript>
- function windowOpen(u,W,H) {
- TopPosition = (screen.height) ? (screen.height-H)/2 : 0;
- LeftPosition = (screen.width) ? (screen.width-W)/2 : 0;
- settings = 'height='+H+',width='+W+',top='+TopPosition+',left='+LeftPosition+
- ',scrollbars=1,resizable=0,toolbar=0,location=0,directories=0,status=0,menubar=0';
- win = window.open(u,'_blank',settings);
- return win;
- }
- </script>
- <?php
- if ($isSupervisor) {
- $userAction['designReport'] = 1;
- $userAction['dictionary'] = 1;
- $userAction['right'] = 1;
- } else {
- $baseFile = $arrFILE[basename(__FILE__)];
- $userAction = getUserActions($_SESSION['userid'], $baseFile);
- }
- if (in_array($_REQUEST['operation'],array(__('Change'),__('Add'),__('Copy')))
- || isset($_REQUEST['morechange']) || isset($_REQUEST['moreadd'])) {
- ?>
- <?php if ($userAction['designReport'] === 1) { ?>
- <script language=javascript>
- function getId() {
- f = document.forms[0];
- if (f.id) return f.id.value;
- return '';
- }
- function designReport() {
- windowOpen('designreport.php?idReport='+getId(), 800, 600);
- }
- </script>
- <input type=button value='<?=__('Design Report')?>' onClick="designReport()">
- <?php } ?>
- <?php if ($userAction['dictionary'] === 1) { ?>
- <script language=javascript>
- function dictionary() {
- windowOpen('report_dictionary.php?id='+getId(), 800, 600);
- }
- </script>
- <input type=button value='<?=__('Dictionary')?>' onClick="dictionary()">
- <?php } ?>
- <?php if ($userAction['right'] === 1) { ?>
- <script language=javascript>
- function reportRight() {
- windowOpen('report_right.php?id='+getId(), 800, 600);
- }
- </script>
- <input type=button value='<?=__('Right')?>' onClick="reportRight()">
- <?php } ?>
- <?php
- }
- /*
- * IMPORTANT NOTE: This generated file contains only a subset of huge amount
- * of options that can be used with phpMyEdit. To get information about all
- * features offered by phpMyEdit, check official documentation. It is available
- * online and also for download on phpMyEdit project management page:
- *
- * http://www.platon.sk/projects/main_page.php?project_id=5
- */
- // MySQL host name, user name, password, database, and table
- require_once 'config.php';
- $opts['hn'] = $adodb_host;
- $opts['un'] = $adodb_user;
- $opts['pw'] = $adodb_pass;
- $opts['db'] = $adodb_db;
- $opts['tb'] = 'qb_report';
- // Name of field which is the unique key
- $opts['key'] = 'id';
- // Type of key field (int/real/string/date etc.)
- $opts['key_type'] = 'int';
- // Sorting field(s)
- $opts['sort_field'] = array('id');
- // Number of records to display on the screen
- // Value of -1 lists all records in a table
- $opts['inc'] = 25;
- // Options you wish to give the users
- // A - add, C - change, P - copy, V - view, D - delete,
- // F - filter, I - initial sort suppressed
- $opts['options'] = 'PACFD'; // DPV
- // Number of lines to display on multiple selection filters
- $opts['multiple'] = '4';
- // Navigation style: B - buttons (default), T - text links, G - graphic links
- // Buttons position: U - up, D - down (default)
- $opts['navigation'] = 'UG'; //'DB';
- // Display special page elements
- $opts['display'] = array(
- 'form' => true,
- 'query' => true,
- 'sort' => true,
- 'time' => true,
- 'tabs' => true
- );
- $opts['logtable'] = isLogTable($opts['tb']);
- /* Get the user's default language and use it if possible or you can
- specify particular one you want to use. Refer to official documentation
- for list of available languages. */
- $opts['language'] = $HTTP_SERVER_VARS['HTTP_ACCEPT_LANGUAGE'];
- /* Table-level filter capability. If set, it is included in the WHERE clause
- of any generated SELECT statement in SQL query. This gives you ability to
- work only with subset of data from table.
- $opts['filters'] = "column1 like '%11%' AND column2<17";
- $opts['filters'] = "section_id = 9";
- $opts['filters'] = "PMEtable0.sessions_count > 200";
- */
- /* Field definitions
- Fields will be displayed left to right on the screen in the order in which they
- appear in generated list. Here are some most used field options documented.
- ['name'] is the title used for column headings, etc.;
- ['maxlen'] maximum length to display add/edit/search input boxes
- ['trimlen'] maximum length of string content to display in row listing
- ['width'] is an optional display width specification for the column
- e.g. ['width'] = '100px';
- ['mask'] a string that is used by sprintf() to format field output
- ['sort'] true or false; means the users may sort the display on this column
- ['strip_tags'] true or false; whether to strip tags from content
- ['nowrap'] true or false; whether this field should get a NOWRAP
- ['required'] true or false; if generate javascript to prevent null entries
- ['select'] T - text, N - numeric, D - drop-down, M - multiple selection
- ['options'] optional parameter to control whether a field is displayed
- L - list, F - filter, A - add, C - change, P - copy, D - delete, V - view
- Another flags are:
- R - indicates that a field is read only
- W - indicates that a field is a password field
- H - indicates that a field is to be hidden and marked as hidden
- ['URL'] is used to make a field 'clickable' in the display
- e.g.: 'mailto:$value', 'http://$value' or '$page?stuff';
- ['URLtarget'] HTML target link specification (for example: _blank)
- ['textarea']['rows'] and/or ['textarea']['cols']
- specifies a textarea is to be used to give multi-line input
- e.g. ['textarea']['rows'] = 5; ['textarea']['cols'] = 10
- ['values'] restricts user input to the specified constants,
- e.g. ['values'] = array('A','B','C') or ['values'] = range(1,99)
- ['values']['table'] and ['values']['column'] restricts user input
- to the values found in the specified column of another table
- ['values']['description'] = 'desc_column'
- The optional ['values']['description'] field allows the value(s) displayed
- to the user to be different to those in the ['values']['column'] field.
- This is useful for giving more meaning to column values. Multiple
- descriptions fields are also possible. Check documentation for this.
- */
- if (in_array($_REQUEST['operation'],array(__('Copy')))) {
- $opts['fdd']['copyid'] = array(
- 'name' => 'ID',
- 'input' => 'H',
- 'sql' => 'id',
- 'default' => $_REQUEST['rec']
- );
- }
- $opts['fdd']['id'] = array(
- 'name' => 'ID',
- 'select' => 'T',
- 'options' => 'AVCPDR', // auto increment
- 'maxlen' => 11,
- 'default' => '0',
- 'sort' => true
- );
- $opts['fdd']['name'] = array(
- 'name' => 'Name',
- 'select' => 'T',
- 'maxlen' => 64,
- 'sort' => true,
- 'required' => true
- );
- $opts['fdd']['sql'] = array(
- 'name' => 'SQL',
- 'select' => 'T',
- 'maxlen' => 65535,
- 'textarea' => array(
- 'rows' => 5,
- 'cols' => 85),
- 'sort' => true,
- 'options' => 'ACDP'
- );
- $opts['fdd']['oninsert'] = array(
- 'name' => 'onInsert',
- 'select' => 'T',
- 'maxlen' => 65535,
- 'sort' => true,
- 'textarea' => array(
- 'rows' => 5,
- 'cols' => 85),
- 'options' => 'ACDP'
- );
- $opts['fdd']['onupdate'] = array(
- 'name' => 'onUpdate',
- 'select' => 'T',
- 'maxlen' => 65535,
- 'sort' => true,
- 'textarea' => array(
- 'rows' => 5,
- 'cols' => 85),
- 'options' => 'ACDP'
- );
- $opts['fdd']['ondelete'] = array(
- 'name' => 'onDelete',
- 'select' => 'T',
- 'maxlen' => 65535,
- 'sort' => true,
- 'options' => 'ACDP'
- );
- $opts['fdd']['isdelete'] = array(
- 'name' => 'isDelete',
- 'select' => 'T',
- 'maxlen' => 65535,
- 'sort' => true,
- 'options' => 'ACDP'
- );
- $opts['fdd']['readonly'] = array(
- 'name' => 'readOnly',
- 'select' => 'T',
- 'maxlen' => 65535,
- 'sort' => true,
- 'options' => 'ACDP'
- );
- $opts['fdd']['hidden'] = array(
- 'name' => 'hidden',
- 'select' => 'T',
- 'maxlen' => 65535,
- 'sort' => true,
- 'options' => 'ACDP'
- );
- $opts['fdd']['paramtxt'] = array(
- 'textarea' => array(
- 'rows' => 5,
- 'cols' => 85
- ),
- 'name' => 'ParamTxt',
- 'select' => 'T',
- 'maxlen' => 65535,
- 'sort' => true,
- 'options' => 'ACDP'
- );
- $opts['fdd']['paramsql'] = array(
- 'name' => 'ParamSQL',
- 'select' => 'T',
- 'maxlen' => 65535,
- 'sort' => true,
- 'textarea' => array(
- 'rows' => 5,
- 'cols' => 85),
- 'options' => 'ACDP'
- );
- $opts['fdd']['groupby'] = array(
- 'name' => 'GroupBy',
- 'select' => 'T',
- 'maxlen' => 65535,
- 'sort' => true,
- 'options' => 'ACDP'
- );
- $opts['fdd']['pkey'] = array(
- 'name' => 'PKey',
- 'select' => 'T',
- 'maxlen' => 65535,
- 'sort' => true,
- 'options' => 'ACDP'
- );
- $opts['fdd']['serialize'] = array(
- 'name' => 'serialize',
- 'select' => 'T',
- 'sort' => false,
- // 'sql' => "''",
- 'options' => 'ACP',
- 'input' => 'H'
- );
- $opts['triggers']['insert']['after'] = 'report_designer.TIA.inc.php';
- $opts['triggers']['delete']['after'] = 'report_designer.TDA.inc.php';
- // Now important call to phpMyEdit
- $moduleId = 'Report.Report Designer';
- $opts['options'] = getUserOptions($moduleId, $opts['options']);
- $opts['filters'] = getUserFilters($moduleId);
- require_once 'phpMyEdit.class.php';
- new phpMyEdit($opts);
- ?>
- </body>
- </html>
|