22 lines
348 B
PHP
22 lines
348 B
PHP
|
|
<?
|
||
|
|
|
||
|
|
namespace controller\vcard\profile;
|
||
|
|
|
||
|
|
use ms\ms\structure\msControllerTable;
|
||
|
|
use vcard\Profile;
|
||
|
|
|
||
|
|
class Api extends msControllerTable {
|
||
|
|
|
||
|
|
static $class = 'vcard\Profile';
|
||
|
|
|
||
|
|
static function getMyData(){
|
||
|
|
$res = [];
|
||
|
|
if(IF_PROFILE){
|
||
|
|
$res = Profile::format(Profile::$data);
|
||
|
|
}
|
||
|
|
echo je($res);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
|