1 |
efrain |
1 |
<?php
|
|
|
2 |
defined('MOODLE_INTERNAL') || die();
|
|
|
3 |
|
|
|
4 |
$functions = array(
|
|
|
5 |
'block_cursos_recientes_ajax_list' => array(
|
|
|
6 |
'classname' => 'block_cursos_recientes_ajax_external',
|
|
|
7 |
'methodname' => 'get_listado_de_cursos_recientes',
|
|
|
8 |
'classpath' => 'blocks/cursos_recientes_ajax/externallib.php',
|
|
|
9 |
'description' => 'List of items a user has accessed most recently.',
|
|
|
10 |
'type' => 'read',
|
|
|
11 |
'ajax' => true,
|
|
|
12 |
'services' => array(MOODLE_OFFICIAL_MOBILE_SERVICE),
|
|
|
13 |
|
|
|
14 |
/*
|
|
|
15 |
'classname' => 'block_cursos_recientes_ajax\external',
|
|
|
16 |
'methodname' => 'get_listado_de_cursos_recientes',
|
|
|
17 |
'classpath' => '',
|
|
|
18 |
'description' => 'List of items a user has accessed most recently.',
|
|
|
19 |
'type' => 'read',
|
|
|
20 |
'ajax' => true,
|
|
|
21 |
'services' => array(MOODLE_OFFICIAL_MOBILE_SERVICE),
|
|
|
22 |
*/
|
|
|
23 |
)
|
|
|
24 |
);
|