1*bc39777fSAndreas Gohr<?php 2*bc39777fSAndreas Gohr 3*bc39777fSAndreas Gohrnamespace dokuwiki\plugin\diagrams; 4*bc39777fSAndreas Gohr 5*bc39777fSAndreas Gohr/** 6*bc39777fSAndreas Gohr * Currently only used to hold constants 7*bc39777fSAndreas Gohr */ 8*bc39777fSAndreas Gohrclass Diagrams { 9*bc39777fSAndreas Gohr const MODE_MEDIA = 1; 10*bc39777fSAndreas Gohr const MODE_EMBED = 2; 11*bc39777fSAndreas Gohr} 12