bf54db8bac
AMOS BEGIN CPY [librarygroup1,atto_equation],[librarygroup1,tiny_equation] CPY [librarygroup1_desc,atto_equation],[librarygroup1_desc,tiny_equation] CPY [librarygroup2,atto_equation],[librarygroup2,tiny_equation] CPY [librarygroup2_desc,atto_equation],[librarygroup2_desc,tiny_equation] CPY [librarygroup3,atto_equation],[librarygroup3,tiny_equation] CPY [librarygroup3_desc,atto_equation],[librarygroup3_desc,tiny_equation] CPY [librarygroup4,atto_equation],[librarygroup4,tiny_equation] CPY [librarygroup4_desc,atto_equation],[librarygroup4_desc,tiny_equation] AMOS END Part of MDL-75966
36 lines
1.2 KiB
PHP
36 lines
1.2 KiB
PHP
<?php
|
|
// This file is part of Moodle - http://moodle.org/
|
|
//
|
|
// Moodle is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// Moodle is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
/**
|
|
* This file contains a controller for receiving Tiny Equation service requests
|
|
*
|
|
* @package tiny_equation
|
|
* @copyright 2022 Huong Nguyen <huongnv13@gmail.com>
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
|
|
defined('MOODLE_INTERNAL') || die;
|
|
|
|
$functions = [
|
|
'tiny_equation_filter' => [
|
|
'classname' => 'tiny_equation\external\filter',
|
|
'methodname' => 'execute',
|
|
'description' => 'Filter the equation',
|
|
'type' => 'read',
|
|
'ajax' => true
|
|
],
|
|
];
|