Completed
Push — master ( c59b30...dbfc44 )
by
unknown
08:10
created

start.php ➔ paas_integration_init()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
nc 1
nop 0
dl 0
loc 5
rs 10
c 0
b 0
f 0
1
<?php
2
3
elgg_register_event_handler('init', 'system', 'paas_integration_init');
4
5
function paas_integration_init() {
6
7
    elgg_register_action("avatar/upload", elgg_get_plugins_path() . "paas_integration/actions/avatar/upload.php");
8
    
9
}
10