[ Index ]

Source Code Reference for V1.00

title

Body

[close]

/modules/reports/ -> setup.php (source)

   1  <?php /* $Id: setup.php 40 2008-02-11 12:11:44Z pedroix $ $URL: https://web2project.svn.sourceforge.net/svnroot/web2project/trunk/modules/reports/setup.php $ */
   2  if (!defined('W2P_BASE_DIR')) {
   3      die('You should not access this file directly');
   4  }
   5  
   6  $config = array();
   7  $config['mod_name'] = 'Reports';
   8  $config['mod_version'] = '0.1';
   9  $config['mod_directory'] = 'reports';
  10  $config['mod_setup_class'] = 'CSetupReports';
  11  $config['mod_type'] = 'user';
  12  $config['mod_ui_name'] = 'Reports';
  13  $config['mod_ui_icon'] = 'printer.png';
  14  $config['mod_description'] = 'A module for reports';
  15  
  16  if ($a == 'setup') {
  17      echo dPshowModuleConfig($config);
  18  }
  19  
  20  class CSetupReports {
  21  
  22  	function install() {
  23          return null;
  24      }
  25  
  26  	function remove() {
  27          return null;
  28      }
  29  
  30  	function upgrade() {
  31          return null;
  32      }
  33  }
  34  ?>


Generated: Thu Jan 8 03:00:03 2009 Cross-referenced by PHPXref 0.7