mirror of
https://github.com/pierre42100/ComunicAPI
synced 2025-06-18 16:18:04 +00:00
Created components class & default userID
This commit is contained in:
21
classes/components/accountImage.php
Normal file
21
classes/components/accountImage.php
Normal 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());
|
Reference in New Issue
Block a user