meraproject/module/vcard/profile/controller.php

22 lines
348 B
PHP
Raw Permalink Normal View History

<?
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);
}
}