source: branches/mvc/Application/Config/ConfigSample.php

Last change on this file was 47, checked in by chronos, 10 years ago
  • Odstraněno: Zbytečná PHP ukončovací značka "?>" z konce všech souborů.
  • Property svn:executable set to *
File size: 576 bytes
Line 
1<?php
2
3$Config['Application'] = array
4(
5 'AddNewValueUrl' => 'http://localhost/dev/statistic/?Module=Measure&amp;Action=Add',
6 'Debug' => 0,
7 'DivisionCount' => 500,
8 'LevelReducing' => 5,
9 'MaxLevel' => 4,
10 'ReferenceTime' => 0,
11 'ImageWidth' => 750,
12 'ImageHeight' => 200,
13 'ValueToImageHeigthCoefficient' => 0.9,
14 'FontFileName' => 'arial.ttf',
15 'FontSize' => 10,
16 'DefaultVariables' => array
17 (
18 'TimeStart' => time() - 3600 * 24,
19 'TimeEnd' => time(),
20 'Measure' => 1,
21 'Period' => 'day',
22 'TimeSpecify' => 0,
23 'Differential' => 0,
24 ),
25);
Note: See TracBrowser for help on using the repository browser.