diff options
author | Alex Vitkov <alexvitkov98@gmail.com> | 2021-02-12 13:19:04 +0200 |
---|---|---|
committer | Alex Vitkov <alexvitkov98@gmail.com> | 2021-02-12 13:19:04 +0200 |
commit | 774fbfdbabf626ccaf768bf421f8b5ed5ce0172b (patch) | |
tree | c4da62ad8a3c0967e5e133a63b2cebaf88b937ae /php/node.php | |
parent | 1ed8d0f9259ccb8d9adc0cf12267043ef351e5ec (diff) | |
parent | 527301b44e44e994c89ba4db47a49e37eaef4d1b (diff) | |
download | fileup-774fbfdbabf626ccaf768bf421f8b5ed5ce0172b.tar.gz |
Merge branch 'master' of https://github.com/alexvitkov/india
Diffstat (limited to 'php/node.php')
-rw-r--r-- | php/node.php | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/php/node.php b/php/node.php index b6c3428..3c18519 100644 --- a/php/node.php +++ b/php/node.php @@ -1,9 +1,21 @@ <?php require_once "database.php"; - class Current_Directory + class Node { public $node_id; + public $is_directory; + public $relative_path; + public $type; + public $name; + public $note; + function __construct($node_id) + { + $this->node_id=$node_id; + } + } + class Current_Directory + { /*an array of the dir_ids taken to reach here*/ public $path; |