nope..
even if you put all your php files under your board directory this wont work..
Vb who's online system does not work by checking the files under certain directory, it has a completely different scheme.
To make it work your only chance would be to insert :
PHP Code:
require("./global.php");
$action="your action here";
into all your php files then do what Hellsatan suggested and define all your new actions inside online.php.
Downsides:
* Adding this line to your existing files make them a part of vb system and by default add at least 10 SQL queries for every file called.
* since they become the part of vbsystem, the codes inside them may clash with vb codes after your adding this line. This wont effect vb, but some of your alien php files may stop working or give errors and you may need to remodify them.