services.php 546 Bytes
Newer Older
Artem Baranovskyi's avatar
Artem Baranovskyi committed
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php

$functions = [
    'local_asystgrade_update_grade' => [
        'classname'   => 'local_asystgrade\output\ajax_controller', // Контроллерный класс
        'methodname'  => 'get_marks', // Имя метода
        'classpath'   => 'local/asystgrade/classes/output/ajax_controller.php', // Путь к файлу
        'description' => 'Gets the marks for students.',
        'type'        => 'read',
        'ajax'        => true, // Разрешить вызов через AJAX
        'capabilities'=> ''
    ],
];