<?php

// This module is not fully converted and implemented

include_once('SharePage.php');

class ModuleNetworkShare extends AppModule
{
  function __construct($System)
  {
    parent::__construct($System);
    $this->Name = 'NetworkShare';
    $this->Version = '1.0';
    $this->Creator = 'Chronos';
    $this->License = 'GNU/GPL';
    $this->Description = 'System for loading network computer share file list and allow fast searching.';
    $this->Dependencies = array('Network');
  }
  
  function DoInstall()
  {
  }
  
  function DoUnInstall()
  {
  }

  function DoStart()
  {
    $this->System->RegisterPage('share', 'SharePage');
  }
}
