Proyectos de Subversion Moodle

Rev

Rev 501 | Rev 511 | Ir a la última revisión | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
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',
501 ariadna 7
        'methodname' => 'get_listado_de_cursos_recientes',
1 efrain 8
        'classpath' => 'blocks/cursos_recientes_ajax/externallib.php',
510 ariadna 9
        'description' => 'List of items a user has accessed most recently',
1 efrain 10
        'type' => 'read',
11
        'ajax' => true,
12
        'services' => array(MOODLE_OFFICIAL_MOBILE_SERVICE),
13
    )
499 ariadna 14
);