first commit
This commit is contained in:
63
class/highcharts/config.php
Normal file
63
class/highcharts/config.php
Normal file
@@ -0,0 +1,63 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Paths and names for the javascript libraries needed by higcharts/highstock charts
|
||||
*/
|
||||
$jsFiles = array(
|
||||
'jQuery' => array(
|
||||
'name' => 'jquery.min.js',
|
||||
'path' => '//ajax.googleapis.com/ajax/libs/jquery/1.7.2/'
|
||||
),
|
||||
|
||||
'mootools' => array(
|
||||
'name' => 'mootools-yui-compressed.js',
|
||||
'path' => '//ajax.googleapis.com/ajax/libs/mootools/1.4.5/'
|
||||
),
|
||||
|
||||
'prototype' => array(
|
||||
'name' => 'prototype.js',
|
||||
'path' => '//ajax.googleapis.com/ajax/libs/prototype/1.7.0.0/'
|
||||
),
|
||||
|
||||
'highcharts' => array(
|
||||
'name' => 'highcharts.js',
|
||||
'path' => '//code.highcharts.com/4.1/'
|
||||
),
|
||||
|
||||
'highchartsMootoolsAdapter' => array(
|
||||
'name' => 'mootools-adapter.js',
|
||||
'path' => '//code.highcharts.com/adapters/'
|
||||
),
|
||||
|
||||
'highchartsPrototypeAdapter' => array(
|
||||
'name' => 'prototype-adapter.js',
|
||||
'path' => '//code.highcharts.com/adapters/'
|
||||
),
|
||||
|
||||
'highstock' => array(
|
||||
'name' => 'highstock.js',
|
||||
'path' => '//code.highcharts.com/stock/'
|
||||
),
|
||||
|
||||
'highstockMootoolsAdapter' => array(
|
||||
'name' => 'mootools-adapter.js',
|
||||
'path' => '//code.highcharts.com/stock/adapters/'
|
||||
),
|
||||
|
||||
'highstockPrototypeAdapter' => array(
|
||||
'name' => 'prototype-adapter.js',
|
||||
'path' => '//code.highcharts.com/stock/adapters/'
|
||||
),
|
||||
|
||||
//Extra scripts used by Highcharts 3.0 charts
|
||||
'extra' => array(
|
||||
'highcharts-more' => array(
|
||||
'name' => 'highcharts-more.js',
|
||||
'path' => '//code.highcharts.com/'
|
||||
),
|
||||
'exporting' => array(
|
||||
'name' => 'exporting.js',
|
||||
'path' => '//code.highcharts.com/modules/'
|
||||
),
|
||||
)
|
||||
);
|
||||
Reference in New Issue
Block a user