1 <?php
2 
3 
4 namespace ComboStrap;
5 
6 /**
7  * Class Plugins
8  * @package ComboStrap
9  * A class to hold the plugin name
10  */
11 class ThirdPartyPlugins
12 {
13 
14     /**
15      * Imagemapping
16      * https://github.com/i-net-software/dokuwiki-plugin-imagemap
17      * It takes over standard dokuwiki links and media
18      * We then don't take over
19      */
20     const IMAGE_MAPPING_NAME = "imagemapping";
21 
22     /**
23      * Move Plugin
24      */
25     const MOVE_NAME = "move";
26     const SQLITE_NAME = "sqlite";
27     const GOOGLE_ANALYTICS = "googleanalytics";
28 
29 
30 }
31