-
Notifications
You must be signed in to change notification settings - Fork 19
Administration Development
Dirk Schäfer edited this page Mar 16, 2016
·
1 revision
$app->log->debug('...');
Since every model (should) extend Libs\RESTModel, the following code snippet can be used:
self::getApp()->log->debug('...');
global $ilLog;
$ilLog->write('...');
DROP TABLE IF EXISTS ui_uihk_rest_client, ui_uihk_rest_user, ui_uihk_rest_perm, ui_uihk_rest_config, ui_uihk_rest_authcode, ui_uihk_rest_refresh, ui_uihk_rest_challenge, ui_uihk_rest_keys, ui_uihk_rest_oauth2, ui_uihk_rest_key2user, ui_uihk_rest_key2ip;
DROP TABLE IF EXISTS ui_uihk_rest_access, ui_uihk_rest_authcode, ui_uihk_rest_client, ui_uihk_rest_config, ui_uihk_rest_perm, ui_uihk_rest_refresh;
DELETE FROM il_plugin WHERE component_type = 'Services' AND component_name = 'UIComponent' AND slot_id = 'uihk' AND name = 'REST';
- Database table names (in ILIAS) should not exceed 22 characters.