示例#1
0
文件: view.php 项目: robbat2/rats
function drawTableTopSQL($table, $oldwhere = '', $tablename = '')
{
    $keylist = array('' => '');
    foreach ($table as $key => $data) {
        if ($key[0] != '_') {
            $keylist[$key] = $data['longname'];
        }
    }
    echo '<form action="view.php" method="POST" class="title">';
    echo hiddeninput('table', $tablename);
    echo html_form_label('orderbycol', 'Sort:');
    echo selectinput('orderbycol', $keylist);
    echo html_form_label('wherecol', 'Search:');
    echo selectinput('wherecol', $keylist);
    $searchtypes = array('substring' => 'Substring', 'sqlregex' => 'SQL Regex', 'gnuregex' => 'GNU Regex');
    echo selectinput('wherefunc', $searchtypes);
    echo textinput('wheredata', '', 16);
    echo hiddeninput('wherecurrent', $oldwhere);
    echo submitinput('refresh', 'Refresh');
    echo '</form>';
}
示例#2
0
文件: html.lib.php 项目: robbat2/rats
function undobox($name)
{
    return submitinput('undo_' . $name, 'U');
}
示例#3
0
文件: addedit.php 项目: robbat2/rats
        if ($editData === $MySQL_singleton_abort) {
            die("Data abort! Query: {$query}\n");
        }
        echo hiddeninput(fieldName($tableName, $tableData[$tableName]['_idkey']), $idEdit);
    }
    echo hiddeninput('table', $tableName);
    echo hiddeninput('perm', $perm);
    echo "\n";
    ?>
<table class="dataform">
<?php 
    $data = NULL;
    if ($editData !== NULL) {
        $data = $editData;
    }
    foreach ($tableData[$tableName]['_view_cols'] as $itemkey) {
        formelement($tableName, $tableData, $itemkey, $data);
    }
    ?>
</table>
<?php 
    echo submitinput('submit', 'Submit') . "\n";
    ?>
</form>
<?php 
    //TODO
} else {
    echo __FILE__ . ' permission denied';
}
include './footer.inc.php';
/* vim: set ft=php expandtab shiftwidth=4 softtabstop=4 tabstop=4: */
示例#4
0
</td>
<td>
<?php 
echo passwordinput('password', '', 32);
?>
</td>
</tr>

<tr>
<td>
<label for="mode">Mode</label>
</td>
<td>
<?php 
echo selectinput('mode', array('normal' => 'Normal', 'kiosk' => 'Kiosk'), 'normal');
?>
</td>
</tr>

<tr>
<td colspan="2">
<?php 
echo submitinput('login', 'Login');
?>
</td>
</tr>

</table>
</form>
<?php 
/* vim: set ft=php expandtab shiftwidth=4 softtabstop=4 tabstop=4: */