| Línea 12... |
Línea 12... |
| 12 |
// GNU General Public License for more details.
|
12 |
// GNU General Public License for more details.
|
| 13 |
//
|
13 |
//
|
| 14 |
// You should have received a copy of the GNU General Public License
|
14 |
// You should have received a copy of the GNU General Public License
|
| 15 |
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
15 |
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
| Línea 16... |
Línea -... |
| 16 |
|
- |
|
| 17 |
/**
|
- |
|
| 18 |
* Classes for rendering HTML output for Moodle.
|
- |
|
| 19 |
*
|
- |
|
| 20 |
* Please see {@link http://docs.moodle.org/en/Developement:How_Moodle_outputs_HTML}
|
- |
|
| 21 |
* for an overview.
|
- |
|
| 22 |
*
|
- |
|
| 23 |
* Included in this file are the primary renderer classes:
|
- |
|
| 24 |
* - renderer_base: The renderer outline class that all renderers
|
- |
|
| 25 |
* should inherit from.
|
- |
|
| 26 |
* - core_renderer: The standard HTML renderer.
|
- |
|
| 27 |
* - core_renderer_cli: An adaption of the standard renderer for CLI scripts.
|
- |
|
| 28 |
* - core_renderer_ajax: An adaption of the standard renderer for AJAX scripts.
|
- |
|
| 29 |
* - plugin_renderer_base: A renderer class that should be extended by all
|
- |
|
| 30 |
* plugin renderers.
|
- |
|
| 31 |
*
|
- |
|
| 32 |
* @package core
|
- |
|
| 33 |
* @category output
|
- |
|
| 34 |
* @copyright 2009 Tim Hunt
|
- |
|
| 35 |
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
- |
|
| 36 |
*/
|
- |
|
| 37 |
|
- |
|
| 38 |
use core\di;
|
- |
|
| 39 |
use core\hook\manager as hook_manager;
|
- |
|
| 40 |
use core\hook\output\after_standard_main_region_html_generation;
|
- |
|
| 41 |
use core\hook\output\before_footer_html_generation;
|
- |
|
| 42 |
use core\hook\output\before_html_attributes;
|
- |
|
| 43 |
use core\hook\output\before_http_headers;
|
- |
|
| 44 |
use core\hook\output\before_standard_footer_html_generation;
|
- |
|
| 45 |
use core\hook\output\before_standard_top_of_body_html_generation;
|
- |
|
| 46 |
use core\output\named_templatable;
|
- |
|
| 47 |
use core_completion\cm_completion_details;
|
- |
|
| 48 |
use core_course\output\activity_information;
|
- |
|
| 49 |
|
16 |
|