|
Last change
on this file since 7628 was 7622, checked in by Pieter Naber, 16 years ago |
|
Created index file for testing purposes. Added TODO's where needed.
|
|
File size:
530 bytes
|
| Line | |
|---|
| 1 | <?
|
|---|
| 2 | /*
|
|---|
| 3 | * Project: NodeMap2.0
|
|---|
| 4 | * File: FileHandler.class.php
|
|---|
| 5 | * Purpose: Checking and reading node files from the server
|
|---|
| 6 | */
|
|---|
| 7 |
|
|---|
| 8 | class FileHandler {
|
|---|
| 9 | private $file;
|
|---|
| 10 |
|
|---|
| 11 | /*
|
|---|
| 12 | * Function: __construct (constructor)
|
|---|
| 13 | * Parameters: string $filename
|
|---|
| 14 | * Function: Handling with a node file
|
|---|
| 15 | */
|
|---|
| 16 | public function __construct(string $filename) {
|
|---|
| 17 | try {
|
|---|
| 18 | $this->file = fopen($filename);
|
|---|
| 19 | } catch (Exception $err) {
|
|---|
| 20 | // TODO: Better error description
|
|---|
| 21 | trigger_error();
|
|---|
| 22 | }
|
|---|
| 23 |
|
|---|
| 24 | // TODO: Needs to do something
|
|---|
| 25 | }
|
|---|
| 26 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.