. /** * External functions and service definitions. */ // We define the services to install as pre-build services. A pre-build service is not editable by administrator. $services = array( 'Escola Modelo Service' => array( 'functions' => array ( 'block_escola_modelo_get_usage_statistics' ), 'restrictedusers' => 0, 'enabled'=>1, ) ); // We defined the web service functions to install. $functions = array( 'block_escola_modelo_get_usage_statistics' => array( 'classname' => 'block_escola_modelo_external', 'methodname' => 'get_usage_statistics', 'classpath' => 'block/escola_modelo/externallib.php', 'description' => 'Returns user statistics from this moodle installation', 'type' => 'read', ), );