Created components class & default userID

This commit is contained in:
Pierre
2017-05-26 09:36:20 +02:00
parent e87ef113bb
commit 7a393b1644
5 changed files with 76 additions and 3 deletions

View File

@ -0,0 +1,21 @@
<?php
/**
* Account image class
*
* @author Pierre HUBERT
*/
class accountImage{
/**
* Public constructor
*/
public function __construct(){
//Nothing now
}
public function test(){
return "test";
}
}
//Register class
Components::register("accountImage", new accountImage());