31 lines
559 B
PHP
31 lines
559 B
PHP
<?php
|
|
|
|
class DashboardController extends mfBaseController {
|
|
|
|
protected function init() {
|
|
$this->needlogin=true;
|
|
$me = new User();
|
|
$me->loadMe();
|
|
$this->me = $me;
|
|
$this->layout()->set("me",$me);
|
|
}
|
|
|
|
protected function indexAction() {
|
|
|
|
}
|
|
|
|
|
|
/*
|
|
protected function testAction() {
|
|
$search = [
|
|
'street' => "Kastellfeldgasse 20",
|
|
'zip' => "8010",
|
|
'city' => "Graz",
|
|
'country' => "AT"
|
|
];
|
|
|
|
$coords = Gmaps_Geocoding::getCoords($search);
|
|
var_dump($coords);
|
|
exit;
|
|
}*/
|
|
} |