Created test vehicle module oauth2test
This commit is contained in:
43
Zotlabs/Module/Oauth2test.php
Normal file
43
Zotlabs/Module/Oauth2test.php
Normal file
@@ -0,0 +1,43 @@
|
||||
<?php
|
||||
|
||||
namespace Zotlabs\Module;
|
||||
|
||||
class Oauth2test extends \Zotlabs\Web\Controller {
|
||||
|
||||
function get() {
|
||||
|
||||
$o .= replace_macros(get_markup_template('oauth2test.tpl'), array(
|
||||
'$baseurl' => z_root(),
|
||||
'$endpoints' => array(
|
||||
array(
|
||||
'oauth2test',
|
||||
array(
|
||||
array(
|
||||
'action', 'create_db'
|
||||
)
|
||||
),
|
||||
'oauth2test_create_db',
|
||||
'Create the OAuth2 database tables'
|
||||
)
|
||||
)
|
||||
));
|
||||
|
||||
return $o;
|
||||
}
|
||||
|
||||
function post() {
|
||||
|
||||
logger(json_encode($_POST), LOGGER_DEBUG);
|
||||
|
||||
switch ($_POST['action']) {
|
||||
case 'create_db':
|
||||
logger('Creating database tables...', LOGGER_DEBUG);
|
||||
break;
|
||||
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user