home *** CD-ROM | disk | FTP | other *** search
/ PC World 2008 February (DVD) / PCWorld_2008-02_DVD.iso / v cisle / PHP / PHP.exe / EasyPHP-2.0b1-setup.exe / {app} / sqlitemanager / include / functproperties.php < prev    next >
Encoding:
PHP Script  |  2006-04-18  |  701 b   |  35 lines

  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>
  35.