-
Notifications
You must be signed in to change notification settings - Fork 0
/
theme.config.php
41 lines (41 loc) · 1.26 KB
/
theme.config.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?php
return array(
'extends' => 'root',
'css' => array(
//'vendor/bootstrap.min.css',
//'vendor/bootstrap-accessibility.css',
//'bootstrap-custom.css',
'compiled.css',
'vendor/font-awesome.min.css',
'vendor/bootstrap-slider.css',
'print.css:print',
),
'js' => array(
'vendor/base64.js:lt IE 10', // btoa polyfill
'vendor/jquery.min.js',
'vendor/bootstrap.min.js',
'vendor/bootstrap-accessibility.min.js',
//'vendor/bootlint.min.js',
'vendor/typeahead.js',
'vendor/validator.min.js',
'vendor/rc4.js',
'common.js',
'lightbox.js',
),
'less' => array(
'active' => false,
'compiled.less'
),
'favicon' => 'vufind-favicon.ico',
'helpers' => array(
'factories' => array(
'flashmessages' => 'VuFind\View\Helper\Bootstrap3\Factory::getFlashmessages',
'layoutclass' => 'VuFind\View\Helper\Bootstrap3\Factory::getLayoutClass',
),
'invokables' => array(
'highlight' => 'VuFind\View\Helper\Bootstrap3\Highlight',
'search' => 'VuFind\View\Helper\Bootstrap3\Search',
'vudl' => 'VuDL\View\Helper\Bootstrap3\VuDL',
)
)
);