blob: ca1ec772911f373e2defc80d0a79802ec34f9818 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?php
return array(
'modules' => array(
'theme' => array(
'class' => 'System.Web.UI.TThemeManager',
'properties' => array(
'BasePath' => 'Quickstart.themes',
'BaseUrl' => '../quickstart/themes',
),
),
),
'pages' => array(
'properties' => array(
'MasterClass' => 'Application.pages.Manual.Layout',
'Theme' => 'PradoSoft',
),
),
);
|