~hexmode/+junk/main

« back to all changes in this revision

Viewing changes to install-files/apps/sqlitemanager1.2.0/include/functproperties.php

  • Committer: Mark A. Hershberger
  • Date: 2008-01-05 19:38:56 UTC
  • Revision ID: hershberger@spawn-xp-20080105193856-6rnzgwa4nehue3qj
initial commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?php
 
2
/**
 
3
* Web based SQLite management
 
4
* Show and manage 'FUNCTION' properties
 
5
* @package SQLiteManager
 
6
* @author Fr�d�ric HENNINOT
 
7
* @version $Id: functproperties.php,v 1.6 2004/11/25 12:56:18 tpruvot Exp $ $Revision: 1.6 $
 
8
*/
 
9
 
 
10
include_once INCLUDE_LIB.'SQLiteFunctionProperties.class.php';
 
11
$functProp = &new SQLiteFunctionProperties($workDb);
 
12
switch($action){
 
13
        case '':
 
14
        default:                        
 
15
                $functProp->PropView();
 
16
                break;
 
17
        case 'modify':
 
18
        case 'add':
 
19
                $functProp->functEditForm();
 
20
                break;
 
21
        case 'save':
 
22
        case 'delete':
 
23
                $functProp->saveProp();
 
24
                break;
 
25
        case 'export':
 
26
                include_once INCLUDE_LIB.'SQLiteExport.class.php';
 
27
                $export =& new SQLiteExport($workDb);                   
 
28
                break;
 
29
}        
 
30
 
 
31
?>
 
32
 
 
33
</body>
 
34
</html>