123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178 |
- <?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>
- <h3><?=getTitle(__FILE__);?></h3>
- <?php
- require_once 'config.php';
- $opts['hn'] = $adodb_host;
- $opts['un'] = $adodb_user;
- $opts['pw'] = $adodb_pass;
- $opts['db'] = $adodb_db;
- $opts['tb'] = 'qb_view';
- $opts['key'] = 'id';
- $opts['key_type'] = 'int';
- $opts['sort_field'] = array('id');
- $opts['inc'] = 25;
- $opts['options'] = 'F';
- $opts['multiple'] = '4';
- $opts['navigation'] = 'UG';
- $opts['display'] = array(
- 'form' => true,
- 'query' => true,
- 'sort' => true,
- 'time' => true,
- 'tabs' => true
- );
- $opts['logtable'] = 'qb_changelog';
- $opts['language'] = $HTTP_SERVER_VARS['HTTP_ACCEPT_LANGUAGE'];
- if (!$isSupervisor) {
- $rs = $adodb->Execute("SELECT name FROM qb_user_view ".
- " WHERE userid = '".$_SESSION['userid']."'");
- while (!$rs->EOF) {
- $opts['filters'] .= "'".addslashes($rs->fields['name'])."',";
- $rs->MoveNext();
- }
- if ($opts['filters']) {
- $opts['filters'] = substr($opts['filters'], 0, -1);
- $opts['filters'] = "name IN (".$opts['filters'].")";
- }
-
- }
- $opts['fdd']['id'] = array(
- 'name' => 'ID',
- 'select' => 'T',
- 'options' => 'AVCPDR',
- 'maxlen' => 11,
- 'default' => '0',
- 'sort' => true
- );
- $opts['fdd']['sql'] = array(
- 'name' => 'Sql',
- 'select' => 'T',
- 'maxlen' => 65535,
- 'textarea' => array(
- 'rows' => 5,
- 'cols' => 50),
- 'sort' => true,
- 'options' => ''
- );
- $opts['fdd']['view'] = array(
- 'name' => 'View',
- 'select' => 'T',
- 'maxlen' => 64,
- 'sort' => true,
- 'URL' => 'view_open.php?id=$key',
- 'URLdisp' => '$value',
- 'URLtarget' => '_blank',
- 'sql' => "CONCAT(id, ',', name)",
- 'eval' => '
- $p = split("," , $value, 2);
- $value = __("TITLE", $p[1], "qb_view_".$p[0]);
- '
- );
- $moduleId = 'View.View';
- $opts['options'] = getUserOptions($moduleId, $opts['options']);
- $opts['filters'] = getUserFilters($moduleId, $opts['filters']);
- require_once 'phpMyEdit.class.php';
- new phpMyEdit($opts);
- ?>
- </body>
- </html>
|