Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
VueTemplates
n/a
0 / 0
n/a
0 / 0
0
n/a
0 / 0
1<?php
2declare( strict_types=1 );
3namespace Wikibase\Lexeme\Presentation\View\Template;
4
5/**
6 * @license GPL-2.0-or-later
7 */
8class VueTemplates {
9
10    public const BASE_PATH = '/../../../resources/templates/';
11
12    // lexeme view
13    public const LEMMA = self::BASE_PATH . 'lemma.vue.html';
14    public const LEMMA_HEADER = self::BASE_PATH . 'lexemeHeader.vue.html';
15    public const CATEGORY_WIDGET = self::BASE_PATH . 'languageAndLexicalCategoryWidget.vue.html';
16
17    // senses
18    public const GLOSS_WIDGET = self::BASE_PATH . 'glossWidget.vue.html';
19
20    // forms
21    public const REPRESENTATIONS = self::BASE_PATH . 'representations.vue.html';
22}