xref: /plugin/diagrams/Diagrams.php (revision 50c16f31eb7272ab441eb721895b0830622db302)
1<?php
2
3namespace dokuwiki\plugin\diagrams;
4
5/**
6 * Currently only used to hold constants
7 */
8class Diagrams {
9    const MODE_MEDIA = 1;
10    const MODE_EMBED = 2;
11}
12