First commit
This commit is contained in:
commit
c6e2478c40
13918 changed files with 2303184 additions and 0 deletions
|
@ -0,0 +1,10 @@
|
|||
***************
|
||||
** JS Folder **
|
||||
***************
|
||||
|
||||
Here are some Javascript libraries used on the code or samples.
|
||||
|
||||
- swfobject.js
|
||||
|
||||
SWFObject v2.2 <http://code.google.com/p/swfobject/>
|
||||
is released under the MIT License <http://www.opensource.org/licenses/mit-license.php>
|
|
@ -0,0 +1,461 @@
|
|||
/*
|
||||
http://www.JSON.org/json2.js
|
||||
2008-03-24
|
||||
|
||||
Public Domain.
|
||||
|
||||
NO WARRANTY EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK.
|
||||
|
||||
See http://www.JSON.org/js.html
|
||||
|
||||
This file creates a global JSON object containing three methods: stringify,
|
||||
parse, and quote.
|
||||
|
||||
|
||||
JSON.stringify(value, replacer, space)
|
||||
value any JavaScript value, usually an object or array.
|
||||
|
||||
replacer an optional parameter that determines how object
|
||||
values are stringified for objects without a toJSON
|
||||
method. It can be a function or an array.
|
||||
|
||||
space an optional parameter that specifies the indentation
|
||||
of nested structures. If it is omitted, the text will
|
||||
be packed without extra whitespace. If it is a number,
|
||||
it will specify the number of spaces to indent at each
|
||||
level. If it is a string (such as '\t'), it contains the
|
||||
characters used to indent at each level.
|
||||
|
||||
This method produces a JSON text from a JavaScript value.
|
||||
|
||||
When an object value is found, if the object contains a toJSON
|
||||
method, its toJSON method will be called and the result will be
|
||||
stringified. A toJSON method does not serialize: it returns the
|
||||
value represented by the name/value pair that should be serialized,
|
||||
or undefined if nothing should be serialized. The toJSON method will
|
||||
be passed the key associated with the value, and this will be bound
|
||||
to the object holding the key.
|
||||
|
||||
This is the toJSON method added to Dates:
|
||||
|
||||
function toJSON(key) {
|
||||
return this.getUTCFullYear() + '-' +
|
||||
f(this.getUTCMonth() + 1) + '-' +
|
||||
f(this.getUTCDate()) + 'T' +
|
||||
f(this.getUTCHours()) + ':' +
|
||||
f(this.getUTCMinutes()) + ':' +
|
||||
f(this.getUTCSeconds()) + 'Z';
|
||||
}
|
||||
|
||||
You can provide an optional replacer method. It will be passed the
|
||||
key and value of each member, with this bound to the containing
|
||||
object. The value that is returned from your method will be
|
||||
serialized. If your method returns undefined, then the member will
|
||||
be excluded from the serialization.
|
||||
|
||||
If no replacer parameter is provided, then a default replacer
|
||||
will be used:
|
||||
|
||||
function replacer(key, value) {
|
||||
return Object.hasOwnProperty.call(this, key) ?
|
||||
value : undefined;
|
||||
}
|
||||
|
||||
The default replacer is passed the key and value for each item in
|
||||
the structure. It excludes inherited members.
|
||||
|
||||
If the replacer parameter is an array, then it will be used to
|
||||
select the members to be serialized. It filters the results such
|
||||
that only members with keys listed in the replacer array are
|
||||
stringified.
|
||||
|
||||
Values that do not have JSON representaions, such as undefined or
|
||||
functions, will not be serialized. Such values in objects will be
|
||||
dropped; in arrays they will be replaced with null. You can use
|
||||
a replacer function to replace those with JSON values.
|
||||
JSON.stringify(undefined) returns undefined.
|
||||
|
||||
The optional space parameter produces a stringification of the value
|
||||
that is filled with line breaks and indentation to make it easier to
|
||||
read.
|
||||
|
||||
If the space parameter is a non-empty string, then that string will
|
||||
be used for indentation. If the space parameter is a number, then
|
||||
then indentation will be that many spaces.
|
||||
|
||||
Example:
|
||||
|
||||
text = JSON.stringify(['e', {pluribus: 'unum'}]);
|
||||
// text is '["e",{"pluribus":"unum"}]'
|
||||
|
||||
|
||||
text = JSON.stringify(['e', {pluribus: 'unum'}], null, '\t');
|
||||
// text is '[\n\t"e",\n\t{\n\t\t"pluribus": "unum"\n\t}\n]'
|
||||
|
||||
|
||||
JSON.parse(text, reviver)
|
||||
This method parses a JSON text to produce an object or array.
|
||||
It can throw a SyntaxError exception.
|
||||
|
||||
The optional reviver parameter is a function that can filter and
|
||||
transform the results. It receives each of the keys and values,
|
||||
and its return value is used instead of the original value.
|
||||
If it returns what it received, then the structure is not modified.
|
||||
If it returns undefined then the member is deleted.
|
||||
|
||||
Example:
|
||||
|
||||
// Parse the text. Values that look like ISO date strings will
|
||||
// be converted to Date objects.
|
||||
|
||||
myData = JSON.parse(text, function (key, value) {
|
||||
var a;
|
||||
if (typeof value === 'string') {
|
||||
a =
|
||||
/^(\d{4})-(\d{2})-(\d{2})T(\d{2}):(\d{2}):(\d{2}(?:\.\d*)?)Z$/.exec(value);
|
||||
if (a) {
|
||||
return new Date(Date.UTC(+a[1], +a[2] - 1, +a[3], +a[4],
|
||||
+a[5], +a[6]));
|
||||
}
|
||||
}
|
||||
return value;
|
||||
});
|
||||
|
||||
|
||||
JSON.quote(text)
|
||||
This method wraps a string in quotes, escaping some characters
|
||||
as needed.
|
||||
|
||||
|
||||
This is a reference implementation. You are free to copy, modify, or
|
||||
redistribute.
|
||||
|
||||
USE YOUR OWN COPY. IT IS EXTREMELY UNWISE TO LOAD THIRD PARTY
|
||||
CODE INTO YOUR PAGES.
|
||||
*/
|
||||
|
||||
/*jslint regexp: true, forin: true, evil: true */
|
||||
|
||||
/*global JSON */
|
||||
|
||||
/*members "", "\b", "\t", "\n", "\f", "\r", "\"", JSON, "\\", apply,
|
||||
call, charCodeAt, floor, getUTCDate, getUTCFullYear, getUTCHours,
|
||||
getUTCMinutes, getUTCMonth, getUTCSeconds, hasOwnProperty, join, length,
|
||||
parse, propertyIsEnumerable, prototype, push, quote, replace, stringify,
|
||||
test, toJSON, toString
|
||||
*/
|
||||
|
||||
if (!this.JSON) {
|
||||
|
||||
// Create a JSON object only if one does not already exist. We create the
|
||||
// object in a closure to avoid global variables.
|
||||
|
||||
JSON = function () {
|
||||
|
||||
function f(n) { // Format integers to have at least two digits.
|
||||
return n < 10 ? '0' + n : n;
|
||||
}
|
||||
|
||||
Date.prototype.toJSON = function () {
|
||||
|
||||
// Eventually, this method will be based on the date.toISOString method.
|
||||
|
||||
return this.getUTCFullYear() + '-' +
|
||||
f(this.getUTCMonth() + 1) + '-' +
|
||||
f(this.getUTCDate()) + 'T' +
|
||||
f(this.getUTCHours()) + ':' +
|
||||
f(this.getUTCMinutes()) + ':' +
|
||||
f(this.getUTCSeconds()) + 'Z';
|
||||
};
|
||||
|
||||
|
||||
var escapeable = /["\\\x00-\x1f\x7f-\x9f]/g,
|
||||
gap,
|
||||
indent,
|
||||
meta = { // table of character substitutions
|
||||
'\b': '\\b',
|
||||
'\t': '\\t',
|
||||
'\n': '\\n',
|
||||
'\f': '\\f',
|
||||
'\r': '\\r',
|
||||
'"' : '\\"',
|
||||
'\\': '\\\\'
|
||||
},
|
||||
rep;
|
||||
|
||||
|
||||
function quote(string) {
|
||||
|
||||
// If the string contains no control characters, no quote characters, and no
|
||||
// backslash characters, then we can safely slap some quotes around it.
|
||||
// Otherwise we must also replace the offending characters with safe escape
|
||||
// sequences.
|
||||
|
||||
return escapeable.test(string) ?
|
||||
'"' + string.replace(escapeable, function (a) {
|
||||
var c = meta[a];
|
||||
if (typeof c === 'string') {
|
||||
return c;
|
||||
}
|
||||
c = a.charCodeAt();
|
||||
return '\\u00' + Math.floor(c / 16).toString(16) +
|
||||
(c % 16).toString(16);
|
||||
}) + '"' :
|
||||
'"' + string + '"';
|
||||
}
|
||||
|
||||
|
||||
function str(key, holder) {
|
||||
|
||||
// Produce a string from holder[key].
|
||||
|
||||
var i, // The loop counter.
|
||||
k, // The member key.
|
||||
v, // The member value.
|
||||
length,
|
||||
mind = gap,
|
||||
partial,
|
||||
value = holder[key];
|
||||
|
||||
// If the value has a toJSON method, call it to obtain a replacement value.
|
||||
|
||||
if (value && typeof value === 'object' &&
|
||||
typeof value.toJSON === 'function') {
|
||||
value = value.toJSON(key);
|
||||
}
|
||||
|
||||
// If we were called with a replacer function, then call the replacer to
|
||||
// obtain a replacement value.
|
||||
|
||||
if (typeof rep === 'function') {
|
||||
value = rep.call(holder, key, value);
|
||||
}
|
||||
|
||||
// What happens next depends on the value's type.
|
||||
|
||||
switch (typeof value) {
|
||||
case 'string':
|
||||
return quote(value);
|
||||
|
||||
case 'number':
|
||||
|
||||
// JSON numbers must be finite. Encode non-finite numbers as null.
|
||||
|
||||
return isFinite(value) ? String(value) : 'null';
|
||||
|
||||
case 'boolean':
|
||||
case 'null':
|
||||
|
||||
// If the value is a boolean or null, convert it to a string. Note:
|
||||
// typeof null does not produce 'null'. The case is included here in
|
||||
// the remote chance that this gets fixed someday.
|
||||
|
||||
return String(value);
|
||||
|
||||
// If the type is 'object', we might be dealing with an object or an array or
|
||||
// null.
|
||||
|
||||
case 'object':
|
||||
|
||||
// Due to a specification blunder in ECMAScript, typeof null is 'object',
|
||||
// so watch out for that case.
|
||||
|
||||
if (!value) {
|
||||
return 'null';
|
||||
}
|
||||
|
||||
// Make an array to hold the partial results of stringifying this object value.
|
||||
|
||||
gap += indent;
|
||||
partial = [];
|
||||
|
||||
// If the object has a dontEnum length property, we'll treat it as an array.
|
||||
|
||||
if (typeof value.length === 'number' &&
|
||||
!(value.propertyIsEnumerable('length'))) {
|
||||
|
||||
// The object is an array. Stringify every element. Use null as a placeholder
|
||||
// for non-JSON values.
|
||||
|
||||
length = value.length;
|
||||
for (i = 0; i < length; i += 1) {
|
||||
partial[i] = str(i, value) || 'null';
|
||||
}
|
||||
|
||||
// Join all of the elements together, separated with commas, and wrap them in
|
||||
// brackets.
|
||||
|
||||
v = partial.length === 0 ? '[]' :
|
||||
gap ? '[\n' + gap + partial.join(',\n' + gap) +
|
||||
'\n' + mind + ']' :
|
||||
'[' + partial.join(',') + ']';
|
||||
gap = mind;
|
||||
return v;
|
||||
}
|
||||
|
||||
// If the replacer is an array, use it to select the members to be stringified.
|
||||
|
||||
if (typeof rep === 'object') {
|
||||
length = rep.length;
|
||||
for (i = 0; i < length; i += 1) {
|
||||
k = rep[i];
|
||||
if (typeof k === 'string') {
|
||||
v = str(k, value, rep);
|
||||
if (v) {
|
||||
partial.push(quote(k) + (gap ? ': ' : ':') + v);
|
||||
}
|
||||
}
|
||||
}
|
||||
} else {
|
||||
|
||||
// Otherwise, iterate through all of the keys in the object.
|
||||
|
||||
for (k in value) {
|
||||
v = str(k, value, rep);
|
||||
if (v) {
|
||||
partial.push(quote(k) + (gap ? ': ' : ':') + v);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Join all of the member texts together, separated with commas,
|
||||
// and wrap them in braces.
|
||||
|
||||
v = partial.length === 0 ? '{}' :
|
||||
gap ? '{\n' + gap + partial.join(',\n' + gap) +
|
||||
'\n' + mind + '}' :
|
||||
'{' + partial.join(',') + '}';
|
||||
gap = mind;
|
||||
return v;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// Return the JSON object containing the stringify, parse, and quote methods.
|
||||
|
||||
return {
|
||||
stringify: function (value, replacer, space) {
|
||||
|
||||
// The stringify method takes a value and an optional replacer, and an optional
|
||||
// space parameter, and returns a JSON text. The replacer can be a function
|
||||
// that can replace values, or an array of strings that will select the keys.
|
||||
// A default replacer method can be provided. Use of the space parameter can
|
||||
// produce text that is more easily readable.
|
||||
|
||||
var i;
|
||||
gap = '';
|
||||
indent = '';
|
||||
if (space) {
|
||||
|
||||
// If the space parameter is a number, make an indent string containing that
|
||||
// many spaces.
|
||||
|
||||
if (typeof space === 'number') {
|
||||
for (i = 0; i < space; i += 1) {
|
||||
indent += ' ';
|
||||
}
|
||||
|
||||
// If the space parameter is a string, it will be used as the indent string.
|
||||
|
||||
} else if (typeof space === 'string') {
|
||||
indent = space;
|
||||
}
|
||||
}
|
||||
|
||||
// If there is no replacer parameter, use the default replacer.
|
||||
|
||||
if (!replacer) {
|
||||
rep = function (key, value) {
|
||||
if (!Object.hasOwnProperty.call(this, key)) {
|
||||
return undefined;
|
||||
}
|
||||
return value;
|
||||
};
|
||||
|
||||
// The replacer can be a function or an array. Otherwise, throw an error.
|
||||
|
||||
} else if (typeof replacer === 'function' ||
|
||||
(typeof replacer === 'object' &&
|
||||
typeof replacer.length === 'number')) {
|
||||
rep = replacer;
|
||||
} else {
|
||||
throw new Error('JSON.stringify');
|
||||
}
|
||||
|
||||
// Make a fake root object containing our value under the key of ''.
|
||||
// Return the result of stringifying the value.
|
||||
|
||||
return str('', {'': value});
|
||||
},
|
||||
|
||||
|
||||
parse: function (text, reviver) {
|
||||
|
||||
// The parse method takes a text and an optional reviver function, and returns
|
||||
// a JavaScript value if the text is a valid JSON text.
|
||||
|
||||
var j;
|
||||
|
||||
function walk(holder, key) {
|
||||
|
||||
// The walk method is used to recursively walk the resulting structure so
|
||||
// that modifications can be made.
|
||||
|
||||
var k, v, value = holder[key];
|
||||
if (value && typeof value === 'object') {
|
||||
for (k in value) {
|
||||
if (Object.hasOwnProperty.call(value, k)) {
|
||||
v = walk(value, k);
|
||||
if (v !== undefined) {
|
||||
value[k] = v;
|
||||
} else {
|
||||
delete value[k];
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
return reviver.call(holder, key, value);
|
||||
}
|
||||
|
||||
|
||||
// Parsing happens in three stages. In the first stage, we run the text against
|
||||
// regular expressions that look for non-JSON patterns. We are especially
|
||||
// concerned with '()' and 'new' because they can cause invocation, and '='
|
||||
// because it can cause mutation. But just to be safe, we want to reject all
|
||||
// unexpected forms.
|
||||
|
||||
// We split the first stage into 4 regexp operations in order to work around
|
||||
// crippling inefficiencies in IE's and Safari's regexp engines. First we
|
||||
// replace all backslash pairs with '@' (a non-JSON character). Second, we
|
||||
// replace all simple value tokens with ']' characters. Third, we delete all
|
||||
// open brackets that follow a colon or comma or that begin the text. Finally,
|
||||
// we look to see that the remaining characters are only whitespace or ']' or
|
||||
// ',' or ':' or '{' or '}'. If that is so, then the text is safe for eval.
|
||||
|
||||
if (/^[\],:{}\s]*$/.test(text.replace(/\\["\\\/bfnrtu]/g, '@').
|
||||
replace(/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g, ']').
|
||||
replace(/(?:^|:|,)(?:\s*\[)+/g, ''))) {
|
||||
|
||||
// In the second stage we use the eval function to compile the text into a
|
||||
// JavaScript structure. The '{' operator is subject to a syntactic ambiguity
|
||||
// in JavaScript: it can begin a block or an object literal. We wrap the text
|
||||
// in parens to eliminate the ambiguity.
|
||||
|
||||
j = eval('(' + text + ')');
|
||||
|
||||
// In the optional third stage, we recursively walk the new structure, passing
|
||||
// each name/value pair to a reviver function for possible transformation.
|
||||
|
||||
return typeof reviver === 'function' ?
|
||||
walk({'': j}, '') : j;
|
||||
}
|
||||
|
||||
// If the text is not JSON parseable, then a SyntaxError is thrown.
|
||||
|
||||
throw new SyntaxError('JSON.parse');
|
||||
},
|
||||
|
||||
quote: quote
|
||||
};
|
||||
}();
|
||||
}
|
|
@ -0,0 +1,24 @@
|
|||
|
||||
if(!this.JSON){JSON=function(){function f(n){return n<10?'0'+n:n;}
|
||||
Date.prototype.toJSON=function(){return this.getUTCFullYear()+'-'+
|
||||
f(this.getUTCMonth()+1)+'-'+
|
||||
f(this.getUTCDate())+'T'+
|
||||
f(this.getUTCHours())+':'+
|
||||
f(this.getUTCMinutes())+':'+
|
||||
f(this.getUTCSeconds())+'Z';};var escapeable=/["\\\x00-\x1f\x7f-\x9f]/g,gap,indent,meta={'\b':'\\b','\t':'\\t','\n':'\\n','\f':'\\f','\r':'\\r','"':'\\"','\\':'\\\\'},rep;function quote(string){return escapeable.test(string)?'"'+string.replace(escapeable,function(a){var c=meta[a];if(typeof c==='string'){return c;}
|
||||
c=a.charCodeAt();return'\\u00'+Math.floor(c/16).toString(16)+
|
||||
(c%16).toString(16);})+'"':'"'+string+'"';}
|
||||
function str(key,holder){var i,k,v,length,mind=gap,partial,value=holder[key];if(value&&typeof value==='object'&&typeof value.toJSON==='function'){value=value.toJSON(key);}
|
||||
if(typeof rep==='function'){value=rep.call(holder,key,value);}
|
||||
switch(typeof value){case'string':return quote(value);case'number':return isFinite(value)?String(value):'null';case'boolean':case'null':return String(value);case'object':if(!value){return'null';}
|
||||
gap+=indent;partial=[];if(typeof value.length==='number'&&!(value.propertyIsEnumerable('length'))){length=value.length;for(i=0;i<length;i+=1){partial[i]=str(i,value)||'null';}
|
||||
v=partial.length===0?'[]':gap?'[\n'+gap+partial.join(',\n'+gap)+'\n'+mind+']':'['+partial.join(',')+']';gap=mind;return v;}
|
||||
if(typeof rep==='object'){length=rep.length;for(i=0;i<length;i+=1){k=rep[i];if(typeof k==='string'){v=str(k,value,rep);if(v){partial.push(quote(k)+(gap?': ':':')+v);}}}}else{for(k in value){v=str(k,value,rep);if(v){partial.push(quote(k)+(gap?': ':':')+v);}}}
|
||||
v=partial.length===0?'{}':gap?'{\n'+gap+partial.join(',\n'+gap)+'\n'+mind+'}':'{'+partial.join(',')+'}';gap=mind;return v;}}
|
||||
return{stringify:function(value,replacer,space){var i;gap='';indent='';if(space){if(typeof space==='number'){for(i=0;i<space;i+=1){indent+=' ';}}else if(typeof space==='string'){indent=space;}}
|
||||
if(!replacer){rep=function(key,value){if(!Object.hasOwnProperty.call(this,key)){return undefined;}
|
||||
return value;};}else if(typeof replacer==='function'||(typeof replacer==='object'&&typeof replacer.length==='number')){rep=replacer;}else{throw new Error('JSON.stringify');}
|
||||
return str('',{'':value});},parse:function(text,reviver){var j;function walk(holder,key){var k,v,value=holder[key];if(value&&typeof value==='object'){for(k in value){if(Object.hasOwnProperty.call(value,k)){v=walk(value,k);if(v!==undefined){value[k]=v;}else{delete value[k];}}}}
|
||||
return reviver.call(holder,key,value);}
|
||||
if(/^[\],:{}\s]*$/.test(text.replace(/\\["\\\/bfnrtu]/g,'@').replace(/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,']').replace(/(?:^|:|,)(?:\s*\[)+/g,''))){j=eval('('+text+')');return typeof reviver==='function'?walk({'':j},''):j;}
|
||||
throw new SyntaxError('JSON.parse');},quote:quote};}();}
|
File diff suppressed because one or more lines are too long
777
sites/all/modules/civicrm/packages/OpenFlashChart/js/swfobject_src.js
Executable file
777
sites/all/modules/civicrm/packages/OpenFlashChart/js/swfobject_src.js
Executable file
|
@ -0,0 +1,777 @@
|
|||
/*! SWFObject v2.2 <http://code.google.com/p/swfobject/>
|
||||
is released under the MIT License <http://www.opensource.org/licenses/mit-license.php>
|
||||
*/
|
||||
|
||||
var swfobject = function() {
|
||||
|
||||
var UNDEF = "undefined",
|
||||
OBJECT = "object",
|
||||
SHOCKWAVE_FLASH = "Shockwave Flash",
|
||||
SHOCKWAVE_FLASH_AX = "ShockwaveFlash.ShockwaveFlash",
|
||||
FLASH_MIME_TYPE = "application/x-shockwave-flash",
|
||||
EXPRESS_INSTALL_ID = "SWFObjectExprInst",
|
||||
ON_READY_STATE_CHANGE = "onreadystatechange",
|
||||
|
||||
win = window,
|
||||
doc = document,
|
||||
nav = navigator,
|
||||
|
||||
plugin = false,
|
||||
domLoadFnArr = [main],
|
||||
regObjArr = [],
|
||||
objIdArr = [],
|
||||
listenersArr = [],
|
||||
storedAltContent,
|
||||
storedAltContentId,
|
||||
storedCallbackFn,
|
||||
storedCallbackObj,
|
||||
isDomLoaded = false,
|
||||
isExpressInstallActive = false,
|
||||
dynamicStylesheet,
|
||||
dynamicStylesheetMedia,
|
||||
autoHideShow = true,
|
||||
|
||||
/* Centralized function for browser feature detection
|
||||
- User agent string detection is only used when no good alternative is possible
|
||||
- Is executed directly for optimal performance
|
||||
*/
|
||||
ua = function() {
|
||||
var w3cdom = typeof doc.getElementById != UNDEF && typeof doc.getElementsByTagName != UNDEF && typeof doc.createElement != UNDEF,
|
||||
u = nav.userAgent.toLowerCase(),
|
||||
p = nav.platform.toLowerCase(),
|
||||
windows = p ? /win/.test(p) : /win/.test(u),
|
||||
mac = p ? /mac/.test(p) : /mac/.test(u),
|
||||
webkit = /webkit/.test(u) ? parseFloat(u.replace(/^.*webkit\/(\d+(\.\d+)?).*$/, "$1")) : false, // returns either the webkit version or false if not webkit
|
||||
ie = !+"\v1", // feature detection based on Andrea Giammarchi's solution: http://webreflection.blogspot.com/2009/01/32-bytes-to-know-if-your-browser-is-ie.html
|
||||
playerVersion = [0,0,0],
|
||||
d = null;
|
||||
if (typeof nav.plugins != UNDEF && typeof nav.plugins[SHOCKWAVE_FLASH] == OBJECT) {
|
||||
d = nav.plugins[SHOCKWAVE_FLASH].description;
|
||||
if (d && !(typeof nav.mimeTypes != UNDEF && nav.mimeTypes[FLASH_MIME_TYPE] && !nav.mimeTypes[FLASH_MIME_TYPE].enabledPlugin)) { // navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin indicates whether plug-ins are enabled or disabled in Safari 3+
|
||||
plugin = true;
|
||||
ie = false; // cascaded feature detection for Internet Explorer
|
||||
d = d.replace(/^.*\s+(\S+\s+\S+$)/, "$1");
|
||||
playerVersion[0] = parseInt(d.replace(/^(.*)\..*$/, "$1"), 10);
|
||||
playerVersion[1] = parseInt(d.replace(/^.*\.(.*)\s.*$/, "$1"), 10);
|
||||
playerVersion[2] = /[a-zA-Z]/.test(d) ? parseInt(d.replace(/^.*[a-zA-Z]+(.*)$/, "$1"), 10) : 0;
|
||||
}
|
||||
}
|
||||
else if (typeof win.ActiveXObject != UNDEF) {
|
||||
try {
|
||||
var a = new ActiveXObject(SHOCKWAVE_FLASH_AX);
|
||||
if (a) { // a will return null when ActiveX is disabled
|
||||
d = a.GetVariable("$version");
|
||||
if (d) {
|
||||
ie = true; // cascaded feature detection for Internet Explorer
|
||||
d = d.split(" ")[1].split(",");
|
||||
playerVersion = [parseInt(d[0], 10), parseInt(d[1], 10), parseInt(d[2], 10)];
|
||||
}
|
||||
}
|
||||
}
|
||||
catch(e) {}
|
||||
}
|
||||
return { w3:w3cdom, pv:playerVersion, wk:webkit, ie:ie, win:windows, mac:mac };
|
||||
}(),
|
||||
|
||||
/* Cross-browser onDomLoad
|
||||
- Will fire an event as soon as the DOM of a web page is loaded
|
||||
- Internet Explorer workaround based on Diego Perini's solution: http://javascript.nwbox.com/IEContentLoaded/
|
||||
- Regular onload serves as fallback
|
||||
*/
|
||||
onDomLoad = function() {
|
||||
if (!ua.w3) { return; }
|
||||
if ((typeof doc.readyState != UNDEF && doc.readyState == "complete") || (typeof doc.readyState == UNDEF && (doc.getElementsByTagName("body")[0] || doc.body))) { // function is fired after onload, e.g. when script is inserted dynamically
|
||||
callDomLoadFunctions();
|
||||
}
|
||||
if (!isDomLoaded) {
|
||||
if (typeof doc.addEventListener != UNDEF) {
|
||||
doc.addEventListener("DOMContentLoaded", callDomLoadFunctions, false);
|
||||
}
|
||||
if (ua.ie && ua.win) {
|
||||
doc.attachEvent(ON_READY_STATE_CHANGE, function() {
|
||||
if (doc.readyState == "complete") {
|
||||
doc.detachEvent(ON_READY_STATE_CHANGE, arguments.callee);
|
||||
callDomLoadFunctions();
|
||||
}
|
||||
});
|
||||
if (win == top) { // if not inside an iframe
|
||||
(function(){
|
||||
if (isDomLoaded) { return; }
|
||||
try {
|
||||
doc.documentElement.doScroll("left");
|
||||
}
|
||||
catch(e) {
|
||||
setTimeout(arguments.callee, 0);
|
||||
return;
|
||||
}
|
||||
callDomLoadFunctions();
|
||||
})();
|
||||
}
|
||||
}
|
||||
if (ua.wk) {
|
||||
(function(){
|
||||
if (isDomLoaded) { return; }
|
||||
if (!/loaded|complete/.test(doc.readyState)) {
|
||||
setTimeout(arguments.callee, 0);
|
||||
return;
|
||||
}
|
||||
callDomLoadFunctions();
|
||||
})();
|
||||
}
|
||||
addLoadEvent(callDomLoadFunctions);
|
||||
}
|
||||
}();
|
||||
|
||||
function callDomLoadFunctions() {
|
||||
if (isDomLoaded) { return; }
|
||||
try { // test if we can really add/remove elements to/from the DOM; we don't want to fire it too early
|
||||
var t = doc.getElementsByTagName("body")[0].appendChild(createElement("span"));
|
||||
t.parentNode.removeChild(t);
|
||||
}
|
||||
catch (e) { return; }
|
||||
isDomLoaded = true;
|
||||
var dl = domLoadFnArr.length;
|
||||
for (var i = 0; i < dl; i++) {
|
||||
domLoadFnArr[i]();
|
||||
}
|
||||
}
|
||||
|
||||
function addDomLoadEvent(fn) {
|
||||
if (isDomLoaded) {
|
||||
fn();
|
||||
}
|
||||
else {
|
||||
domLoadFnArr[domLoadFnArr.length] = fn; // Array.push() is only available in IE5.5+
|
||||
}
|
||||
}
|
||||
|
||||
/* Cross-browser onload
|
||||
- Based on James Edwards' solution: http://brothercake.com/site/resources/scripts/onload/
|
||||
- Will fire an event as soon as a web page including all of its assets are loaded
|
||||
*/
|
||||
function addLoadEvent(fn) {
|
||||
if (typeof win.addEventListener != UNDEF) {
|
||||
win.addEventListener("load", fn, false);
|
||||
}
|
||||
else if (typeof doc.addEventListener != UNDEF) {
|
||||
doc.addEventListener("load", fn, false);
|
||||
}
|
||||
else if (typeof win.attachEvent != UNDEF) {
|
||||
addListener(win, "onload", fn);
|
||||
}
|
||||
else if (typeof win.onload == "function") {
|
||||
var fnOld = win.onload;
|
||||
win.onload = function() {
|
||||
fnOld();
|
||||
fn();
|
||||
};
|
||||
}
|
||||
else {
|
||||
win.onload = fn;
|
||||
}
|
||||
}
|
||||
|
||||
/* Main function
|
||||
- Will preferably execute onDomLoad, otherwise onload (as a fallback)
|
||||
*/
|
||||
function main() {
|
||||
if (plugin) {
|
||||
testPlayerVersion();
|
||||
}
|
||||
else {
|
||||
matchVersions();
|
||||
}
|
||||
}
|
||||
|
||||
/* Detect the Flash Player version for non-Internet Explorer browsers
|
||||
- Detecting the plug-in version via the object element is more precise than using the plugins collection item's description:
|
||||
a. Both release and build numbers can be detected
|
||||
b. Avoid wrong descriptions by corrupt installers provided by Adobe
|
||||
c. Avoid wrong descriptions by multiple Flash Player entries in the plugin Array, caused by incorrect browser imports
|
||||
- Disadvantage of this method is that it depends on the availability of the DOM, while the plugins collection is immediately available
|
||||
*/
|
||||
function testPlayerVersion() {
|
||||
var b = doc.getElementsByTagName("body")[0];
|
||||
var o = createElement(OBJECT);
|
||||
o.setAttribute("type", FLASH_MIME_TYPE);
|
||||
var t = b.appendChild(o);
|
||||
if (t) {
|
||||
var counter = 0;
|
||||
(function(){
|
||||
if (typeof t.GetVariable != UNDEF) {
|
||||
var d = t.GetVariable("$version");
|
||||
if (d) {
|
||||
d = d.split(" ")[1].split(",");
|
||||
ua.pv = [parseInt(d[0], 10), parseInt(d[1], 10), parseInt(d[2], 10)];
|
||||
}
|
||||
}
|
||||
else if (counter < 10) {
|
||||
counter++;
|
||||
setTimeout(arguments.callee, 10);
|
||||
return;
|
||||
}
|
||||
b.removeChild(o);
|
||||
t = null;
|
||||
matchVersions();
|
||||
})();
|
||||
}
|
||||
else {
|
||||
matchVersions();
|
||||
}
|
||||
}
|
||||
|
||||
/* Perform Flash Player and SWF version matching; static publishing only
|
||||
*/
|
||||
function matchVersions() {
|
||||
var rl = regObjArr.length;
|
||||
if (rl > 0) {
|
||||
for (var i = 0; i < rl; i++) { // for each registered object element
|
||||
var id = regObjArr[i].id;
|
||||
var cb = regObjArr[i].callbackFn;
|
||||
var cbObj = {success:false, id:id};
|
||||
if (ua.pv[0] > 0) {
|
||||
var obj = getElementById(id);
|
||||
if (obj) {
|
||||
if (hasPlayerVersion(regObjArr[i].swfVersion) && !(ua.wk && ua.wk < 312)) { // Flash Player version >= published SWF version: Houston, we have a match!
|
||||
setVisibility(id, true);
|
||||
if (cb) {
|
||||
cbObj.success = true;
|
||||
cbObj.ref = getObjectById(id);
|
||||
cb(cbObj);
|
||||
}
|
||||
}
|
||||
else if (regObjArr[i].expressInstall && canExpressInstall()) { // show the Adobe Express Install dialog if set by the web page author and if supported
|
||||
var att = {};
|
||||
att.data = regObjArr[i].expressInstall;
|
||||
att.width = obj.getAttribute("width") || "0";
|
||||
att.height = obj.getAttribute("height") || "0";
|
||||
if (obj.getAttribute("class")) { att.styleclass = obj.getAttribute("class"); }
|
||||
if (obj.getAttribute("align")) { att.align = obj.getAttribute("align"); }
|
||||
// parse HTML object param element's name-value pairs
|
||||
var par = {};
|
||||
var p = obj.getElementsByTagName("param");
|
||||
var pl = p.length;
|
||||
for (var j = 0; j < pl; j++) {
|
||||
if (p[j].getAttribute("name").toLowerCase() != "movie") {
|
||||
par[p[j].getAttribute("name")] = p[j].getAttribute("value");
|
||||
}
|
||||
}
|
||||
showExpressInstall(att, par, id, cb);
|
||||
}
|
||||
else { // Flash Player and SWF version mismatch or an older Webkit engine that ignores the HTML object element's nested param elements: display alternative content instead of SWF
|
||||
displayAltContent(obj);
|
||||
if (cb) { cb(cbObj); }
|
||||
}
|
||||
}
|
||||
}
|
||||
else { // if no Flash Player is installed or the fp version cannot be detected we let the HTML object element do its job (either show a SWF or alternative content)
|
||||
setVisibility(id, true);
|
||||
if (cb) {
|
||||
var o = getObjectById(id); // test whether there is an HTML object element or not
|
||||
if (o && typeof o.SetVariable != UNDEF) {
|
||||
cbObj.success = true;
|
||||
cbObj.ref = o;
|
||||
}
|
||||
cb(cbObj);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function getObjectById(objectIdStr) {
|
||||
var r = null;
|
||||
var o = getElementById(objectIdStr);
|
||||
if (o && o.nodeName == "OBJECT") {
|
||||
if (typeof o.SetVariable != UNDEF) {
|
||||
r = o;
|
||||
}
|
||||
else {
|
||||
var n = o.getElementsByTagName(OBJECT)[0];
|
||||
if (n) {
|
||||
r = n;
|
||||
}
|
||||
}
|
||||
}
|
||||
return r;
|
||||
}
|
||||
|
||||
/* Requirements for Adobe Express Install
|
||||
- only one instance can be active at a time
|
||||
- fp 6.0.65 or higher
|
||||
- Win/Mac OS only
|
||||
- no Webkit engines older than version 312
|
||||
*/
|
||||
function canExpressInstall() {
|
||||
return !isExpressInstallActive && hasPlayerVersion("6.0.65") && (ua.win || ua.mac) && !(ua.wk && ua.wk < 312);
|
||||
}
|
||||
|
||||
/* Show the Adobe Express Install dialog
|
||||
- Reference: http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=6a253b75
|
||||
*/
|
||||
function showExpressInstall(att, par, replaceElemIdStr, callbackFn) {
|
||||
isExpressInstallActive = true;
|
||||
storedCallbackFn = callbackFn || null;
|
||||
storedCallbackObj = {success:false, id:replaceElemIdStr};
|
||||
var obj = getElementById(replaceElemIdStr);
|
||||
if (obj) {
|
||||
if (obj.nodeName == "OBJECT") { // static publishing
|
||||
storedAltContent = abstractAltContent(obj);
|
||||
storedAltContentId = null;
|
||||
}
|
||||
else { // dynamic publishing
|
||||
storedAltContent = obj;
|
||||
storedAltContentId = replaceElemIdStr;
|
||||
}
|
||||
att.id = EXPRESS_INSTALL_ID;
|
||||
if (typeof att.width == UNDEF || (!/%$/.test(att.width) && parseInt(att.width, 10) < 310)) { att.width = "310"; }
|
||||
if (typeof att.height == UNDEF || (!/%$/.test(att.height) && parseInt(att.height, 10) < 137)) { att.height = "137"; }
|
||||
doc.title = doc.title.slice(0, 47) + " - Flash Player Installation";
|
||||
var pt = ua.ie && ua.win ? "ActiveX" : "PlugIn",
|
||||
fv = "MMredirectURL=" + win.location.toString().replace(/&/g,"%26") + "&MMplayerType=" + pt + "&MMdoctitle=" + doc.title;
|
||||
if (typeof par.flashvars != UNDEF) {
|
||||
par.flashvars += "&" + fv;
|
||||
}
|
||||
else {
|
||||
par.flashvars = fv;
|
||||
}
|
||||
// IE only: when a SWF is loading (AND: not available in cache) wait for the readyState of the object element to become 4 before removing it,
|
||||
// because you cannot properly cancel a loading SWF file without breaking browser load references, also obj.onreadystatechange doesn't work
|
||||
if (ua.ie && ua.win && obj.readyState != 4) {
|
||||
var newObj = createElement("div");
|
||||
replaceElemIdStr += "SWFObjectNew";
|
||||
newObj.setAttribute("id", replaceElemIdStr);
|
||||
obj.parentNode.insertBefore(newObj, obj); // insert placeholder div that will be replaced by the object element that loads expressinstall.swf
|
||||
obj.style.display = "none";
|
||||
(function(){
|
||||
if (obj.readyState == 4) {
|
||||
obj.parentNode.removeChild(obj);
|
||||
}
|
||||
else {
|
||||
setTimeout(arguments.callee, 10);
|
||||
}
|
||||
})();
|
||||
}
|
||||
createSWF(att, par, replaceElemIdStr);
|
||||
}
|
||||
}
|
||||
|
||||
/* Functions to abstract and display alternative content
|
||||
*/
|
||||
function displayAltContent(obj) {
|
||||
if (ua.ie && ua.win && obj.readyState != 4) {
|
||||
// IE only: when a SWF is loading (AND: not available in cache) wait for the readyState of the object element to become 4 before removing it,
|
||||
// because you cannot properly cancel a loading SWF file without breaking browser load references, also obj.onreadystatechange doesn't work
|
||||
var el = createElement("div");
|
||||
obj.parentNode.insertBefore(el, obj); // insert placeholder div that will be replaced by the alternative content
|
||||
el.parentNode.replaceChild(abstractAltContent(obj), el);
|
||||
obj.style.display = "none";
|
||||
(function(){
|
||||
if (obj.readyState == 4) {
|
||||
obj.parentNode.removeChild(obj);
|
||||
}
|
||||
else {
|
||||
setTimeout(arguments.callee, 10);
|
||||
}
|
||||
})();
|
||||
}
|
||||
else {
|
||||
obj.parentNode.replaceChild(abstractAltContent(obj), obj);
|
||||
}
|
||||
}
|
||||
|
||||
function abstractAltContent(obj) {
|
||||
var ac = createElement("div");
|
||||
if (ua.win && ua.ie) {
|
||||
ac.innerHTML = obj.innerHTML;
|
||||
}
|
||||
else {
|
||||
var nestedObj = obj.getElementsByTagName(OBJECT)[0];
|
||||
if (nestedObj) {
|
||||
var c = nestedObj.childNodes;
|
||||
if (c) {
|
||||
var cl = c.length;
|
||||
for (var i = 0; i < cl; i++) {
|
||||
if (!(c[i].nodeType == 1 && c[i].nodeName == "PARAM") && !(c[i].nodeType == 8)) {
|
||||
ac.appendChild(c[i].cloneNode(true));
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
return ac;
|
||||
}
|
||||
|
||||
/* Cross-browser dynamic SWF creation
|
||||
*/
|
||||
function createSWF(attObj, parObj, id) {
|
||||
var r, el = getElementById(id);
|
||||
if (ua.wk && ua.wk < 312) { return r; }
|
||||
if (el) {
|
||||
if (typeof attObj.id == UNDEF) { // if no 'id' is defined for the object element, it will inherit the 'id' from the alternative content
|
||||
attObj.id = id;
|
||||
}
|
||||
if (ua.ie && ua.win) { // Internet Explorer + the HTML object element + W3C DOM methods do not combine: fall back to outerHTML
|
||||
var att = "";
|
||||
for (var i in attObj) {
|
||||
if (attObj[i] != Object.prototype[i]) { // filter out prototype additions from other potential libraries
|
||||
if (i.toLowerCase() == "data") {
|
||||
parObj.movie = attObj[i];
|
||||
}
|
||||
else if (i.toLowerCase() == "styleclass") { // 'class' is an ECMA4 reserved keyword
|
||||
att += ' class="' + attObj[i] + '"';
|
||||
}
|
||||
else if (i.toLowerCase() != "classid") {
|
||||
att += ' ' + i + '="' + attObj[i] + '"';
|
||||
}
|
||||
}
|
||||
}
|
||||
var par = "";
|
||||
for (var j in parObj) {
|
||||
if (parObj[j] != Object.prototype[j]) { // filter out prototype additions from other potential libraries
|
||||
par += '<param name="' + j + '" value="' + parObj[j] + '" />';
|
||||
}
|
||||
}
|
||||
el.outerHTML = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"' + att + '>' + par + '</object>';
|
||||
objIdArr[objIdArr.length] = attObj.id; // stored to fix object 'leaks' on unload (dynamic publishing only)
|
||||
r = getElementById(attObj.id);
|
||||
}
|
||||
else { // well-behaving browsers
|
||||
var o = createElement(OBJECT);
|
||||
o.setAttribute("type", FLASH_MIME_TYPE);
|
||||
for (var m in attObj) {
|
||||
if (attObj[m] != Object.prototype[m]) { // filter out prototype additions from other potential libraries
|
||||
if (m.toLowerCase() == "styleclass") { // 'class' is an ECMA4 reserved keyword
|
||||
o.setAttribute("class", attObj[m]);
|
||||
}
|
||||
else if (m.toLowerCase() != "classid") { // filter out IE specific attribute
|
||||
o.setAttribute(m, attObj[m]);
|
||||
}
|
||||
}
|
||||
}
|
||||
for (var n in parObj) {
|
||||
if (parObj[n] != Object.prototype[n] && n.toLowerCase() != "movie") { // filter out prototype additions from other potential libraries and IE specific param element
|
||||
createObjParam(o, n, parObj[n]);
|
||||
}
|
||||
}
|
||||
el.parentNode.replaceChild(o, el);
|
||||
r = o;
|
||||
}
|
||||
}
|
||||
return r;
|
||||
}
|
||||
|
||||
function createObjParam(el, pName, pValue) {
|
||||
var p = createElement("param");
|
||||
p.setAttribute("name", pName);
|
||||
p.setAttribute("value", pValue);
|
||||
el.appendChild(p);
|
||||
}
|
||||
|
||||
/* Cross-browser SWF removal
|
||||
- Especially needed to safely and completely remove a SWF in Internet Explorer
|
||||
*/
|
||||
function removeSWF(id) {
|
||||
var obj = getElementById(id);
|
||||
if (obj && obj.nodeName == "OBJECT") {
|
||||
if (ua.ie && ua.win) {
|
||||
obj.style.display = "none";
|
||||
(function(){
|
||||
if (obj.readyState == 4) {
|
||||
removeObjectInIE(id);
|
||||
}
|
||||
else {
|
||||
setTimeout(arguments.callee, 10);
|
||||
}
|
||||
})();
|
||||
}
|
||||
else {
|
||||
obj.parentNode.removeChild(obj);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function removeObjectInIE(id) {
|
||||
var obj = getElementById(id);
|
||||
if (obj) {
|
||||
for (var i in obj) {
|
||||
if (typeof obj[i] == "function") {
|
||||
obj[i] = null;
|
||||
}
|
||||
}
|
||||
obj.parentNode.removeChild(obj);
|
||||
}
|
||||
}
|
||||
|
||||
/* Functions to optimize JavaScript compression
|
||||
*/
|
||||
function getElementById(id) {
|
||||
var el = null;
|
||||
try {
|
||||
el = doc.getElementById(id);
|
||||
}
|
||||
catch (e) {}
|
||||
return el;
|
||||
}
|
||||
|
||||
function createElement(el) {
|
||||
return doc.createElement(el);
|
||||
}
|
||||
|
||||
/* Updated attachEvent function for Internet Explorer
|
||||
- Stores attachEvent information in an Array, so on unload the detachEvent functions can be called to avoid memory leaks
|
||||
*/
|
||||
function addListener(target, eventType, fn) {
|
||||
target.attachEvent(eventType, fn);
|
||||
listenersArr[listenersArr.length] = [target, eventType, fn];
|
||||
}
|
||||
|
||||
/* Flash Player and SWF content version matching
|
||||
*/
|
||||
function hasPlayerVersion(rv) {
|
||||
var pv = ua.pv, v = rv.split(".");
|
||||
v[0] = parseInt(v[0], 10);
|
||||
v[1] = parseInt(v[1], 10) || 0; // supports short notation, e.g. "9" instead of "9.0.0"
|
||||
v[2] = parseInt(v[2], 10) || 0;
|
||||
return (pv[0] > v[0] || (pv[0] == v[0] && pv[1] > v[1]) || (pv[0] == v[0] && pv[1] == v[1] && pv[2] >= v[2])) ? true : false;
|
||||
}
|
||||
|
||||
/* Cross-browser dynamic CSS creation
|
||||
- Based on Bobby van der Sluis' solution: http://www.bobbyvandersluis.com/articles/dynamicCSS.php
|
||||
*/
|
||||
function createCSS(sel, decl, media, newStyle) {
|
||||
if (ua.ie && ua.mac) { return; }
|
||||
var h = doc.getElementsByTagName("head")[0];
|
||||
if (!h) { return; } // to also support badly authored HTML pages that lack a head element
|
||||
var m = (media && typeof media == "string") ? media : "screen";
|
||||
if (newStyle) {
|
||||
dynamicStylesheet = null;
|
||||
dynamicStylesheetMedia = null;
|
||||
}
|
||||
if (!dynamicStylesheet || dynamicStylesheetMedia != m) {
|
||||
// create dynamic stylesheet + get a global reference to it
|
||||
var s = createElement("style");
|
||||
s.setAttribute("type", "text/css");
|
||||
s.setAttribute("media", m);
|
||||
dynamicStylesheet = h.appendChild(s);
|
||||
if (ua.ie && ua.win && typeof doc.styleSheets != UNDEF && doc.styleSheets.length > 0) {
|
||||
dynamicStylesheet = doc.styleSheets[doc.styleSheets.length - 1];
|
||||
}
|
||||
dynamicStylesheetMedia = m;
|
||||
}
|
||||
// add style rule
|
||||
if (ua.ie && ua.win) {
|
||||
if (dynamicStylesheet && typeof dynamicStylesheet.addRule == OBJECT) {
|
||||
dynamicStylesheet.addRule(sel, decl);
|
||||
}
|
||||
}
|
||||
else {
|
||||
if (dynamicStylesheet && typeof doc.createTextNode != UNDEF) {
|
||||
dynamicStylesheet.appendChild(doc.createTextNode(sel + " {" + decl + "}"));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function setVisibility(id, isVisible) {
|
||||
if (!autoHideShow) { return; }
|
||||
var v = isVisible ? "visible" : "hidden";
|
||||
if (isDomLoaded && getElementById(id)) {
|
||||
getElementById(id).style.visibility = v;
|
||||
}
|
||||
else {
|
||||
createCSS("#" + id, "visibility:" + v);
|
||||
}
|
||||
}
|
||||
|
||||
/* Filter to avoid XSS attacks
|
||||
*/
|
||||
function urlEncodeIfNecessary(s) {
|
||||
var regex = /[\\\"<>\.;]/;
|
||||
var hasBadChars = regex.exec(s) != null;
|
||||
return hasBadChars && typeof encodeURIComponent != UNDEF ? encodeURIComponent(s) : s;
|
||||
}
|
||||
|
||||
/* Release memory to avoid memory leaks caused by closures, fix hanging audio/video threads and force open sockets/NetConnections to disconnect (Internet Explorer only)
|
||||
*/
|
||||
var cleanup = function() {
|
||||
if (ua.ie && ua.win) {
|
||||
window.attachEvent("onunload", function() {
|
||||
// remove listeners to avoid memory leaks
|
||||
var ll = listenersArr.length;
|
||||
for (var i = 0; i < ll; i++) {
|
||||
listenersArr[i][0].detachEvent(listenersArr[i][1], listenersArr[i][2]);
|
||||
}
|
||||
// cleanup dynamically embedded objects to fix audio/video threads and force open sockets and NetConnections to disconnect
|
||||
var il = objIdArr.length;
|
||||
for (var j = 0; j < il; j++) {
|
||||
removeSWF(objIdArr[j]);
|
||||
}
|
||||
// cleanup library's main closures to avoid memory leaks
|
||||
for (var k in ua) {
|
||||
ua[k] = null;
|
||||
}
|
||||
ua = null;
|
||||
for (var l in swfobject) {
|
||||
swfobject[l] = null;
|
||||
}
|
||||
swfobject = null;
|
||||
});
|
||||
}
|
||||
}();
|
||||
|
||||
return {
|
||||
/* Public API
|
||||
- Reference: http://code.google.com/p/swfobject/wiki/documentation
|
||||
*/
|
||||
registerObject: function(objectIdStr, swfVersionStr, xiSwfUrlStr, callbackFn) {
|
||||
if (ua.w3 && objectIdStr && swfVersionStr) {
|
||||
var regObj = {};
|
||||
regObj.id = objectIdStr;
|
||||
regObj.swfVersion = swfVersionStr;
|
||||
regObj.expressInstall = xiSwfUrlStr;
|
||||
regObj.callbackFn = callbackFn;
|
||||
regObjArr[regObjArr.length] = regObj;
|
||||
setVisibility(objectIdStr, false);
|
||||
}
|
||||
else if (callbackFn) {
|
||||
callbackFn({success:false, id:objectIdStr});
|
||||
}
|
||||
},
|
||||
|
||||
getObjectById: function(objectIdStr) {
|
||||
if (ua.w3) {
|
||||
return getObjectById(objectIdStr);
|
||||
}
|
||||
},
|
||||
|
||||
embedSWF: function(swfUrlStr, replaceElemIdStr, widthStr, heightStr, swfVersionStr, xiSwfUrlStr, flashvarsObj, parObj, attObj, callbackFn) {
|
||||
var callbackObj = {success:false, id:replaceElemIdStr};
|
||||
if (ua.w3 && !(ua.wk && ua.wk < 312) && swfUrlStr && replaceElemIdStr && widthStr && heightStr && swfVersionStr) {
|
||||
setVisibility(replaceElemIdStr, false);
|
||||
addDomLoadEvent(function() {
|
||||
widthStr += ""; // auto-convert to string
|
||||
heightStr += "";
|
||||
var att = {};
|
||||
if (attObj && typeof attObj === OBJECT) {
|
||||
for (var i in attObj) { // copy object to avoid the use of references, because web authors often reuse attObj for multiple SWFs
|
||||
att[i] = attObj[i];
|
||||
}
|
||||
}
|
||||
att.data = swfUrlStr;
|
||||
att.width = widthStr;
|
||||
att.height = heightStr;
|
||||
var par = {};
|
||||
if (parObj && typeof parObj === OBJECT) {
|
||||
for (var j in parObj) { // copy object to avoid the use of references, because web authors often reuse parObj for multiple SWFs
|
||||
par[j] = parObj[j];
|
||||
}
|
||||
}
|
||||
if (flashvarsObj && typeof flashvarsObj === OBJECT) {
|
||||
for (var k in flashvarsObj) { // copy object to avoid the use of references, because web authors often reuse flashvarsObj for multiple SWFs
|
||||
if (typeof par.flashvars != UNDEF) {
|
||||
par.flashvars += "&" + k + "=" + flashvarsObj[k];
|
||||
}
|
||||
else {
|
||||
par.flashvars = k + "=" + flashvarsObj[k];
|
||||
}
|
||||
}
|
||||
}
|
||||
if (hasPlayerVersion(swfVersionStr)) { // create SWF
|
||||
var obj = createSWF(att, par, replaceElemIdStr);
|
||||
if (att.id == replaceElemIdStr) {
|
||||
setVisibility(replaceElemIdStr, true);
|
||||
}
|
||||
callbackObj.success = true;
|
||||
callbackObj.ref = obj;
|
||||
}
|
||||
else if (xiSwfUrlStr && canExpressInstall()) { // show Adobe Express Install
|
||||
att.data = xiSwfUrlStr;
|
||||
showExpressInstall(att, par, replaceElemIdStr, callbackFn);
|
||||
return;
|
||||
}
|
||||
else { // show alternative content
|
||||
setVisibility(replaceElemIdStr, true);
|
||||
}
|
||||
if (callbackFn) { callbackFn(callbackObj); }
|
||||
});
|
||||
}
|
||||
else if (callbackFn) { callbackFn(callbackObj); }
|
||||
},
|
||||
|
||||
switchOffAutoHideShow: function() {
|
||||
autoHideShow = false;
|
||||
},
|
||||
|
||||
ua: ua,
|
||||
|
||||
getFlashPlayerVersion: function() {
|
||||
return { major:ua.pv[0], minor:ua.pv[1], release:ua.pv[2] };
|
||||
},
|
||||
|
||||
hasFlashPlayerVersion: hasPlayerVersion,
|
||||
|
||||
createSWF: function(attObj, parObj, replaceElemIdStr) {
|
||||
if (ua.w3) {
|
||||
return createSWF(attObj, parObj, replaceElemIdStr);
|
||||
}
|
||||
else {
|
||||
return undefined;
|
||||
}
|
||||
},
|
||||
|
||||
showExpressInstall: function(att, par, replaceElemIdStr, callbackFn) {
|
||||
if (ua.w3 && canExpressInstall()) {
|
||||
showExpressInstall(att, par, replaceElemIdStr, callbackFn);
|
||||
}
|
||||
},
|
||||
|
||||
removeSWF: function(objElemIdStr) {
|
||||
if (ua.w3) {
|
||||
removeSWF(objElemIdStr);
|
||||
}
|
||||
},
|
||||
|
||||
createCSS: function(selStr, declStr, mediaStr, newStyleBoolean) {
|
||||
if (ua.w3) {
|
||||
createCSS(selStr, declStr, mediaStr, newStyleBoolean);
|
||||
}
|
||||
},
|
||||
|
||||
addDomLoadEvent: addDomLoadEvent,
|
||||
|
||||
addLoadEvent: addLoadEvent,
|
||||
|
||||
getQueryParamValue: function(param) {
|
||||
var q = doc.location.search || doc.location.hash;
|
||||
if (q) {
|
||||
if (/\?/.test(q)) { q = q.split("?")[1]; } // strip question mark
|
||||
if (param == null) {
|
||||
return urlEncodeIfNecessary(q);
|
||||
}
|
||||
var pairs = q.split("&");
|
||||
for (var i = 0; i < pairs.length; i++) {
|
||||
if (pairs[i].substring(0, pairs[i].indexOf("=")) == param) {
|
||||
return urlEncodeIfNecessary(pairs[i].substring((pairs[i].indexOf("=") + 1)));
|
||||
}
|
||||
}
|
||||
}
|
||||
return "";
|
||||
},
|
||||
|
||||
// For internal usage only
|
||||
expressInstallCallback: function() {
|
||||
if (isExpressInstallActive) {
|
||||
var obj = getElementById(EXPRESS_INSTALL_ID);
|
||||
if (obj && storedAltContent) {
|
||||
obj.parentNode.replaceChild(storedAltContent, obj);
|
||||
if (storedAltContentId) {
|
||||
setVisibility(storedAltContentId, true);
|
||||
if (ua.ie && ua.win) { storedAltContent.style.display = "block"; }
|
||||
}
|
||||
if (storedCallbackFn) { storedCallbackFn(storedCallbackObj); }
|
||||
}
|
||||
isExpressInstallActive = false;
|
||||
}
|
||||
}
|
||||
};
|
||||
}();
|
Binary file not shown.
|
@ -0,0 +1,806 @@
|
|||
<?php
|
||||
/* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */
|
||||
|
||||
/**
|
||||
* Converts to and from JSON format.
|
||||
*
|
||||
* JSON (JavaScript Object Notation) is a lightweight data-interchange
|
||||
* format. It is easy for humans to read and write. It is easy for machines
|
||||
* to parse and generate. It is based on a subset of the JavaScript
|
||||
* Programming Language, Standard ECMA-262 3rd Edition - December 1999.
|
||||
* This feature can also be found in Python. JSON is a text format that is
|
||||
* completely language independent but uses conventions that are familiar
|
||||
* to programmers of the C-family of languages, including C, C++, C#, Java,
|
||||
* JavaScript, Perl, TCL, and many others. These properties make JSON an
|
||||
* ideal data-interchange language.
|
||||
*
|
||||
* This package provides a simple encoder and decoder for JSON notation. It
|
||||
* is intended for use with client-side Javascript applications that make
|
||||
* use of HTTPRequest to perform server communication functions - data can
|
||||
* be encoded into JSON notation for use in a client-side javascript, or
|
||||
* decoded from incoming Javascript requests. JSON format is native to
|
||||
* Javascript, and can be directly eval()'ed with no further parsing
|
||||
* overhead
|
||||
*
|
||||
* All strings should be in ASCII or UTF-8 format!
|
||||
*
|
||||
* LICENSE: Redistribution and use in source and binary forms, with or
|
||||
* without modification, are permitted provided that the following
|
||||
* conditions are met: Redistributions of source code must retain the
|
||||
* above copyright notice, this list of conditions and the following
|
||||
* disclaimer. Redistributions in binary form must reproduce the above
|
||||
* copyright notice, this list of conditions and the following disclaimer
|
||||
* in the documentation and/or other materials provided with the
|
||||
* distribution.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
|
||||
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
|
||||
* NO EVENT SHALL CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
||||
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
||||
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
||||
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
||||
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
|
||||
* TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
|
||||
* USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
|
||||
* DAMAGE.
|
||||
*
|
||||
* @category
|
||||
* @package Services_JSON
|
||||
* @author Michal Migurski <mike-json@teczno.com>
|
||||
* @author Matt Knapp <mdknapp[at]gmail[dot]com>
|
||||
* @author Brett Stimmerman <brettstimmerman[at]gmail[dot]com>
|
||||
* @copyright 2005 Michal Migurski
|
||||
* @version CVS: $Id: JSON.php,v 1.31 2006/06/28 05:54:17 migurski Exp $
|
||||
* @license http://www.opensource.org/licenses/bsd-license.php
|
||||
* @link http://pear.php.net/pepr/pepr-proposal-show.php?id=198
|
||||
*/
|
||||
|
||||
/**
|
||||
* Marker constant for Services_JSON::decode(), used to flag stack state
|
||||
*/
|
||||
define('SERVICES_JSON_SLICE', 1);
|
||||
|
||||
/**
|
||||
* Marker constant for Services_JSON::decode(), used to flag stack state
|
||||
*/
|
||||
define('SERVICES_JSON_IN_STR', 2);
|
||||
|
||||
/**
|
||||
* Marker constant for Services_JSON::decode(), used to flag stack state
|
||||
*/
|
||||
define('SERVICES_JSON_IN_ARR', 3);
|
||||
|
||||
/**
|
||||
* Marker constant for Services_JSON::decode(), used to flag stack state
|
||||
*/
|
||||
define('SERVICES_JSON_IN_OBJ', 4);
|
||||
|
||||
/**
|
||||
* Marker constant for Services_JSON::decode(), used to flag stack state
|
||||
*/
|
||||
define('SERVICES_JSON_IN_CMT', 5);
|
||||
|
||||
/**
|
||||
* Behavior switch for Services_JSON::decode()
|
||||
*/
|
||||
define('SERVICES_JSON_LOOSE_TYPE', 16);
|
||||
|
||||
/**
|
||||
* Behavior switch for Services_JSON::decode()
|
||||
*/
|
||||
define('SERVICES_JSON_SUPPRESS_ERRORS', 32);
|
||||
|
||||
/**
|
||||
* Converts to and from JSON format.
|
||||
*
|
||||
* Brief example of use:
|
||||
*
|
||||
* <code>
|
||||
* // create a new instance of Services_JSON
|
||||
* $json = new Services_JSON();
|
||||
*
|
||||
* // convert a complexe value to JSON notation, and send it to the browser
|
||||
* $value = array('foo', 'bar', array(1, 2, 'baz'), array(3, array(4)));
|
||||
* $output = $json->encode($value);
|
||||
*
|
||||
* print($output);
|
||||
* // prints: ["foo","bar",[1,2,"baz"],[3,[4]]]
|
||||
*
|
||||
* // accept incoming POST data, assumed to be in JSON notation
|
||||
* $input = file_get_contents('php://input', 1000000);
|
||||
* $value = $json->decode($input);
|
||||
* </code>
|
||||
*/
|
||||
class Services_JSON
|
||||
{
|
||||
/**
|
||||
* constructs a new JSON instance
|
||||
*
|
||||
* @param int $use object behavior flags; combine with boolean-OR
|
||||
*
|
||||
* possible values:
|
||||
* - SERVICES_JSON_LOOSE_TYPE: loose typing.
|
||||
* "{...}" syntax creates associative arrays
|
||||
* instead of objects in decode().
|
||||
* - SERVICES_JSON_SUPPRESS_ERRORS: error suppression.
|
||||
* Values which can't be encoded (e.g. resources)
|
||||
* appear as NULL instead of throwing errors.
|
||||
* By default, a deeply-nested resource will
|
||||
* bubble up with an error, so all return values
|
||||
* from encode() should be checked with isError()
|
||||
*/
|
||||
function __construct($use = 0)
|
||||
{
|
||||
$this->use = $use;
|
||||
}
|
||||
|
||||
/**
|
||||
* convert a string from one UTF-16 char to one UTF-8 char
|
||||
*
|
||||
* Normally should be handled by mb_convert_encoding, but
|
||||
* provides a slower PHP-only method for installations
|
||||
* that lack the multibye string extension.
|
||||
*
|
||||
* @param string $utf16 UTF-16 character
|
||||
* @return string UTF-8 character
|
||||
* @access private
|
||||
*/
|
||||
function utf162utf8($utf16)
|
||||
{
|
||||
// oh please oh please oh please oh please oh please
|
||||
if(function_exists('mb_convert_encoding')) {
|
||||
return mb_convert_encoding($utf16, 'UTF-8', 'UTF-16');
|
||||
}
|
||||
|
||||
$bytes = (ord($utf16{0}) << 8) | ord($utf16{1});
|
||||
|
||||
switch(true) {
|
||||
case ((0x7F & $bytes) == $bytes):
|
||||
// this case should never be reached, because we are in ASCII range
|
||||
// see: http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
|
||||
return chr(0x7F & $bytes);
|
||||
|
||||
case (0x07FF & $bytes) == $bytes:
|
||||
// return a 2-byte UTF-8 character
|
||||
// see: http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
|
||||
return chr(0xC0 | (($bytes >> 6) & 0x1F))
|
||||
. chr(0x80 | ($bytes & 0x3F));
|
||||
|
||||
case (0xFFFF & $bytes) == $bytes:
|
||||
// return a 3-byte UTF-8 character
|
||||
// see: http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
|
||||
return chr(0xE0 | (($bytes >> 12) & 0x0F))
|
||||
. chr(0x80 | (($bytes >> 6) & 0x3F))
|
||||
. chr(0x80 | ($bytes & 0x3F));
|
||||
}
|
||||
|
||||
// ignoring UTF-32 for now, sorry
|
||||
return '';
|
||||
}
|
||||
|
||||
/**
|
||||
* convert a string from one UTF-8 char to one UTF-16 char
|
||||
*
|
||||
* Normally should be handled by mb_convert_encoding, but
|
||||
* provides a slower PHP-only method for installations
|
||||
* that lack the multibye string extension.
|
||||
*
|
||||
* @param string $utf8 UTF-8 character
|
||||
* @return string UTF-16 character
|
||||
* @access private
|
||||
*/
|
||||
function utf82utf16($utf8)
|
||||
{
|
||||
// oh please oh please oh please oh please oh please
|
||||
if(function_exists('mb_convert_encoding')) {
|
||||
return mb_convert_encoding($utf8, 'UTF-16', 'UTF-8');
|
||||
}
|
||||
|
||||
switch(strlen($utf8)) {
|
||||
case 1:
|
||||
// this case should never be reached, because we are in ASCII range
|
||||
// see: http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
|
||||
return $utf8;
|
||||
|
||||
case 2:
|
||||
// return a UTF-16 character from a 2-byte UTF-8 char
|
||||
// see: http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
|
||||
return chr(0x07 & (ord($utf8{0}) >> 2))
|
||||
. chr((0xC0 & (ord($utf8{0}) << 6))
|
||||
| (0x3F & ord($utf8{1})));
|
||||
|
||||
case 3:
|
||||
// return a UTF-16 character from a 3-byte UTF-8 char
|
||||
// see: http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
|
||||
return chr((0xF0 & (ord($utf8{0}) << 4))
|
||||
| (0x0F & (ord($utf8{1}) >> 2)))
|
||||
. chr((0xC0 & (ord($utf8{1}) << 6))
|
||||
| (0x7F & ord($utf8{2})));
|
||||
}
|
||||
|
||||
// ignoring UTF-32 for now, sorry
|
||||
return '';
|
||||
}
|
||||
|
||||
/**
|
||||
* encodes an arbitrary variable into JSON format
|
||||
*
|
||||
* @param mixed $var any number, boolean, string, array, or object to be encoded.
|
||||
* see argument 1 to Services_JSON() above for array-parsing behavior.
|
||||
* if var is a strng, note that encode() always expects it
|
||||
* to be in ASCII or UTF-8 format!
|
||||
*
|
||||
* @return mixed JSON string representation of input var or an error if a problem occurs
|
||||
* @access public
|
||||
*/
|
||||
function encode($var)
|
||||
{
|
||||
switch (gettype($var)) {
|
||||
case 'boolean':
|
||||
return $var ? 'true' : 'false';
|
||||
|
||||
case 'NULL':
|
||||
return 'null';
|
||||
|
||||
case 'integer':
|
||||
return (int) $var;
|
||||
|
||||
case 'double':
|
||||
case 'float':
|
||||
return (float) $var;
|
||||
|
||||
case 'string':
|
||||
// STRINGS ARE EXPECTED TO BE IN ASCII OR UTF-8 FORMAT
|
||||
$ascii = '';
|
||||
$strlen_var = strlen($var);
|
||||
|
||||
/*
|
||||
* Iterate over every character in the string,
|
||||
* escaping with a slash or encoding to UTF-8 where necessary
|
||||
*/
|
||||
for ($c = 0; $c < $strlen_var; ++$c) {
|
||||
|
||||
$ord_var_c = ord($var{$c});
|
||||
|
||||
switch (true) {
|
||||
case $ord_var_c == 0x08:
|
||||
$ascii .= '\b';
|
||||
break;
|
||||
case $ord_var_c == 0x09:
|
||||
$ascii .= '\t';
|
||||
break;
|
||||
case $ord_var_c == 0x0A:
|
||||
$ascii .= '\n';
|
||||
break;
|
||||
case $ord_var_c == 0x0C:
|
||||
$ascii .= '\f';
|
||||
break;
|
||||
case $ord_var_c == 0x0D:
|
||||
$ascii .= '\r';
|
||||
break;
|
||||
|
||||
case $ord_var_c == 0x22:
|
||||
case $ord_var_c == 0x2F:
|
||||
case $ord_var_c == 0x5C:
|
||||
// double quote, slash, slosh
|
||||
$ascii .= '\\'.$var{$c};
|
||||
break;
|
||||
|
||||
case (($ord_var_c >= 0x20) && ($ord_var_c <= 0x7F)):
|
||||
// characters U-00000000 - U-0000007F (same as ASCII)
|
||||
$ascii .= $var{$c};
|
||||
break;
|
||||
|
||||
case (($ord_var_c & 0xE0) == 0xC0):
|
||||
// characters U-00000080 - U-000007FF, mask 110XXXXX
|
||||
// see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
|
||||
$char = pack('C*', $ord_var_c, ord($var{$c + 1}));
|
||||
$c += 1;
|
||||
$utf16 = $this->utf82utf16($char);
|
||||
$ascii .= sprintf('\u%04s', bin2hex($utf16));
|
||||
break;
|
||||
|
||||
case (($ord_var_c & 0xF0) == 0xE0):
|
||||
// characters U-00000800 - U-0000FFFF, mask 1110XXXX
|
||||
// see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
|
||||
$char = pack('C*', $ord_var_c,
|
||||
ord($var{$c + 1}),
|
||||
ord($var{$c + 2}));
|
||||
$c += 2;
|
||||
$utf16 = $this->utf82utf16($char);
|
||||
$ascii .= sprintf('\u%04s', bin2hex($utf16));
|
||||
break;
|
||||
|
||||
case (($ord_var_c & 0xF8) == 0xF0):
|
||||
// characters U-00010000 - U-001FFFFF, mask 11110XXX
|
||||
// see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
|
||||
$char = pack('C*', $ord_var_c,
|
||||
ord($var{$c + 1}),
|
||||
ord($var{$c + 2}),
|
||||
ord($var{$c + 3}));
|
||||
$c += 3;
|
||||
$utf16 = $this->utf82utf16($char);
|
||||
$ascii .= sprintf('\u%04s', bin2hex($utf16));
|
||||
break;
|
||||
|
||||
case (($ord_var_c & 0xFC) == 0xF8):
|
||||
// characters U-00200000 - U-03FFFFFF, mask 111110XX
|
||||
// see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
|
||||
$char = pack('C*', $ord_var_c,
|
||||
ord($var{$c + 1}),
|
||||
ord($var{$c + 2}),
|
||||
ord($var{$c + 3}),
|
||||
ord($var{$c + 4}));
|
||||
$c += 4;
|
||||
$utf16 = $this->utf82utf16($char);
|
||||
$ascii .= sprintf('\u%04s', bin2hex($utf16));
|
||||
break;
|
||||
|
||||
case (($ord_var_c & 0xFE) == 0xFC):
|
||||
// characters U-04000000 - U-7FFFFFFF, mask 1111110X
|
||||
// see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
|
||||
$char = pack('C*', $ord_var_c,
|
||||
ord($var{$c + 1}),
|
||||
ord($var{$c + 2}),
|
||||
ord($var{$c + 3}),
|
||||
ord($var{$c + 4}),
|
||||
ord($var{$c + 5}));
|
||||
$c += 5;
|
||||
$utf16 = $this->utf82utf16($char);
|
||||
$ascii .= sprintf('\u%04s', bin2hex($utf16));
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
return '"'.$ascii.'"';
|
||||
|
||||
case 'array':
|
||||
/*
|
||||
* As per JSON spec if any array key is not an integer
|
||||
* we must treat the the whole array as an object. We
|
||||
* also try to catch a sparsely populated associative
|
||||
* array with numeric keys here because some JS engines
|
||||
* will create an array with empty indexes up to
|
||||
* max_index which can cause memory issues and because
|
||||
* the keys, which may be relevant, will be remapped
|
||||
* otherwise.
|
||||
*
|
||||
* As per the ECMA and JSON specification an object may
|
||||
* have any string as a property. Unfortunately due to
|
||||
* a hole in the ECMA specification if the key is a
|
||||
* ECMA reserved word or starts with a digit the
|
||||
* parameter is only accessible using ECMAScript's
|
||||
* bracket notation.
|
||||
*/
|
||||
|
||||
// treat as a JSON object
|
||||
if (is_array($var) && count($var) && (array_keys($var) !== range(0, sizeof($var) - 1))) {
|
||||
$properties = array_map(array($this, 'name_value'),
|
||||
array_keys($var),
|
||||
array_values($var));
|
||||
|
||||
foreach($properties as $property) {
|
||||
if(Services_JSON::isError($property)) {
|
||||
return $property;
|
||||
}
|
||||
}
|
||||
|
||||
return '{' . join(',', $properties) . '}';
|
||||
}
|
||||
|
||||
// treat it like a regular array
|
||||
$elements = array_map(array($this, 'encode'), $var);
|
||||
|
||||
foreach($elements as $element) {
|
||||
if(Services_JSON::isError($element)) {
|
||||
return $element;
|
||||
}
|
||||
}
|
||||
|
||||
return '[' . join(',', $elements) . ']';
|
||||
|
||||
case 'object':
|
||||
$vars = get_object_vars($var);
|
||||
|
||||
$properties = array_map(array($this, 'name_value'),
|
||||
array_keys($vars),
|
||||
array_values($vars));
|
||||
|
||||
foreach($properties as $property) {
|
||||
if(Services_JSON::isError($property)) {
|
||||
return $property;
|
||||
}
|
||||
}
|
||||
|
||||
return '{' . join(',', $properties) . '}';
|
||||
|
||||
default:
|
||||
return ($this->use & SERVICES_JSON_SUPPRESS_ERRORS)
|
||||
? 'null'
|
||||
: new Services_JSON_Error(gettype($var)." can not be encoded as JSON string");
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* array-walking function for use in generating JSON-formatted name-value pairs
|
||||
*
|
||||
* @param string $name name of key to use
|
||||
* @param mixed $value reference to an array element to be encoded
|
||||
*
|
||||
* @return string JSON-formatted name-value pair, like '"name":value'
|
||||
* @access private
|
||||
*/
|
||||
function name_value($name, $value)
|
||||
{
|
||||
$encoded_value = $this->encode($value);
|
||||
|
||||
if(Services_JSON::isError($encoded_value)) {
|
||||
return $encoded_value;
|
||||
}
|
||||
|
||||
return $this->encode(strval($name)) . ':' . $encoded_value;
|
||||
}
|
||||
|
||||
/**
|
||||
* reduce a string by removing leading and trailing comments and whitespace
|
||||
*
|
||||
* @param $str string string value to strip of comments and whitespace
|
||||
*
|
||||
* @return string string value stripped of comments and whitespace
|
||||
* @access private
|
||||
*/
|
||||
function reduce_string($str)
|
||||
{
|
||||
$str = preg_replace(array(
|
||||
|
||||
// eliminate single line comments in '// ...' form
|
||||
'#^\s*//(.+)$#m',
|
||||
|
||||
// eliminate multi-line comments in '/* ... */' form, at start of string
|
||||
'#^\s*/\*(.+)\*/#Us',
|
||||
|
||||
// eliminate multi-line comments in '/* ... */' form, at end of string
|
||||
'#/\*(.+)\*/\s*$#Us'
|
||||
|
||||
), '', $str);
|
||||
|
||||
// eliminate extraneous space
|
||||
return trim($str);
|
||||
}
|
||||
|
||||
/**
|
||||
* decodes a JSON string into appropriate variable
|
||||
*
|
||||
* @param string $str JSON-formatted string
|
||||
*
|
||||
* @return mixed number, boolean, string, array, or object
|
||||
* corresponding to given JSON input string.
|
||||
* See argument 1 to Services_JSON() above for object-output behavior.
|
||||
* Note that decode() always returns strings
|
||||
* in ASCII or UTF-8 format!
|
||||
* @access public
|
||||
*/
|
||||
function decode($str)
|
||||
{
|
||||
$str = $this->reduce_string($str);
|
||||
|
||||
switch (strtolower($str)) {
|
||||
case 'true':
|
||||
return true;
|
||||
|
||||
case 'false':
|
||||
return false;
|
||||
|
||||
case 'null':
|
||||
return null;
|
||||
|
||||
default:
|
||||
$m = array();
|
||||
|
||||
if (is_numeric($str)) {
|
||||
// Lookie-loo, it's a number
|
||||
|
||||
// This would work on its own, but I'm trying to be
|
||||
// good about returning integers where appropriate:
|
||||
// return (float)$str;
|
||||
|
||||
// Return float or int, as appropriate
|
||||
return ((float)$str == (integer)$str)
|
||||
? (integer)$str
|
||||
: (float)$str;
|
||||
|
||||
} elseif (preg_match('/^("|\').*(\1)$/s', $str, $m) && $m[1] == $m[2]) {
|
||||
// STRINGS RETURNED IN UTF-8 FORMAT
|
||||
$delim = substr($str, 0, 1);
|
||||
$chrs = substr($str, 1, -1);
|
||||
$utf8 = '';
|
||||
$strlen_chrs = strlen($chrs);
|
||||
|
||||
for ($c = 0; $c < $strlen_chrs; ++$c) {
|
||||
|
||||
$substr_chrs_c_2 = substr($chrs, $c, 2);
|
||||
$ord_chrs_c = ord($chrs{$c});
|
||||
|
||||
switch (true) {
|
||||
case $substr_chrs_c_2 == '\b':
|
||||
$utf8 .= chr(0x08);
|
||||
++$c;
|
||||
break;
|
||||
case $substr_chrs_c_2 == '\t':
|
||||
$utf8 .= chr(0x09);
|
||||
++$c;
|
||||
break;
|
||||
case $substr_chrs_c_2 == '\n':
|
||||
$utf8 .= chr(0x0A);
|
||||
++$c;
|
||||
break;
|
||||
case $substr_chrs_c_2 == '\f':
|
||||
$utf8 .= chr(0x0C);
|
||||
++$c;
|
||||
break;
|
||||
case $substr_chrs_c_2 == '\r':
|
||||
$utf8 .= chr(0x0D);
|
||||
++$c;
|
||||
break;
|
||||
|
||||
case $substr_chrs_c_2 == '\\"':
|
||||
case $substr_chrs_c_2 == '\\\'':
|
||||
case $substr_chrs_c_2 == '\\\\':
|
||||
case $substr_chrs_c_2 == '\\/':
|
||||
if (($delim == '"' && $substr_chrs_c_2 != '\\\'') ||
|
||||
($delim == "'" && $substr_chrs_c_2 != '\\"')) {
|
||||
$utf8 .= $chrs{++$c};
|
||||
}
|
||||
break;
|
||||
|
||||
case preg_match('/\\\u[0-9A-F]{4}/i', substr($chrs, $c, 6)):
|
||||
// single, escaped unicode character
|
||||
$utf16 = chr(hexdec(substr($chrs, ($c + 2), 2)))
|
||||
. chr(hexdec(substr($chrs, ($c + 4), 2)));
|
||||
$utf8 .= $this->utf162utf8($utf16);
|
||||
$c += 5;
|
||||
break;
|
||||
|
||||
case ($ord_chrs_c >= 0x20) && ($ord_chrs_c <= 0x7F):
|
||||
$utf8 .= $chrs{$c};
|
||||
break;
|
||||
|
||||
case ($ord_chrs_c & 0xE0) == 0xC0:
|
||||
// characters U-00000080 - U-000007FF, mask 110XXXXX
|
||||
//see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
|
||||
$utf8 .= substr($chrs, $c, 2);
|
||||
++$c;
|
||||
break;
|
||||
|
||||
case ($ord_chrs_c & 0xF0) == 0xE0:
|
||||
// characters U-00000800 - U-0000FFFF, mask 1110XXXX
|
||||
// see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
|
||||
$utf8 .= substr($chrs, $c, 3);
|
||||
$c += 2;
|
||||
break;
|
||||
|
||||
case ($ord_chrs_c & 0xF8) == 0xF0:
|
||||
// characters U-00010000 - U-001FFFFF, mask 11110XXX
|
||||
// see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
|
||||
$utf8 .= substr($chrs, $c, 4);
|
||||
$c += 3;
|
||||
break;
|
||||
|
||||
case ($ord_chrs_c & 0xFC) == 0xF8:
|
||||
// characters U-00200000 - U-03FFFFFF, mask 111110XX
|
||||
// see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
|
||||
$utf8 .= substr($chrs, $c, 5);
|
||||
$c += 4;
|
||||
break;
|
||||
|
||||
case ($ord_chrs_c & 0xFE) == 0xFC:
|
||||
// characters U-04000000 - U-7FFFFFFF, mask 1111110X
|
||||
// see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
|
||||
$utf8 .= substr($chrs, $c, 6);
|
||||
$c += 5;
|
||||
break;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
return $utf8;
|
||||
|
||||
} elseif (preg_match('/^\[.*\]$/s', $str) || preg_match('/^\{.*\}$/s', $str)) {
|
||||
// array, or object notation
|
||||
|
||||
if ($str{0} == '[') {
|
||||
$stk = array(SERVICES_JSON_IN_ARR);
|
||||
$arr = array();
|
||||
} else {
|
||||
if ($this->use & SERVICES_JSON_LOOSE_TYPE) {
|
||||
$stk = array(SERVICES_JSON_IN_OBJ);
|
||||
$obj = array();
|
||||
} else {
|
||||
$stk = array(SERVICES_JSON_IN_OBJ);
|
||||
$obj = new stdClass();
|
||||
}
|
||||
}
|
||||
|
||||
array_push($stk, array('what' => SERVICES_JSON_SLICE,
|
||||
'where' => 0,
|
||||
'delim' => false));
|
||||
|
||||
$chrs = substr($str, 1, -1);
|
||||
$chrs = $this->reduce_string($chrs);
|
||||
|
||||
if ($chrs == '') {
|
||||
if (reset($stk) == SERVICES_JSON_IN_ARR) {
|
||||
return $arr;
|
||||
|
||||
} else {
|
||||
return $obj;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
//print("\nparsing {$chrs}\n");
|
||||
|
||||
$strlen_chrs = strlen($chrs);
|
||||
|
||||
for ($c = 0; $c <= $strlen_chrs; ++$c) {
|
||||
|
||||
$top = end($stk);
|
||||
$substr_chrs_c_2 = substr($chrs, $c, 2);
|
||||
|
||||
if (($c == $strlen_chrs) || (($chrs{$c} == ',') && ($top['what'] == SERVICES_JSON_SLICE))) {
|
||||
// found a comma that is not inside a string, array, etc.,
|
||||
// OR we've reached the end of the character list
|
||||
$slice = substr($chrs, $top['where'], ($c - $top['where']));
|
||||
array_push($stk, array('what' => SERVICES_JSON_SLICE, 'where' => ($c + 1), 'delim' => false));
|
||||
//print("Found split at {$c}: ".substr($chrs, $top['where'], (1 + $c - $top['where']))."\n");
|
||||
|
||||
if (reset($stk) == SERVICES_JSON_IN_ARR) {
|
||||
// we are in an array, so just push an element onto the stack
|
||||
array_push($arr, $this->decode($slice));
|
||||
|
||||
} elseif (reset($stk) == SERVICES_JSON_IN_OBJ) {
|
||||
// we are in an object, so figure
|
||||
// out the property name and set an
|
||||
// element in an associative array,
|
||||
// for now
|
||||
$parts = array();
|
||||
|
||||
if (preg_match('/^\s*(["\'].*[^\\\]["\'])\s*:\s*(\S.*),?$/Uis', $slice, $parts)) {
|
||||
// "name":value pair
|
||||
$key = $this->decode($parts[1]);
|
||||
$val = $this->decode($parts[2]);
|
||||
|
||||
if ($this->use & SERVICES_JSON_LOOSE_TYPE) {
|
||||
$obj[$key] = $val;
|
||||
} else {
|
||||
$obj->$key = $val;
|
||||
}
|
||||
} elseif (preg_match('/^\s*(\w+)\s*:\s*(\S.*),?$/Uis', $slice, $parts)) {
|
||||
// name:value pair, where name is unquoted
|
||||
$key = $parts[1];
|
||||
$val = $this->decode($parts[2]);
|
||||
|
||||
if ($this->use & SERVICES_JSON_LOOSE_TYPE) {
|
||||
$obj[$key] = $val;
|
||||
} else {
|
||||
$obj->$key = $val;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
} elseif ((($chrs{$c} == '"') || ($chrs{$c} == "'")) && ($top['what'] != SERVICES_JSON_IN_STR)) {
|
||||
// found a quote, and we are not inside a string
|
||||
array_push($stk, array('what' => SERVICES_JSON_IN_STR, 'where' => $c, 'delim' => $chrs{$c}));
|
||||
//print("Found start of string at {$c}\n");
|
||||
|
||||
} elseif (($chrs{$c} == $top['delim']) &&
|
||||
($top['what'] == SERVICES_JSON_IN_STR) &&
|
||||
((strlen(substr($chrs, 0, $c)) - strlen(rtrim(substr($chrs, 0, $c), '\\'))) % 2 != 1)) {
|
||||
// found a quote, we're in a string, and it's not escaped
|
||||
// we know that it's not escaped becase there is _not_ an
|
||||
// odd number of backslashes at the end of the string so far
|
||||
array_pop($stk);
|
||||
//print("Found end of string at {$c}: ".substr($chrs, $top['where'], (1 + 1 + $c - $top['where']))."\n");
|
||||
|
||||
} elseif (($chrs{$c} == '[') &&
|
||||
in_array($top['what'], array(SERVICES_JSON_SLICE, SERVICES_JSON_IN_ARR, SERVICES_JSON_IN_OBJ))) {
|
||||
// found a left-bracket, and we are in an array, object, or slice
|
||||
array_push($stk, array('what' => SERVICES_JSON_IN_ARR, 'where' => $c, 'delim' => false));
|
||||
//print("Found start of array at {$c}\n");
|
||||
|
||||
} elseif (($chrs{$c} == ']') && ($top['what'] == SERVICES_JSON_IN_ARR)) {
|
||||
// found a right-bracket, and we're in an array
|
||||
array_pop($stk);
|
||||
//print("Found end of array at {$c}: ".substr($chrs, $top['where'], (1 + $c - $top['where']))."\n");
|
||||
|
||||
} elseif (($chrs{$c} == '{') &&
|
||||
in_array($top['what'], array(SERVICES_JSON_SLICE, SERVICES_JSON_IN_ARR, SERVICES_JSON_IN_OBJ))) {
|
||||
// found a left-brace, and we are in an array, object, or slice
|
||||
array_push($stk, array('what' => SERVICES_JSON_IN_OBJ, 'where' => $c, 'delim' => false));
|
||||
//print("Found start of object at {$c}\n");
|
||||
|
||||
} elseif (($chrs{$c} == '}') && ($top['what'] == SERVICES_JSON_IN_OBJ)) {
|
||||
// found a right-brace, and we're in an object
|
||||
array_pop($stk);
|
||||
//print("Found end of object at {$c}: ".substr($chrs, $top['where'], (1 + $c - $top['where']))."\n");
|
||||
|
||||
} elseif (($substr_chrs_c_2 == '/*') &&
|
||||
in_array($top['what'], array(SERVICES_JSON_SLICE, SERVICES_JSON_IN_ARR, SERVICES_JSON_IN_OBJ))) {
|
||||
// found a comment start, and we are in an array, object, or slice
|
||||
array_push($stk, array('what' => SERVICES_JSON_IN_CMT, 'where' => $c, 'delim' => false));
|
||||
$c++;
|
||||
//print("Found start of comment at {$c}\n");
|
||||
|
||||
} elseif (($substr_chrs_c_2 == '*/') && ($top['what'] == SERVICES_JSON_IN_CMT)) {
|
||||
// found a comment end, and we're in one now
|
||||
array_pop($stk);
|
||||
$c++;
|
||||
|
||||
for ($i = $top['where']; $i <= $c; ++$i)
|
||||
$chrs = substr_replace($chrs, ' ', $i, 1);
|
||||
|
||||
//print("Found end of comment at {$c}: ".substr($chrs, $top['where'], (1 + $c - $top['where']))."\n");
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
if (reset($stk) == SERVICES_JSON_IN_ARR) {
|
||||
return $arr;
|
||||
|
||||
} elseif (reset($stk) == SERVICES_JSON_IN_OBJ) {
|
||||
return $obj;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @todo Ultimately, this should just call PEAR::isError()
|
||||
*/
|
||||
function isError($data, $code = null)
|
||||
{
|
||||
if (class_exists('pear')) {
|
||||
return PEAR::isError($data, $code);
|
||||
} elseif (is_object($data) && (get_class($data) == 'services_json_error' ||
|
||||
is_subclass_of($data, 'services_json_error'))) {
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
if (class_exists('PEAR_Error')) {
|
||||
|
||||
class Services_JSON_Error extends PEAR_Error
|
||||
{
|
||||
function __construct($message = 'unknown error', $code = null,
|
||||
$mode = null, $options = null, $userinfo = null)
|
||||
{
|
||||
parent::__construct($message, $code, $mode, $options, $userinfo);
|
||||
}
|
||||
}
|
||||
|
||||
} else {
|
||||
|
||||
/**
|
||||
* @todo Ultimately, this class shall be descended from PEAR_Error
|
||||
*/
|
||||
class Services_JSON_Error
|
||||
{
|
||||
function __construct($message = 'unknown error', $code = null,
|
||||
$mode = null, $options = null, $userinfo = null)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
?>
|
|
@ -0,0 +1,16 @@
|
|||
Open Flash Chart - PHP libraries. These help create data files for Open Flash Chart.
|
||||
Copyright (C) 2007
|
||||
|
||||
This library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
This library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with this library; if not, write to the Free Software
|
||||
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
@ -0,0 +1,231 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* A private class. All the other line-dots inherit from this.
|
||||
* Gives them all some common methods.
|
||||
*/
|
||||
class dot_base
|
||||
{
|
||||
/**
|
||||
* @param $type string
|
||||
* @param $value integer
|
||||
*/
|
||||
function __construct($type, $value=null)
|
||||
{
|
||||
$this->type = $type;
|
||||
if( isset( $value ) )
|
||||
$this->value( $value );
|
||||
}
|
||||
|
||||
/**
|
||||
* For line charts that only require a Y position
|
||||
* for each point.
|
||||
* @param $value as integer, the Y position
|
||||
*/
|
||||
function value( $value )
|
||||
{
|
||||
$this->value = $value;
|
||||
}
|
||||
|
||||
/**
|
||||
* For scatter charts that require an X and Y position for
|
||||
* each point.
|
||||
*
|
||||
* @param $x as integer
|
||||
* @param $y as integer
|
||||
*/
|
||||
function position( $x, $y )
|
||||
{
|
||||
$this->x = $x;
|
||||
$this->y = $y;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $colour is a string, HEX colour, e.g. '#FF0000' red
|
||||
*/
|
||||
function colour($colour)
|
||||
{
|
||||
$this->colour = $colour;
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* The tooltip for this dot.
|
||||
*/
|
||||
function tooltip( $tip )
|
||||
{
|
||||
$this->tip = $tip;
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $size is an integer. Size of the dot.
|
||||
*/
|
||||
function size($size)
|
||||
{
|
||||
$tmp = 'dot-size';
|
||||
$this->$tmp = $size;
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* a private method
|
||||
*/
|
||||
function type( $type )
|
||||
{
|
||||
$this->type = $type;
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $size is an integer. The size of the hollow 'halo' around the dot that masks the line.
|
||||
*/
|
||||
function halo_size( $size )
|
||||
{
|
||||
$tmp = 'halo-size';
|
||||
$this->$tmp = $size;
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $do as string. One of three options (examples):
|
||||
* - "http://example.com" - browse to this URL
|
||||
* - "https://example.com" - browse to this URL
|
||||
* - "trace:message" - print this message in the FlashDevelop debug pane
|
||||
* - all other strings will be called as Javascript functions, so a string "hello_world"
|
||||
* will call the JS function "hello_world(index)". It passes in the index of the
|
||||
* point.
|
||||
*/
|
||||
function on_click( $do )
|
||||
{
|
||||
$tmp = 'on-click';
|
||||
$this->$tmp = $do;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Draw a hollow dot
|
||||
*/
|
||||
class hollow_dot extends dot_base
|
||||
{
|
||||
function __construct($value=null)
|
||||
{
|
||||
parent::__construct( 'hollow-dot', $value );
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Draw a star
|
||||
*/
|
||||
class star extends dot_base
|
||||
{
|
||||
/**
|
||||
* The constructor, takes an optional $value
|
||||
*/
|
||||
function __construct($value=null)
|
||||
{
|
||||
parent::__construct( 'star', $value );
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $angle is an integer.
|
||||
*/
|
||||
function rotation($angle)
|
||||
{
|
||||
$this->rotation = $angle;
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $is_hollow is a boolean.
|
||||
*/
|
||||
function hollow($is_hollow)
|
||||
{
|
||||
$this->hollow = $is_hollow;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Draw a 'bow tie' shape.
|
||||
*/
|
||||
class bow extends dot_base
|
||||
{
|
||||
/**
|
||||
* The constructor, takes an optional $value
|
||||
*/
|
||||
function __construct($value=null)
|
||||
{
|
||||
parent::__construct( 'bow', $value );
|
||||
}
|
||||
|
||||
/**
|
||||
* Rotate the anchor object.
|
||||
* @param $angle is an integer.
|
||||
*/
|
||||
function rotation($angle)
|
||||
{
|
||||
$this->rotation = $angle;
|
||||
return $this;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* An <i><b>n</b></i> sided shape.
|
||||
*/
|
||||
class anchor extends dot_base
|
||||
{
|
||||
/**
|
||||
* The constructor, takes an optional $value
|
||||
*/
|
||||
function __construct($value=null)
|
||||
{
|
||||
parent::__construct( 'anchor', $value );
|
||||
}
|
||||
|
||||
/**
|
||||
* Rotate the anchor object.
|
||||
* @param $angle is an integer.
|
||||
*/
|
||||
function rotation($angle)
|
||||
{
|
||||
$this->rotation = $angle;
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $sides is an integer. Number of sides this shape has.
|
||||
*/
|
||||
function sides($sides)
|
||||
{
|
||||
$this->sides = $sides;
|
||||
return $this;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* A simple dot
|
||||
*/
|
||||
class dot extends dot_base
|
||||
{
|
||||
/**
|
||||
* The constructor, takes an optional $value
|
||||
*/
|
||||
function __construct($value=null)
|
||||
{
|
||||
parent::__construct( 'dot', $value );
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* A simple dot
|
||||
*/
|
||||
class solid_dot extends dot_base
|
||||
{
|
||||
/**
|
||||
* The constructor, takes an optional $value
|
||||
*/
|
||||
function __construct($value=null)
|
||||
{
|
||||
parent::__construct( 'solid-dot', $value );
|
||||
}
|
||||
}
|
|
@ -0,0 +1,86 @@
|
|||
<?php
|
||||
|
||||
// Pretty print some JSON
|
||||
function json_format($json)
|
||||
{
|
||||
$tab = " ";
|
||||
$new_json = "";
|
||||
$indent_level = 0;
|
||||
$in_string = false;
|
||||
|
||||
/*
|
||||
commented out by monk.e.boy 22nd May '08
|
||||
because my web server is PHP4, and
|
||||
json_* are PHP5 functions...
|
||||
|
||||
$json_obj = json_decode($json);
|
||||
|
||||
if($json_obj === false)
|
||||
return false;
|
||||
|
||||
$json = json_encode($json_obj);
|
||||
*/
|
||||
$len = strlen($json);
|
||||
|
||||
for($c = 0; $c < $len; $c++)
|
||||
{
|
||||
$char = $json[$c];
|
||||
switch($char)
|
||||
{
|
||||
case '{':
|
||||
case '[':
|
||||
if(!$in_string)
|
||||
{
|
||||
$new_json .= $char . "\n" . str_repeat($tab, $indent_level+1);
|
||||
$indent_level++;
|
||||
}
|
||||
else
|
||||
{
|
||||
$new_json .= $char;
|
||||
}
|
||||
break;
|
||||
case '}':
|
||||
case ']':
|
||||
if(!$in_string)
|
||||
{
|
||||
$indent_level--;
|
||||
$new_json .= "\n" . str_repeat($tab, $indent_level) . $char;
|
||||
}
|
||||
else
|
||||
{
|
||||
$new_json .= $char;
|
||||
}
|
||||
break;
|
||||
case ',':
|
||||
if(!$in_string)
|
||||
{
|
||||
$new_json .= ",\n" . str_repeat($tab, $indent_level);
|
||||
}
|
||||
else
|
||||
{
|
||||
$new_json .= $char;
|
||||
}
|
||||
break;
|
||||
case ':':
|
||||
if(!$in_string)
|
||||
{
|
||||
$new_json .= ": ";
|
||||
}
|
||||
else
|
||||
{
|
||||
$new_json .= $char;
|
||||
}
|
||||
break;
|
||||
case '"':
|
||||
if($c > 0 && $json[$c-1] != '\\')
|
||||
{
|
||||
$in_string = !$in_string;
|
||||
}
|
||||
default:
|
||||
$new_json .= $char;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
return $new_json;
|
||||
}
|
|
@ -0,0 +1,40 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* inherits from line
|
||||
*/
|
||||
class area extends line
|
||||
{
|
||||
function __construct()
|
||||
{
|
||||
$this->type = "area";
|
||||
}
|
||||
|
||||
/**
|
||||
* the fill colour
|
||||
*/
|
||||
function set_fill_colour( $colour )
|
||||
{
|
||||
$this->fill = $colour;
|
||||
}
|
||||
|
||||
/**
|
||||
* sugar: see set_fill_colour
|
||||
*/
|
||||
function fill_colour( $colour )
|
||||
{
|
||||
$this->set_fill_colour( $colour );
|
||||
return $this;
|
||||
}
|
||||
|
||||
function set_fill_alpha( $alpha )
|
||||
{
|
||||
$tmp = "fill-alpha";
|
||||
$this->$tmp = $alpha;
|
||||
}
|
||||
|
||||
function set_loop()
|
||||
{
|
||||
$this->loop = true;
|
||||
}
|
||||
}
|
|
@ -0,0 +1,10 @@
|
|||
<?php
|
||||
|
||||
class area_hollow extends area_base
|
||||
{
|
||||
function __construct()
|
||||
{
|
||||
$this->type = "area_hollow";
|
||||
parent::__construct();
|
||||
}
|
||||
}
|
|
@ -0,0 +1,10 @@
|
|||
<?php
|
||||
|
||||
class area_line extends area_base
|
||||
{
|
||||
function __construct()
|
||||
{
|
||||
$this->type = "area_line";
|
||||
parent::__construct();
|
||||
}
|
||||
}
|
|
@ -0,0 +1,29 @@
|
|||
<?php
|
||||
|
||||
class ofc_arrow
|
||||
{
|
||||
/**
|
||||
*@param $x as number. Start x position
|
||||
*@param $y as number. Start y position
|
||||
*@param $a as number. End x position
|
||||
*@param $b as number. End y position
|
||||
*@param $colour as string.
|
||||
*@param $barb_length as number. Length of the barbs in pixels.
|
||||
*@param $stroke as number. Width of the arrow in pixels.
|
||||
*/
|
||||
function __construct($x, $y, $a, $b, $colour, $barb_length=10, $stroke=1)
|
||||
{
|
||||
$this->type = "arrow";
|
||||
$this->start = array("x"=>$x, "y"=>$y);
|
||||
$this->end = array("x"=>$a, "y"=>$b);
|
||||
$this->colour($colour);
|
||||
$this->{"barb-length"} = $barb_length;
|
||||
$this->{"stroke"} = $stroke;
|
||||
}
|
||||
|
||||
function colour( $colour )
|
||||
{
|
||||
$this->colour = $colour;
|
||||
return $this;
|
||||
}
|
||||
}
|
|
@ -0,0 +1,52 @@
|
|||
<?php
|
||||
|
||||
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
|
||||
header("Cache-Control: no-cache");
|
||||
header("Pragma: no-cache");
|
||||
/**
|
||||
* Set the title of a chart, make one of these and pass it into
|
||||
* open_flash_chart set_title
|
||||
*/
|
||||
class inner_bg_grad
|
||||
{
|
||||
function __construct()
|
||||
{
|
||||
$this->alpha = array(1,1);
|
||||
$this->ratio = array(0,255);
|
||||
$this->angle = 90;
|
||||
$this->fillType = 'linear';
|
||||
}
|
||||
|
||||
function set_fillType( $text='linear' )
|
||||
{
|
||||
$this->fillType = $text;
|
||||
}
|
||||
|
||||
function set_colour1( $text='' )
|
||||
{
|
||||
$this->colour1 = $text;
|
||||
}
|
||||
|
||||
function set_colour2( $text='' )
|
||||
{
|
||||
$this->colour2 = $text;
|
||||
}
|
||||
|
||||
function set_alpha( $text=array(1,1) )
|
||||
{
|
||||
$this->alpha = $text;
|
||||
}
|
||||
|
||||
function set_ratio( $text=array(0,255) )
|
||||
{
|
||||
$this->ratio = $text;
|
||||
}
|
||||
|
||||
function set_angle( $text='0' )
|
||||
{
|
||||
$this->angle = $text;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
?>
|
|
@ -0,0 +1,34 @@
|
|||
<?php
|
||||
|
||||
include_once 'ofc_bar_base.php';
|
||||
|
||||
class bar_value
|
||||
{
|
||||
function __construct( $top, $bottom=null )
|
||||
{
|
||||
$this->top = $top;
|
||||
|
||||
if( isset( $bottom ) )
|
||||
$this->bottom = $bottom;
|
||||
}
|
||||
|
||||
function set_colour( $colour )
|
||||
{
|
||||
$this->colour = $colour;
|
||||
}
|
||||
|
||||
function set_tooltip( $tip )
|
||||
{
|
||||
$this->tip = $tip;
|
||||
}
|
||||
}
|
||||
|
||||
class bar extends bar_base
|
||||
{
|
||||
function __construct()
|
||||
{
|
||||
$this->type = "bar";
|
||||
parent::__construct();
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,22 @@
|
|||
<?php
|
||||
|
||||
include_once 'ofc_bar_base.php';
|
||||
|
||||
class bar_3d_value
|
||||
{
|
||||
function __construct( $top )
|
||||
{
|
||||
$this->top = $top;
|
||||
}
|
||||
|
||||
function set_colour( $colour )
|
||||
{
|
||||
$this->colour = $colour;
|
||||
}
|
||||
|
||||
function set_tooltip( $tip )
|
||||
{
|
||||
$this->tip = $tip;
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,118 @@
|
|||
<?php
|
||||
|
||||
/* this is a base class */
|
||||
|
||||
class bar_base
|
||||
{
|
||||
function __construct(){}
|
||||
|
||||
/**
|
||||
* @param $text as string the key text
|
||||
* @param $size as integer, size in pixels
|
||||
*/
|
||||
function set_key( $text, $size )
|
||||
{
|
||||
$this->text = $text;
|
||||
$tmp = 'font-size';
|
||||
$this->$tmp = $size;
|
||||
}
|
||||
|
||||
/**
|
||||
* syntatical sugar.
|
||||
*/
|
||||
function key( $text, $size )
|
||||
{
|
||||
$this->set_key( $text, $size );
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $v as an array, a mix of:
|
||||
* - a bar_value class. You can use this to customise the paramters of each bar.
|
||||
* - integer. This is the Y position of the top of the bar.
|
||||
*/
|
||||
function set_values( $v )
|
||||
{
|
||||
$this->values = $v;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the text for the line.
|
||||
*
|
||||
* @param string $text
|
||||
*/
|
||||
function set_text($text)
|
||||
{
|
||||
$this->text = $text;
|
||||
}
|
||||
|
||||
function set_key_on_click( $action )
|
||||
{
|
||||
$tmp = 'key-on-click';
|
||||
$this->$tmp = $action;
|
||||
}
|
||||
|
||||
function set_group_id( $id )
|
||||
{
|
||||
$this->id = $id;
|
||||
}
|
||||
|
||||
/**
|
||||
* see set_values
|
||||
*/
|
||||
function append_value( $v )
|
||||
{
|
||||
$this->values[] = $v;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $colour as string, a HEX colour, e.g. '#ff0000' red
|
||||
*/
|
||||
function set_colour( $colour )
|
||||
{
|
||||
$this->colour = $colour;
|
||||
}
|
||||
|
||||
/**
|
||||
*syntatical sugar
|
||||
*/
|
||||
function colour( $colour )
|
||||
{
|
||||
$this->set_colour( $colour );
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $alpha as real number (range 0 to 1), e.g. 0.5 is half transparent
|
||||
*/
|
||||
function set_alpha( $alpha )
|
||||
{
|
||||
$this->alpha = $alpha;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $tip as string, the tip to show. May contain various magic variables.
|
||||
*/
|
||||
function set_tooltip( $tip )
|
||||
{
|
||||
$this->tip = $tip;
|
||||
}
|
||||
|
||||
/**
|
||||
*@param $on_show as line_on_show object
|
||||
*/
|
||||
function set_on_show($on_show)
|
||||
{
|
||||
$this->{'on-show'} = $on_show;
|
||||
}
|
||||
|
||||
function set_on_click( $text )
|
||||
{
|
||||
$tmp = 'on-click';
|
||||
$this->$tmp = $text;
|
||||
}
|
||||
|
||||
function attach_to_right_y_axis()
|
||||
{
|
||||
$this->axis = 'right';
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,39 @@
|
|||
<?php
|
||||
|
||||
include_once 'ofc_bar_base.php';
|
||||
|
||||
class bar_filled_value extends bar_value
|
||||
{
|
||||
function __construct( $top, $bottom=null )
|
||||
{
|
||||
parent::__construct( $top, $bottom );
|
||||
}
|
||||
|
||||
function set_outline_colour( $outline_colour )
|
||||
{
|
||||
$tmp = 'outline-colour';
|
||||
$this->$tmp = $outline_colour;
|
||||
}
|
||||
}
|
||||
|
||||
class bar_filled extends bar_base
|
||||
{
|
||||
function __construct( $colour=null, $outline_colour=null )
|
||||
{
|
||||
$this->type = "bar_filled";
|
||||
parent::__construct();
|
||||
|
||||
if( isset( $colour ) )
|
||||
$this->set_colour( $colour );
|
||||
|
||||
if( isset( $outline_colour ) )
|
||||
$this->set_outline_colour( $outline_colour );
|
||||
}
|
||||
|
||||
function set_outline_colour( $outline_colour )
|
||||
{
|
||||
$tmp = 'outline-colour';
|
||||
$this->$tmp = $outline_colour;
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,131 @@
|
|||
<?php
|
||||
|
||||
include_once 'ofc_bar_base.php';
|
||||
|
||||
class bar_on_show
|
||||
{
|
||||
/**
|
||||
*@param $type as string. Can be any one of:
|
||||
* - 'pop-up'
|
||||
* - 'drop'
|
||||
* - 'fade-in'
|
||||
* - 'grow-up'
|
||||
* - 'grow-down'
|
||||
* - 'pop'
|
||||
*
|
||||
* @param $cascade as float. Cascade in seconds
|
||||
* @param $delay as float. Delay before animation starts in seconds.
|
||||
*/
|
||||
function __construct($type, $cascade, $delay)
|
||||
{
|
||||
$this->type = $type;
|
||||
$this->cascade = (float)$cascade;
|
||||
$this->delay = (float)$delay;
|
||||
}
|
||||
}
|
||||
|
||||
class bar_value
|
||||
{
|
||||
/**
|
||||
* @param $top as integer. The Y value of the top of the bar
|
||||
* @param OPTIONAL $bottom as integer. The Y value of the bottom of the bar, defaults to Y min.
|
||||
*/
|
||||
function __construct( $top, $bottom=null )
|
||||
{
|
||||
$this->top = $top;
|
||||
|
||||
if( isset( $bottom ) )
|
||||
$this->bottom = $bottom;
|
||||
}
|
||||
|
||||
function set_colour( $colour )
|
||||
{
|
||||
$this->colour = $colour;
|
||||
}
|
||||
|
||||
function set_tooltip( $tip )
|
||||
{
|
||||
$this->tip = $tip;
|
||||
}
|
||||
}
|
||||
|
||||
class bar extends bar_base
|
||||
{
|
||||
function __construct()
|
||||
{
|
||||
$this->type = "bar";
|
||||
parent::__construct();
|
||||
}
|
||||
}
|
||||
|
||||
class bar_glass extends bar_base
|
||||
{
|
||||
function __construct()
|
||||
{
|
||||
$this->type = "bar_glass";
|
||||
parent::__construct();
|
||||
}
|
||||
}
|
||||
|
||||
class bar_cylinder extends bar_base
|
||||
{
|
||||
function __construct()
|
||||
{
|
||||
$this->type = "bar_cylinder";
|
||||
parent::__construct();
|
||||
}
|
||||
}
|
||||
|
||||
class bar_cylinder_outline extends bar_base
|
||||
{
|
||||
function __construct()
|
||||
{
|
||||
$this->type = "bar_cylinder_outline";
|
||||
parent::__construct();
|
||||
}
|
||||
}
|
||||
|
||||
class bar_rounded_glass extends bar_base
|
||||
{
|
||||
function __construct()
|
||||
{
|
||||
$this->type = "bar_round_glass";
|
||||
parent::__construct();
|
||||
}
|
||||
}
|
||||
|
||||
class bar_round extends bar_base
|
||||
{
|
||||
function __construct()
|
||||
{
|
||||
$this->type = "bar_round";
|
||||
parent::__construct();
|
||||
}
|
||||
}
|
||||
|
||||
class bar_dome extends bar_base
|
||||
{
|
||||
function __construct()
|
||||
{
|
||||
$this->type = "bar_dome";
|
||||
parent::__construct();
|
||||
}
|
||||
}
|
||||
|
||||
class bar_round3d extends bar_base
|
||||
{
|
||||
function __construct()
|
||||
{
|
||||
$this->type = "bar_round3d";
|
||||
parent::__construct();
|
||||
}
|
||||
}
|
||||
|
||||
class bar_3d extends bar_base
|
||||
{
|
||||
function __construct()
|
||||
{
|
||||
$this->type = "bar_3d";
|
||||
parent::__construct();
|
||||
}
|
||||
}
|
|
@ -0,0 +1,29 @@
|
|||
<?php
|
||||
|
||||
include_once 'ofc_bar_base.php';
|
||||
|
||||
class bar_sketch extends bar_base
|
||||
{
|
||||
/**
|
||||
* @param $colour as string, HEX colour e.g. '#00ff00'
|
||||
* @param $outline_colour as string, HEX colour e.g. '#ff0000'
|
||||
* @param $fun_factor as integer, range 0 to 10. 0,1 and 2 are pretty boring.
|
||||
* 4 to 6 is a bit fun, 7 and above is lots of fun.
|
||||
*/
|
||||
function __construct( $colour, $outline_colour, $fun_factor )
|
||||
{
|
||||
$this->type = "bar_sketch";
|
||||
parent::__construct();
|
||||
|
||||
$this->set_colour( $colour );
|
||||
$this->set_outline_colour( $outline_colour );
|
||||
$this->offset = $fun_factor;
|
||||
}
|
||||
|
||||
function set_outline_colour( $outline_colour )
|
||||
{
|
||||
$tmp = 'outline-colour';
|
||||
$this->$tmp = $outline_colour;
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,55 @@
|
|||
<?php
|
||||
|
||||
include_once 'ofc_bar_base.php';
|
||||
|
||||
class bar_stack extends bar_base
|
||||
{
|
||||
function __construct()
|
||||
{
|
||||
$this->type = "bar_stack";
|
||||
parent::__construct();
|
||||
}
|
||||
|
||||
function append_stack( $v )
|
||||
{
|
||||
$this->append_value( $v );
|
||||
}
|
||||
|
||||
// an array of HEX colours strings
|
||||
// e.g. array( '#ff0000', '#00ff00' );
|
||||
function set_colours( $colours )
|
||||
{
|
||||
$this->colours = $colours;
|
||||
}
|
||||
|
||||
// an array of bar_stack_value
|
||||
function set_keys( $keys )
|
||||
{
|
||||
$this->keys = $keys;
|
||||
}
|
||||
}
|
||||
|
||||
class bar_stack_value
|
||||
{
|
||||
function __construct( $val, $colour )
|
||||
{
|
||||
$this->val = $val;
|
||||
$this->colour = $colour;
|
||||
}
|
||||
|
||||
function set_tooltip( $tip )
|
||||
{
|
||||
$this->tip = $tip;
|
||||
}
|
||||
}
|
||||
|
||||
class bar_stack_key
|
||||
{
|
||||
function __construct( $colour, $text, $font_size )
|
||||
{
|
||||
$this->colour = $colour;
|
||||
$this->text = $text;
|
||||
$tmp = 'font-size';
|
||||
$this->$tmp = $font_size;
|
||||
}
|
||||
}
|
|
@ -0,0 +1,41 @@
|
|||
<?php
|
||||
|
||||
include_once 'ofc_bar_base.php';
|
||||
|
||||
class candle_value
|
||||
{
|
||||
/**
|
||||
*
|
||||
*/
|
||||
function __construct( $high, $open, $close, $low )
|
||||
{
|
||||
$this->high = $high;
|
||||
$this->top = $open;
|
||||
$this->bottom = $close;
|
||||
$this->low = $low;
|
||||
}
|
||||
|
||||
function set_colour( $colour )
|
||||
{
|
||||
$this->colour = $colour;
|
||||
}
|
||||
|
||||
function set_tooltip( $tip )
|
||||
{
|
||||
$this->tip = $tip;
|
||||
}
|
||||
}
|
||||
|
||||
class candle extends bar_base
|
||||
{
|
||||
function __construct($colour, $negative_colour=null)
|
||||
{
|
||||
$this->type = "candle";
|
||||
parent::__construct();
|
||||
|
||||
$this->set_colour( $colour );
|
||||
if(!is_null($negative_colour))
|
||||
$this->{'negative-colour'} = $negative_colour;
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,75 @@
|
|||
<?php
|
||||
|
||||
class hbar_value
|
||||
{
|
||||
function __construct( $left, $right=null )
|
||||
{
|
||||
if( isset( $right ) )
|
||||
{
|
||||
$this->left = $left;
|
||||
$this->right = $right;
|
||||
}
|
||||
else
|
||||
$this->right = $left;
|
||||
}
|
||||
|
||||
function set_colour( $colour )
|
||||
{
|
||||
$this->colour = $colour;
|
||||
}
|
||||
|
||||
function set_tooltip( $tip )
|
||||
{
|
||||
$this->tip = $tip;
|
||||
}
|
||||
|
||||
function set_on_click( $text )
|
||||
{
|
||||
$tmp = 'on-click';
|
||||
$this->$tmp = $text;
|
||||
}
|
||||
}
|
||||
|
||||
class hbar
|
||||
{
|
||||
function __construct( $colour )
|
||||
{
|
||||
$this->type = "hbar";
|
||||
$this->values = array();
|
||||
$this->set_colour( $colour );
|
||||
}
|
||||
|
||||
function append_value( $v )
|
||||
{
|
||||
$this->values[] = $v;
|
||||
}
|
||||
|
||||
function set_values( $v )
|
||||
{
|
||||
foreach( $v as $val )
|
||||
$this->append_value( new hbar_value( $val ) );
|
||||
}
|
||||
|
||||
function set_colour( $colour )
|
||||
{
|
||||
$this->colour = $colour;
|
||||
}
|
||||
|
||||
function set_on_click( $text )
|
||||
{
|
||||
$tmp = 'on-click';
|
||||
$this->$tmp = $text;
|
||||
}
|
||||
function set_key( $text, $size )
|
||||
{
|
||||
$this->text = $text;
|
||||
$tmp = 'font-size';
|
||||
$this->$tmp = $size;
|
||||
}
|
||||
|
||||
function set_tooltip( $tip )
|
||||
{
|
||||
$this->tip = $tip;
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,61 @@
|
|||
<?php
|
||||
|
||||
|
||||
class legend
|
||||
{
|
||||
function __construct(){}
|
||||
|
||||
function set_position( $position )
|
||||
{
|
||||
$this->position = $position;
|
||||
}
|
||||
|
||||
function set_visible( $visible )
|
||||
{
|
||||
$this->visible = $visible;
|
||||
}
|
||||
|
||||
function set_shadow( $shadow )
|
||||
{
|
||||
$this->shadow = $shadow;
|
||||
}
|
||||
|
||||
function set_padding( $padding )
|
||||
{
|
||||
$this->padding = $padding;
|
||||
}
|
||||
|
||||
function set_border( $border )
|
||||
{
|
||||
$this->border = $border;
|
||||
}
|
||||
|
||||
function set_stroke( $stroke )
|
||||
{
|
||||
$this->stroke = $stroke;
|
||||
}
|
||||
|
||||
function set_margin( $margin )
|
||||
{
|
||||
$this->margin = $margin;
|
||||
}
|
||||
|
||||
function set_alpha( $alpha )
|
||||
{
|
||||
$this->alpha = $alpha;
|
||||
}
|
||||
|
||||
function set_border_colour( $border_colour )
|
||||
{
|
||||
$tmp = "border_colour";
|
||||
$this->$tmp = $border_colour;
|
||||
}
|
||||
|
||||
function set_bg_colour( $bg_colour )
|
||||
{
|
||||
$tmp = "bg_colour";
|
||||
$this->$tmp = $bg_colour;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1,176 @@
|
|||
<?php
|
||||
|
||||
class line_on_show
|
||||
{
|
||||
/**
|
||||
*@param $type as string. Can be any one of:
|
||||
* - 'pop-up'
|
||||
* - 'explode'
|
||||
* - 'mid-slide'
|
||||
* - 'drop'
|
||||
* - 'fade-in'
|
||||
* - 'shrink-in'
|
||||
*
|
||||
* @param $cascade as float. Cascade in seconds
|
||||
* @param $delay as float. Delay before animation starts in seconds.
|
||||
*/
|
||||
function __construct($type, $cascade, $delay)
|
||||
{
|
||||
$this->type = $type;
|
||||
$this->cascade = (float)$cascade;
|
||||
$this->delay = (float)$delay;
|
||||
}
|
||||
}
|
||||
|
||||
class line
|
||||
{
|
||||
function __construct()
|
||||
{
|
||||
$this->type = "line";
|
||||
$this->values = array();
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the default dot that all the real
|
||||
* dots inherit their properties from. If you set the
|
||||
* default dot to be red, all values in your chart that
|
||||
* do not specify a colour will be red. Same for all the
|
||||
* other attributes such as tooltip, on-click, size etc...
|
||||
*
|
||||
* @param $style as any class that inherits base_dot
|
||||
*/
|
||||
function set_default_dot_style( $style )
|
||||
{
|
||||
$tmp = 'dot-style';
|
||||
$this->$tmp = $style;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $v as array, can contain any combination of:
|
||||
* - integer, Y position of the point
|
||||
* - any class that inherits from dot_base
|
||||
* - <b>null</b>
|
||||
*/
|
||||
function set_values( $v )
|
||||
{
|
||||
$this->values = $v;
|
||||
}
|
||||
|
||||
/**
|
||||
* Append a value to the line.
|
||||
*
|
||||
* @param mixed $v
|
||||
*/
|
||||
function append_value($v)
|
||||
{
|
||||
$this->values[] = $v;
|
||||
}
|
||||
|
||||
function set_width( $width )
|
||||
{
|
||||
$this->width = $width;
|
||||
}
|
||||
|
||||
function set_colour( $colour )
|
||||
{
|
||||
$this->colour = $colour;
|
||||
}
|
||||
|
||||
/**
|
||||
* sytnatical sugar for set_colour
|
||||
*/
|
||||
function colour( $colour )
|
||||
{
|
||||
$this->set_colour( $colour );
|
||||
return $this;
|
||||
}
|
||||
|
||||
function set_halo_size( $size )
|
||||
{
|
||||
$tmp = 'halo-size';
|
||||
$this->$tmp = $size;
|
||||
}
|
||||
|
||||
function set_key( $text, $font_size )
|
||||
{
|
||||
$this->text = $text;
|
||||
$tmp = 'font-size';
|
||||
$this->$tmp = $font_size;
|
||||
}
|
||||
|
||||
function set_tooltip( $tip )
|
||||
{
|
||||
$this->tip = $tip;
|
||||
}
|
||||
|
||||
function set_null_gap( $gap )
|
||||
{
|
||||
$tmp = 'null-gap';
|
||||
$this->$tmp = $gap;
|
||||
}
|
||||
|
||||
function set_key_on_click( $action )
|
||||
{
|
||||
$tmp = 'key-on-click';
|
||||
$this->$tmp = $action;
|
||||
}
|
||||
|
||||
function set_group_id( $id )
|
||||
{
|
||||
$this->id = $id;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* @param $text as string. A javascript function name as a string. The chart will
|
||||
* try to call this function, it will pass the chart id as the only parameter into
|
||||
* this function. E.g:
|
||||
*
|
||||
*/
|
||||
function set_on_click( $text )
|
||||
{
|
||||
$tmp = 'on-click';
|
||||
$this->$tmp = $text;
|
||||
}
|
||||
|
||||
function loop()
|
||||
{
|
||||
$this->loop = true;
|
||||
}
|
||||
|
||||
function line_style( $s )
|
||||
{
|
||||
$tmp = "line-style";
|
||||
$this->$tmp = $s;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the text for the line.
|
||||
*
|
||||
* @param string $text
|
||||
*/
|
||||
function set_text($text)
|
||||
{
|
||||
$this->text = $text;
|
||||
}
|
||||
|
||||
function attach_to_right_y_axis()
|
||||
{
|
||||
$this->axis = 'right';
|
||||
}
|
||||
|
||||
/**
|
||||
*@param $on_show as line_on_show object
|
||||
*/
|
||||
function set_on_show($on_show)
|
||||
{
|
||||
$this->{'on-show'} = $on_show;
|
||||
}
|
||||
|
||||
function on_show($on_show)
|
||||
{
|
||||
$this->set_on_show($on_show);
|
||||
return $this;
|
||||
}
|
||||
}
|
|
@ -0,0 +1,92 @@
|
|||
<?php
|
||||
|
||||
class line_base
|
||||
{
|
||||
function __construct()
|
||||
{
|
||||
$this->type = "line";
|
||||
$this->text = "Page views";
|
||||
$tmp = 'font-size';
|
||||
$this->$tmp = 10;
|
||||
|
||||
$this->values = array();
|
||||
}
|
||||
|
||||
function set_values( $v )
|
||||
{
|
||||
$this->values = $v;
|
||||
}
|
||||
|
||||
/**
|
||||
* Append a value to the line.
|
||||
*
|
||||
* @param mixed $v
|
||||
*/
|
||||
function append_value($v)
|
||||
{
|
||||
$this->values[] = $v;
|
||||
}
|
||||
|
||||
function set_width( $width )
|
||||
{
|
||||
$this->width = $width;
|
||||
}
|
||||
|
||||
function set_colour( $colour )
|
||||
{
|
||||
$this->colour = $colour;
|
||||
}
|
||||
|
||||
function set_dot_size( $size )
|
||||
{
|
||||
$tmp = 'dot-size';
|
||||
$this->$tmp = $size;
|
||||
}
|
||||
|
||||
function set_halo_size( $size )
|
||||
{
|
||||
$tmp = 'halo-size';
|
||||
$this->$tmp = $size;
|
||||
}
|
||||
|
||||
function set_key( $text, $font_size )
|
||||
{
|
||||
$this->text = $text;
|
||||
$tmp = 'font-size';
|
||||
$this->$tmp = $font_size;
|
||||
}
|
||||
|
||||
function set_tooltip( $tip )
|
||||
{
|
||||
$this->tip = $tip;
|
||||
}
|
||||
|
||||
function set_on_click( $text )
|
||||
{
|
||||
$tmp = 'on-click';
|
||||
$this->$tmp = $text;
|
||||
}
|
||||
|
||||
function loop()
|
||||
{
|
||||
$this->loop = true;
|
||||
}
|
||||
|
||||
function line_style( $s )
|
||||
{
|
||||
$tmp = "line-style";
|
||||
$this->$tmp = $s;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the text for the line.
|
||||
*
|
||||
* @param string $text
|
||||
*/
|
||||
function set_text($text)
|
||||
{
|
||||
$this->text = $text;
|
||||
}
|
||||
|
||||
|
||||
}
|
|
@ -0,0 +1,33 @@
|
|||
<?php
|
||||
|
||||
class dot_value
|
||||
{
|
||||
function __construct( $value, $colour )
|
||||
{
|
||||
$this->value = $value;
|
||||
$this->colour = $colour;
|
||||
}
|
||||
|
||||
function set_colour( $colour )
|
||||
{
|
||||
$this->colour = $colour;
|
||||
}
|
||||
|
||||
function set_size( $size )
|
||||
{
|
||||
$this->size = $size;
|
||||
}
|
||||
|
||||
function set_tooltip( $tip )
|
||||
{
|
||||
$this->tip = $tip;
|
||||
}
|
||||
}
|
||||
|
||||
class line_dot extends line_base
|
||||
{
|
||||
function __construct()
|
||||
{
|
||||
$this->type = "line_dot";
|
||||
}
|
||||
}
|
|
@ -0,0 +1,9 @@
|
|||
<?php
|
||||
|
||||
class line_hollow extends line_base
|
||||
{
|
||||
function __construct()
|
||||
{
|
||||
$this->type = "line_hollow";
|
||||
}
|
||||
}
|
|
@ -0,0 +1,11 @@
|
|||
<?php
|
||||
|
||||
class line_style
|
||||
{
|
||||
function __construct($on, $off)
|
||||
{
|
||||
$this->style = "dash";
|
||||
$this->on = $on;
|
||||
$this->off = $off;
|
||||
}
|
||||
}
|
|
@ -0,0 +1,56 @@
|
|||
<?php
|
||||
|
||||
class ofc_menu_item
|
||||
{
|
||||
/**
|
||||
* @param $text as string. The menu item text.
|
||||
* @param $javascript_function_name as string. The javascript function name, the
|
||||
* js function takes one parameter, the chart ID. See ofc_menu_item_camera for
|
||||
* some example code.
|
||||
*/
|
||||
function __construct($text, $javascript_function_name)
|
||||
{
|
||||
$this->type = "text";
|
||||
$this->text = $text;
|
||||
$tmp = 'javascript-function';
|
||||
$this->$tmp = $javascript_function_name;
|
||||
}
|
||||
}
|
||||
|
||||
class ofc_menu_item_camera
|
||||
{
|
||||
/**
|
||||
* @param $text as string. The menu item text.
|
||||
* @param $javascript_function_name as string. The javascript function name, the
|
||||
* js function takes one parameter, the chart ID. So for example, our js function
|
||||
* could look like this:
|
||||
*
|
||||
* function save_image( chart_id )
|
||||
* {
|
||||
* alert( chart_id );
|
||||
* }
|
||||
*
|
||||
* to make a menu item call this: ofc_menu_item_camera('Save chart', 'save_image');
|
||||
*/
|
||||
function __construct($text, $javascript_function_name)
|
||||
{
|
||||
$this->type = "camera-icon";
|
||||
$this->text = $text;
|
||||
$tmp = 'javascript-function';
|
||||
$this->$tmp = $javascript_function_name;
|
||||
}
|
||||
}
|
||||
|
||||
class ofc_menu
|
||||
{
|
||||
function __construct($colour, $outline_colour)
|
||||
{
|
||||
$this->colour = $colour;
|
||||
$this->outline_colour = $outline_colour;
|
||||
}
|
||||
|
||||
function values($values)
|
||||
{
|
||||
$this->values = $values;
|
||||
}
|
||||
}
|
|
@ -0,0 +1,273 @@
|
|||
<?php
|
||||
|
||||
class pie_value
|
||||
{
|
||||
function __construct( $value, $label )
|
||||
{
|
||||
$this->value = $value;
|
||||
$this->label = $label;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the text for the line.
|
||||
*
|
||||
* @param string $text
|
||||
*/
|
||||
function set_text($text)
|
||||
{
|
||||
$this->text = $text;
|
||||
}
|
||||
|
||||
function set_key_on_click( $action )
|
||||
{
|
||||
$tmp = 'key-on-click';
|
||||
$this->$tmp = $action;
|
||||
}
|
||||
|
||||
function set_colour( $colour )
|
||||
{
|
||||
$this->colour = $colour;
|
||||
}
|
||||
|
||||
function set_label( $label, $label_colour, $font_size )
|
||||
{
|
||||
$this->label = $label;
|
||||
|
||||
$tmp = 'label-colour';
|
||||
$this->$tmp = $label_colour;
|
||||
|
||||
$tmp = 'font-size';
|
||||
$this->$tmp = $font_size;
|
||||
|
||||
}
|
||||
|
||||
function set_tooltip( $tip )
|
||||
{
|
||||
$this->tip = $tip;
|
||||
}
|
||||
|
||||
function on_click( $event )
|
||||
{
|
||||
$tmp = 'on-click';
|
||||
$this->$tmp = $event;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* An object that inherits from base_pie_animation
|
||||
*/
|
||||
function add_animation( $animation )
|
||||
{
|
||||
if( !isset( $this->animate ) )
|
||||
$this->animate = array();
|
||||
|
||||
$this->animate[] = $animation;
|
||||
|
||||
return $this;
|
||||
}
|
||||
}
|
||||
|
||||
class base_pie_animation{}
|
||||
|
||||
/**
|
||||
* fade the pie slice from $alpha (pie set_alpha) to 100% opaque.
|
||||
*/
|
||||
class pie_fade extends base_pie_animation
|
||||
{
|
||||
function __construct()
|
||||
{
|
||||
$this->type="fade";
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Bounce the pie slice out a little
|
||||
*/
|
||||
class pie_bounce extends base_pie_animation
|
||||
{
|
||||
/**
|
||||
* @param $distance as integer, distance to bounce in pixels
|
||||
*/
|
||||
function __construct( $distance )
|
||||
{
|
||||
$this->type="bounce";
|
||||
$this->distance = $distance;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Make a pie chart and fill it with pie slices
|
||||
*/
|
||||
class pie
|
||||
{
|
||||
function __construct()
|
||||
{
|
||||
$this->type = 'pie';
|
||||
}
|
||||
|
||||
function set_colours( $colours )
|
||||
{
|
||||
$this->colours = $colours;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sugar wrapped around set_colours
|
||||
*/
|
||||
function colours( $colours )
|
||||
{
|
||||
$this->set_colours( $colours );
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $alpha as float (0-1) 0.75 = 3/4 visible
|
||||
*/
|
||||
function set_alpha( $alpha )
|
||||
{
|
||||
$this->alpha = $alpha;
|
||||
}
|
||||
|
||||
/**
|
||||
*sugar wrapped set_alpha
|
||||
**/
|
||||
function alpha( $alpha )
|
||||
{
|
||||
$this->set_alpha( $alpha );
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $v as array containing one of
|
||||
* - null
|
||||
* - real or integer number
|
||||
* - a pie_value object
|
||||
*/
|
||||
function set_values( $v )
|
||||
{
|
||||
$this->values = $v;
|
||||
}
|
||||
|
||||
/**
|
||||
* sugar for set_values
|
||||
*/
|
||||
function values( $v )
|
||||
{
|
||||
$this->set_values( $v );
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* HACK to keep old code working.
|
||||
*/
|
||||
function set_animate( $bool )
|
||||
{
|
||||
if( $bool )
|
||||
$this->add_animation( new pie_fade() );
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* An object that inherits from base_pie_animation
|
||||
*/
|
||||
function add_animation( $animation )
|
||||
{
|
||||
if( !isset( $this->animate ) )
|
||||
$this->animate = array();
|
||||
|
||||
$this->animate[] = $animation;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $angle as real number
|
||||
*/
|
||||
function set_start_angle( $angle )
|
||||
{
|
||||
$tmp = 'start-angle';
|
||||
$this->$tmp = $angle;
|
||||
}
|
||||
|
||||
/**
|
||||
* sugar for set_start_angle
|
||||
*/
|
||||
function start_angle($angle)
|
||||
{
|
||||
$this->set_start_angle( $angle );
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $tip as string. The tooltip text. May contain magic varibles
|
||||
*/
|
||||
function set_tooltip( $tip )
|
||||
{
|
||||
$this->tip = $tip;
|
||||
}
|
||||
|
||||
/**
|
||||
* sugar for set_tooltip
|
||||
*/
|
||||
function tooltip( $tip )
|
||||
{
|
||||
$this->set_tooltip( $tip );
|
||||
return $this;
|
||||
}
|
||||
|
||||
function set_gradient_fill()
|
||||
{
|
||||
$tmp = 'gradient-fill';
|
||||
$this->$tmp = true;
|
||||
}
|
||||
|
||||
function gradient_fill()
|
||||
{
|
||||
$this->set_gradient_fill();
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* By default each label is the same colour as the slice,
|
||||
* but you can ovveride that behaviour using this method.
|
||||
*
|
||||
* @param $label_colour as string HEX colour;
|
||||
*/
|
||||
function set_label_colour( $label_colour )
|
||||
{
|
||||
$tmp = 'label-colour';
|
||||
$this->$tmp = $label_colour;
|
||||
}
|
||||
|
||||
function label_colour( $label_colour )
|
||||
{
|
||||
$this->set_label_colour( $label_colour );
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Turn off the labels
|
||||
*/
|
||||
function set_no_labels()
|
||||
{
|
||||
$tmp = 'no-labels';
|
||||
$this->$tmp = true;
|
||||
}
|
||||
|
||||
function on_click( $event )
|
||||
{
|
||||
$tmp = 'on-click';
|
||||
$this->$tmp = $event;
|
||||
}
|
||||
|
||||
/**
|
||||
* Fix the radius of the pie chart. Take a look at the magic variable #radius#
|
||||
* for helping figure out what radius to set it to.
|
||||
*
|
||||
* @param $radius as number
|
||||
*/
|
||||
function radius( $radius )
|
||||
{
|
||||
$this->radius = $radius;
|
||||
return $this;
|
||||
}
|
||||
}
|
|
@ -0,0 +1,47 @@
|
|||
<?php
|
||||
|
||||
class radar_axis
|
||||
{
|
||||
function __construct( $max )
|
||||
{
|
||||
$this->set_max( $max );
|
||||
}
|
||||
|
||||
function set_max( $max )
|
||||
{
|
||||
$this->max = $max;
|
||||
}
|
||||
|
||||
function set_steps( $steps )
|
||||
{
|
||||
$this->steps = $steps;
|
||||
}
|
||||
|
||||
function set_stroke( $s )
|
||||
{
|
||||
$this->stroke = $s;
|
||||
}
|
||||
|
||||
function set_colour( $colour )
|
||||
{
|
||||
$this->colour = $colour;
|
||||
}
|
||||
|
||||
function set_grid_colour( $colour )
|
||||
{
|
||||
$tmp = 'grid-colour';
|
||||
$this->$tmp = $colour;
|
||||
}
|
||||
|
||||
function set_labels( $labels )
|
||||
{
|
||||
$this->labels = $labels;
|
||||
}
|
||||
|
||||
function set_spoke_labels( $labels )
|
||||
{
|
||||
$tmp = 'spoke-labels';
|
||||
$this->$tmp = $labels;
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,15 @@
|
|||
<?php
|
||||
|
||||
class radar_axis_labels
|
||||
{
|
||||
// $labels : array
|
||||
function __construct( $labels )
|
||||
{
|
||||
$this->labels = $labels;
|
||||
}
|
||||
|
||||
function set_colour( $colour )
|
||||
{
|
||||
$this->colour = $colour;
|
||||
}
|
||||
}
|
|
@ -0,0 +1,15 @@
|
|||
<?php
|
||||
|
||||
class radar_spoke_labels
|
||||
{
|
||||
// $labels : array
|
||||
function __construct( $labels )
|
||||
{
|
||||
$this->labels = $labels;
|
||||
}
|
||||
|
||||
function set_colour( $colour )
|
||||
{
|
||||
$this->colour = $colour;
|
||||
}
|
||||
}
|
|
@ -0,0 +1,47 @@
|
|||
<?php
|
||||
|
||||
class scatter_value
|
||||
{
|
||||
function __construct( $x, $y, $dot_size=-1 )
|
||||
{
|
||||
$this->x = $x;
|
||||
$this->y = $y;
|
||||
|
||||
if( $dot_size > 0 )
|
||||
{
|
||||
$tmp = 'dot-size';
|
||||
$this->$tmp = $dot_size;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
class scatter
|
||||
{
|
||||
function __construct( $colour )
|
||||
{
|
||||
$this->type = "scatter";
|
||||
$this->set_colour( $colour );
|
||||
}
|
||||
|
||||
function set_colour( $colour )
|
||||
{
|
||||
$this->colour = $colour;
|
||||
}
|
||||
|
||||
function set_default_dot_style( $style )
|
||||
{
|
||||
$tmp = 'dot-style';
|
||||
$this->$tmp = $style;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $v as array, can contain any combination of:
|
||||
* - integer, Y position of the point
|
||||
* - any class that inherits from scatter_value
|
||||
* - <b>null</b>
|
||||
*/
|
||||
function set_values( $values )
|
||||
{
|
||||
$this->values = $values;
|
||||
}
|
||||
}
|
|
@ -0,0 +1,49 @@
|
|||
<?php
|
||||
|
||||
class scatter_line
|
||||
{
|
||||
function __construct( $colour, $width )
|
||||
{
|
||||
$this->type = "scatter_line";
|
||||
$this->set_colour( $colour );
|
||||
$this->set_width( $width );
|
||||
}
|
||||
|
||||
function set_default_dot_style( $style )
|
||||
{
|
||||
$tmp = 'dot-style';
|
||||
$this->$tmp = $style;
|
||||
}
|
||||
|
||||
function set_colour( $colour )
|
||||
{
|
||||
$this->colour = $colour;
|
||||
}
|
||||
|
||||
function set_width( $width )
|
||||
{
|
||||
$this->width = $width;
|
||||
}
|
||||
|
||||
function set_values( $values )
|
||||
{
|
||||
$this->values = $values;
|
||||
}
|
||||
|
||||
function set_step_horizontal()
|
||||
{
|
||||
$this->stepgraph = 'horizontal';
|
||||
}
|
||||
|
||||
function set_step_vertical()
|
||||
{
|
||||
$this->stepgraph = 'vertical';
|
||||
}
|
||||
|
||||
function set_key( $text, $font_size )
|
||||
{
|
||||
$this->text = $text;
|
||||
$tmp = 'font-size';
|
||||
$this->$tmp = $font_size;
|
||||
}
|
||||
}
|
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
class shape_point
|
||||
{
|
||||
function __construct( $x, $y )
|
||||
{
|
||||
$this->x = $x;
|
||||
$this->y = $y;
|
||||
}
|
||||
}
|
||||
|
||||
class shape
|
||||
{
|
||||
function __construct( $colour )
|
||||
{
|
||||
$this->type = "shape";
|
||||
$this->colour = $colour;
|
||||
$this->values = array();
|
||||
}
|
||||
|
||||
function append_value( $p )
|
||||
{
|
||||
$this->values[] = $p;
|
||||
}
|
||||
}
|
|
@ -0,0 +1,43 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* Sugar: to make stars easier sometimes
|
||||
*/
|
||||
class s_star extends star
|
||||
{
|
||||
/**
|
||||
* I use this wrapper for default dot types,
|
||||
* it just makes the code easier to read.
|
||||
*/
|
||||
function __construct($colour, $size)
|
||||
{
|
||||
parent::__construct();
|
||||
$this->colour($colour)->size($size);
|
||||
}
|
||||
}
|
||||
|
||||
class s_box extends anchor
|
||||
{
|
||||
/**
|
||||
* I use this wrapper for default dot types,
|
||||
* it just makes the code easier to read.
|
||||
*/
|
||||
function __construct($colour, $size)
|
||||
{
|
||||
parent::__construct();
|
||||
$this->colour($colour)->size($size)->rotation(45)->sides(4);
|
||||
}
|
||||
}
|
||||
|
||||
class s_hollow_dot extends hollow_dot
|
||||
{
|
||||
/**
|
||||
* I use this wrapper for default dot types,
|
||||
* it just makes the code easier to read.
|
||||
*/
|
||||
function __construct($colour, $size)
|
||||
{
|
||||
parent::__construct();
|
||||
$this->colour($colour)->size($size);
|
||||
}
|
||||
}
|
|
@ -0,0 +1,132 @@
|
|||
<?php
|
||||
|
||||
class ofc_tags
|
||||
{
|
||||
function __construct()
|
||||
{
|
||||
$this->type = "tags";
|
||||
$this->values = array();
|
||||
}
|
||||
|
||||
function colour( $colour )
|
||||
{
|
||||
$this->colour = $colour;
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
*@param $font as string. e.g. "Verdana"
|
||||
*@param $size as integer. Size in px
|
||||
*/
|
||||
function font($font, $size)
|
||||
{
|
||||
$this->font = $font;
|
||||
$this->{'font-size'} = $size;
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
*@param $x as integer. Size of x padding in px
|
||||
*@param $y as integer. Size of y padding in px
|
||||
*/
|
||||
function padding($x, $y)
|
||||
{
|
||||
$this->{"pad-x"} = $x;
|
||||
$this->{"pad-y"} = $y;
|
||||
return $this;
|
||||
}
|
||||
|
||||
|
||||
function rotate( $angle )
|
||||
{
|
||||
$this->rotate = $angle;
|
||||
}
|
||||
function align_x_center()
|
||||
{
|
||||
$this->{"align-x"} = "center";
|
||||
return $this;
|
||||
}
|
||||
|
||||
function align_x_left()
|
||||
{
|
||||
$this->{"align-x"} = "left";
|
||||
return $this;
|
||||
}
|
||||
|
||||
function align_x_right()
|
||||
{
|
||||
$this->{"align-x"} = "right";
|
||||
return $this;
|
||||
}
|
||||
|
||||
function align_y_above()
|
||||
{
|
||||
$this->{"align-y"} = "above";
|
||||
return $this;
|
||||
}
|
||||
|
||||
function align_y_below()
|
||||
{
|
||||
$this->{"align-y"} = "below";
|
||||
return $this;
|
||||
}
|
||||
|
||||
function align_y_center()
|
||||
{
|
||||
$this->{"align-y"} = "center";
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* This can contain some HTML, e.g:
|
||||
* - "More <a href="javascript:alert(12);">info</a>"
|
||||
* - "<a href="http://teethgrinder.co.uk">ofc</a>"
|
||||
*/
|
||||
function text($text)
|
||||
{
|
||||
$this->text = $text;
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* This works, but to get the mouse pointer to change
|
||||
* to a little hand you need to use "<a href="">stuff</a>"-- see text()
|
||||
*/
|
||||
function on_click($on_click)
|
||||
{
|
||||
$this->{'on-click'} = $on_click;
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
*@param $bold boolean.
|
||||
*@param $underline boolean.
|
||||
*@param $border boolean.
|
||||
*@prarm $alpha real (0 to 1.0)
|
||||
*/
|
||||
function style($bold, $underline, $border, $alpha )
|
||||
{
|
||||
$this->bold = $bold;
|
||||
$this->border = $underline;
|
||||
$this->underline = $border;
|
||||
$this->alpha = $alpha;
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
*@param $tag as ofc_tag
|
||||
*/
|
||||
function append_tag($tag)
|
||||
{
|
||||
$this->values[] = $tag;
|
||||
}
|
||||
}
|
||||
|
||||
class ofc_tag extends ofc_tags
|
||||
{
|
||||
function __construct($x, $y)
|
||||
{
|
||||
$this->x = $x;
|
||||
$this->y = $y;
|
||||
}
|
||||
}
|
|
@ -0,0 +1,39 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* Set the title of a chart, make one of these and pass it into
|
||||
* open_flash_chart set_title
|
||||
*/
|
||||
class title
|
||||
{
|
||||
function __construct( $text='' )
|
||||
{
|
||||
$this->text = $text;
|
||||
}
|
||||
|
||||
/**
|
||||
* A css string. Can optionally contain:
|
||||
* - font-size
|
||||
* - font-family
|
||||
* - font-weight
|
||||
* - color
|
||||
* - background-color
|
||||
* - text-align
|
||||
* - margin
|
||||
* - margin-left
|
||||
* - margin-right
|
||||
* - margin-top
|
||||
* - margin-bottom
|
||||
* - padding
|
||||
* - padding-left
|
||||
* - padding-right
|
||||
* - padding-top
|
||||
* - padding-bottom
|
||||
* just like the css we use all the time :-)
|
||||
*/
|
||||
function set_style( $css )
|
||||
{
|
||||
$this->style = $css;
|
||||
//"{font-size: 20px; color:#0000ff; font-family: Verdana; text-align: center;}";
|
||||
}
|
||||
}
|
|
@ -0,0 +1,75 @@
|
|||
<?php
|
||||
|
||||
include_once 'ofc_bar_base.php';
|
||||
|
||||
class tooltip
|
||||
{
|
||||
function __construct(){}
|
||||
|
||||
/**
|
||||
* @param $shadow as boolean. Enable drop shadow.
|
||||
*/
|
||||
function set_shadow( $shadow )
|
||||
{
|
||||
$this->shadow = $shadow;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $stroke as integer, border width in pixels (e.g. 5 )
|
||||
*/
|
||||
function set_stroke( $stroke )
|
||||
{
|
||||
$this->stroke = $stroke;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $clash as bolean
|
||||
*/
|
||||
function set_clash( $clash )
|
||||
{
|
||||
$this->clash = $clash;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $colour as string, HEX colour e.g. '#0000ff'
|
||||
*/
|
||||
function set_colour( $colour )
|
||||
{
|
||||
$this->colour = $colour;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $bg as string, HEX colour e.g. '#0000ff'
|
||||
*/
|
||||
function set_background_colour( $bg )
|
||||
{
|
||||
$this->background = $bg;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $style as string. A css style.
|
||||
*/
|
||||
function set_title_style( $style )
|
||||
{
|
||||
$this->title = $style;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $style as string. A css style.
|
||||
*/
|
||||
function set_body_style( $style )
|
||||
{
|
||||
$this->body = $style;
|
||||
}
|
||||
|
||||
function set_proximity()
|
||||
{
|
||||
$this->mouse = 1;
|
||||
}
|
||||
|
||||
function set_hover()
|
||||
{
|
||||
$this->mouse = 2;
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,140 @@
|
|||
<?php
|
||||
|
||||
class x_axis
|
||||
{
|
||||
function __construct(){}
|
||||
|
||||
/**
|
||||
* @param $stroke as integer, with of the line and ticks
|
||||
*/
|
||||
function set_stroke( $stroke )
|
||||
{
|
||||
$this->stroke = $stroke;
|
||||
}
|
||||
|
||||
function stroke( $stroke )
|
||||
{
|
||||
$this->set_stroke( $stroke );
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
*@param $colour as string HEX colour
|
||||
*@param $grid_colour as string HEX colour
|
||||
*/
|
||||
function set_colours( $colour, $grid_colour )
|
||||
{
|
||||
$this->set_colour( $colour );
|
||||
$this->set_grid_colour( $grid_colour );
|
||||
}
|
||||
|
||||
/**
|
||||
*@param $colour as string HEX colour
|
||||
*/
|
||||
function set_colour( $colour )
|
||||
{
|
||||
$this->colour = $colour;
|
||||
}
|
||||
|
||||
function colour( $colour )
|
||||
{
|
||||
$this->set_colour($colour);
|
||||
return $this;
|
||||
}
|
||||
|
||||
function set_tick_height( $height )
|
||||
{
|
||||
$tmp = 'tick-height';
|
||||
$this->$tmp = $height;
|
||||
}
|
||||
|
||||
function tick_height( $height )
|
||||
{
|
||||
$this->set_tick_height($height);
|
||||
return $this;
|
||||
}
|
||||
|
||||
function set_grid_colour( $colour )
|
||||
{
|
||||
$tmp = 'grid-colour';
|
||||
$this->$tmp = $colour;
|
||||
}
|
||||
|
||||
function grid_colour( $colour )
|
||||
{
|
||||
$this->set_grid_colour($colour);
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $o is a boolean. If true, the X axis start half a step in
|
||||
* This defaults to True
|
||||
*/
|
||||
function set_offset( $o )
|
||||
{
|
||||
$this->offset = $o?true:false;
|
||||
}
|
||||
|
||||
function offset( $o )
|
||||
{
|
||||
$this->set_offset($o);
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $steps as integer. Which grid lines and ticks are visible.
|
||||
*/
|
||||
function set_steps( $steps )
|
||||
{
|
||||
$this->steps = $steps;
|
||||
}
|
||||
|
||||
function steps( $steps )
|
||||
{
|
||||
$this->set_steps($steps);
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $val as an integer, the height in pixels of the 3D bar. Mostly
|
||||
* used for the 3D bar chart.
|
||||
*/
|
||||
function set_3d( $val )
|
||||
{
|
||||
$tmp = '3d';
|
||||
$this->$tmp = $val;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $x_axis_labels as an x_axis_labels object
|
||||
* Use this to customize the labels (colour, font, etc...)
|
||||
*/
|
||||
function set_labels( $x_axis_labels )
|
||||
{
|
||||
//$this->labels = $v;
|
||||
$this->labels = $x_axis_labels;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sugar syntax: helper function to make the examples simpler.
|
||||
* @param $a is an array of labels
|
||||
*/
|
||||
function set_labels_from_array( $a )
|
||||
{
|
||||
$x_axis_labels = new x_axis_labels();
|
||||
$x_axis_labels->set_labels( $a );
|
||||
$this->labels = $x_axis_labels;
|
||||
|
||||
if( isset( $this->steps ) )
|
||||
$x_axis_labels->set_steps( $this->steps );
|
||||
}
|
||||
|
||||
/**
|
||||
* min and max.
|
||||
*/
|
||||
function set_range( $min, $max )
|
||||
{
|
||||
$this->min = $min;
|
||||
$this->max = $max;
|
||||
}
|
||||
}
|
|
@ -0,0 +1,45 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* x_axis_label see x_axis_labels
|
||||
*/
|
||||
class x_axis_label
|
||||
{
|
||||
function __construct( $text, $colour, $size, $rotate )
|
||||
{
|
||||
$this->set_text( $text );
|
||||
$this->set_colour( $colour );
|
||||
$this->set_size( $size );
|
||||
$this->set_rotate( $rotate );
|
||||
}
|
||||
|
||||
function set_text( $text )
|
||||
{
|
||||
$this->text = $text;
|
||||
}
|
||||
|
||||
function set_colour( $colour )
|
||||
{
|
||||
$this->colour = $colour;
|
||||
}
|
||||
|
||||
function set_size( $size )
|
||||
{
|
||||
$this->size = $size;
|
||||
}
|
||||
|
||||
function set_rotate( $rotate )
|
||||
{
|
||||
$this->rotate = $rotate;
|
||||
}
|
||||
|
||||
function set_vertical()
|
||||
{
|
||||
$this->rotate = "vertical";
|
||||
}
|
||||
|
||||
function set_visible()
|
||||
{
|
||||
$this->visible = true;
|
||||
}
|
||||
}
|
|
@ -0,0 +1,69 @@
|
|||
<?php
|
||||
|
||||
class x_axis_labels
|
||||
{
|
||||
function __construct(){}
|
||||
|
||||
/**
|
||||
* @param $steps which labels are generated
|
||||
*/
|
||||
function set_steps( $steps )
|
||||
{
|
||||
$this->steps = $steps;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $steps as integer which labels are visible
|
||||
*/
|
||||
function visible_steps( $steps )
|
||||
{
|
||||
$this->{"visible-steps"} = $steps;
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param $labels as an array of [x_axis_label or string]
|
||||
*/
|
||||
function set_labels( $labels )
|
||||
{
|
||||
$this->labels = $labels;
|
||||
}
|
||||
|
||||
function set_colour( $colour )
|
||||
{
|
||||
$this->colour = $colour;
|
||||
}
|
||||
|
||||
/**
|
||||
* font size in pixels
|
||||
*/
|
||||
function set_size( $size )
|
||||
{
|
||||
$this->size = $size;
|
||||
}
|
||||
|
||||
/**
|
||||
* rotate labels
|
||||
*/
|
||||
function set_vertical()
|
||||
{
|
||||
$this->rotate = 270;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param @angle as real. The angle of the text.
|
||||
*/
|
||||
function rotate( $angle )
|
||||
{
|
||||
$this->rotate = $angle;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $text as string. Replace and magic variables with actual x axis position.
|
||||
*/
|
||||
function text( $text )
|
||||
{
|
||||
$this->text = $text;
|
||||
}
|
||||
}
|
|
@ -0,0 +1,15 @@
|
|||
<?php
|
||||
|
||||
class x_legend
|
||||
{
|
||||
function __construct( $text='' )
|
||||
{
|
||||
$this->text = $text;
|
||||
}
|
||||
|
||||
function set_style( $css )
|
||||
{
|
||||
$this->style = $css;
|
||||
//"{font-size: 20px; color:#0000ff; font-family: Verdana; text-align: center;}";
|
||||
}
|
||||
}
|
|
@ -0,0 +1,17 @@
|
|||
<?php
|
||||
|
||||
class y_axis extends y_axis_base
|
||||
{
|
||||
function __construct(){}
|
||||
|
||||
/**
|
||||
* @param $colour as string. The grid are the lines inside the chart.
|
||||
* HEX colour, e.g. '#ff0000'
|
||||
*/
|
||||
function set_grid_colour( $colour )
|
||||
{
|
||||
$tmp = 'grid-colour';
|
||||
$this->$tmp = $colour;
|
||||
}
|
||||
|
||||
}
|
|
@ -0,0 +1,122 @@
|
|||
<?php
|
||||
|
||||
class y_axis_base
|
||||
{
|
||||
function __construct(){}
|
||||
|
||||
/**
|
||||
* @param $s as integer, thickness of the Y axis line
|
||||
*/
|
||||
function set_stroke( $s )
|
||||
{
|
||||
$this->stroke = $s;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $val as integer. The length of the ticks in pixels
|
||||
*/
|
||||
function set_tick_length( $val )
|
||||
{
|
||||
$tmp = 'tick-length';
|
||||
$this->$tmp = $val;
|
||||
}
|
||||
|
||||
function set_colours( $colour, $grid_colour )
|
||||
{
|
||||
$this->set_colour( $colour );
|
||||
$this->set_grid_colour( $grid_colour );
|
||||
}
|
||||
|
||||
function set_colour( $colour )
|
||||
{
|
||||
$this->colour = $colour;
|
||||
}
|
||||
|
||||
function set_grid_colour( $colour )
|
||||
{
|
||||
$tmp = 'grid-colour';
|
||||
$this->$tmp = $colour;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set min and max values, also (optionally) set the steps value.
|
||||
* You can reverse the chart by setting min larger than max, e.g. min = 10
|
||||
* and max = 0.
|
||||
*
|
||||
* @param $min as integer
|
||||
* @param $max as integer
|
||||
* @param $steps as integer.
|
||||
*/
|
||||
function set_range( $min, $max, $steps=1 )
|
||||
{
|
||||
$this->min = $min;
|
||||
$this->max = $max;
|
||||
$this->set_steps( $steps );
|
||||
}
|
||||
|
||||
/**
|
||||
* Sugar for set_range
|
||||
*/
|
||||
function range( $min, $max, $steps=1 )
|
||||
{
|
||||
$this->set_range( $min, $max, $steps );
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $off as Boolean. If true the Y axis is nudged up half a step.
|
||||
*/
|
||||
function set_offset( $off )
|
||||
{
|
||||
$this->offset = $off?1:0;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $y_axis_labels as an y_axis_labels object
|
||||
* Use this to customize the labels (colour, font, etc...)
|
||||
*/
|
||||
function set_labels( $y_axis_labels )
|
||||
{
|
||||
$this->labels = $y_axis_labels;
|
||||
}
|
||||
|
||||
/**
|
||||
* Pass in some text for each label. This can contain magic variables "#val#" which
|
||||
* will get replaced with the value for that Y axis label. Useful for:
|
||||
* - "£#val#"
|
||||
* - "#val#%"
|
||||
* - "#val# million"
|
||||
*
|
||||
* @param $text as string.
|
||||
*/
|
||||
function set_label_text( $text )
|
||||
{
|
||||
$tmp = new y_axis_labels();
|
||||
$tmp->set_text( $text );
|
||||
$this->labels = $tmp;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $steps as integer.
|
||||
*
|
||||
* Only show every $steps label, e.g. every 10th
|
||||
*/
|
||||
function set_steps( $steps )
|
||||
{
|
||||
$this->steps = $steps;
|
||||
}
|
||||
|
||||
/**
|
||||
* Make the labels show vertical
|
||||
*/
|
||||
function set_vertical()
|
||||
{
|
||||
$this->rotate = "vertical";
|
||||
}
|
||||
|
||||
function set_logScale( $logScale)
|
||||
{
|
||||
$tmp = 'log-scale';
|
||||
$this->$tmp = $logScale;
|
||||
}
|
||||
}
|
|
@ -0,0 +1,38 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* y_axis_label see y_axis_labels
|
||||
*/
|
||||
class y_axis_label
|
||||
{
|
||||
function __construct( $y, $text)
|
||||
{
|
||||
$this->y = $y;
|
||||
$this->set_text( $text );
|
||||
}
|
||||
|
||||
function set_text( $text )
|
||||
{
|
||||
$this->text = $text;
|
||||
}
|
||||
|
||||
function set_colour( $colour )
|
||||
{
|
||||
$this->colour = $colour;
|
||||
}
|
||||
|
||||
function set_size( $size )
|
||||
{
|
||||
$this->size = $size;
|
||||
}
|
||||
|
||||
function set_rotate( $rotate )
|
||||
{
|
||||
$this->rotate = $rotate;
|
||||
}
|
||||
|
||||
function set_vertical()
|
||||
{
|
||||
$this->rotate = "vertical";
|
||||
}
|
||||
}
|
|
@ -0,0 +1,57 @@
|
|||
<?php
|
||||
|
||||
class y_axis_labels
|
||||
{
|
||||
function __construct(){}
|
||||
|
||||
/**
|
||||
* @param $steps which labels are generated
|
||||
*/
|
||||
function set_steps( $steps )
|
||||
{
|
||||
$this->steps = $steps;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param $labels as an array of [y_axis_label or string]
|
||||
*/
|
||||
function set_labels( $labels )
|
||||
{
|
||||
$this->labels = $labels;
|
||||
}
|
||||
|
||||
function set_colour( $colour )
|
||||
{
|
||||
$this->colour = $colour;
|
||||
}
|
||||
|
||||
/**
|
||||
* font size in pixels
|
||||
*/
|
||||
function set_size( $size )
|
||||
{
|
||||
$this->size = $size;
|
||||
}
|
||||
|
||||
/**
|
||||
* rotate labels
|
||||
*/
|
||||
function set_vertical()
|
||||
{
|
||||
$this->rotate = 270;
|
||||
}
|
||||
|
||||
function rotate( $angle )
|
||||
{
|
||||
$this->rotate = $angle;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $text default text that all labels inherit
|
||||
*/
|
||||
function set_text( $text )
|
||||
{
|
||||
$this->text = $text;
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
<?php
|
||||
|
||||
class y_axis_right extends y_axis_base
|
||||
{
|
||||
function __construct(){}
|
||||
}
|
|
@ -0,0 +1,15 @@
|
|||
<?php
|
||||
|
||||
class y_legend
|
||||
{
|
||||
function __construct( $text='' )
|
||||
{
|
||||
$this->text = $text;
|
||||
}
|
||||
|
||||
function set_style( $css )
|
||||
{
|
||||
$this->style = $css;
|
||||
//"{font-size: 20px; color:#0000ff; font-family: Verdana; text-align: center;}";
|
||||
}
|
||||
}
|
|
@ -0,0 +1,109 @@
|
|||
<?php
|
||||
|
||||
function open_flash_chart_object_str( $width, $height, $url, $use_swfobject=true, $base='' )
|
||||
{
|
||||
//
|
||||
// return the HTML as a string
|
||||
//
|
||||
return _ofc( $width, $height, $url, $use_swfobject, $base );
|
||||
}
|
||||
|
||||
function open_flash_chart_object( $width, $height, $url, $use_swfobject=true, $base='' )
|
||||
{
|
||||
//
|
||||
// stream the HTML into the page
|
||||
//
|
||||
echo _ofc( $width, $height, $url, $use_swfobject, $base );
|
||||
}
|
||||
|
||||
function _ofc( $width, $height, $url, $use_swfobject, $base )
|
||||
{
|
||||
//
|
||||
// I think we may use swfobject for all browsers,
|
||||
// not JUST for IE...
|
||||
//
|
||||
//$ie = strstr(getenv('HTTP_USER_AGENT'), 'MSIE');
|
||||
|
||||
//
|
||||
// escape the & and stuff:
|
||||
//
|
||||
$url = urlencode($url);
|
||||
|
||||
//
|
||||
// output buffer
|
||||
//
|
||||
$out = array();
|
||||
|
||||
//
|
||||
// check for http or https:
|
||||
//
|
||||
if (isset ($_SERVER['HTTPS']))
|
||||
{
|
||||
if (strtoupper ($_SERVER['HTTPS']) == 'ON')
|
||||
{
|
||||
$protocol = 'https';
|
||||
}
|
||||
else
|
||||
{
|
||||
$protocol = 'http';
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
$protocol = 'http';
|
||||
}
|
||||
|
||||
//
|
||||
// if there are more than one charts on the
|
||||
// page, give each a different ID
|
||||
//
|
||||
global $open_flash_chart_seqno;
|
||||
$obj_id = 'chart';
|
||||
$div_name = 'flashcontent';
|
||||
|
||||
//$out[] = '<script type="text/javascript" src="'. $base .'js/ofc.js"></script>';
|
||||
|
||||
if( !isset( $open_flash_chart_seqno ) )
|
||||
{
|
||||
$open_flash_chart_seqno = 1;
|
||||
$out[] = '<script type="text/javascript" src="'. $base .'js/swfobject.js"></script>';
|
||||
}
|
||||
else
|
||||
{
|
||||
$open_flash_chart_seqno++;
|
||||
$obj_id .= '_'. $open_flash_chart_seqno;
|
||||
$div_name .= '_'. $open_flash_chart_seqno;
|
||||
}
|
||||
|
||||
if( $use_swfobject )
|
||||
{
|
||||
// Using library for auto-enabling Flash object on IE, disabled-Javascript proof
|
||||
$out[] = '<div id="'. $div_name .'"></div>';
|
||||
$out[] = '<script type="text/javascript">';
|
||||
$out[] = 'var so = new SWFObject("'. $base .'open-flash-chart.swf", "'. $obj_id .'", "'. $width . '", "' . $height . '", "9", "#FFFFFF");';
|
||||
|
||||
$out[] = 'so.addVariable("data-file", "'. $url . '");';
|
||||
|
||||
$out[] = 'so.addParam("allowScriptAccess", "always" );//"sameDomain");';
|
||||
$out[] = 'so.write("'. $div_name .'");';
|
||||
$out[] = '</script>';
|
||||
$out[] = '<noscript>';
|
||||
}
|
||||
|
||||
$out[] = '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="' . $protocol . '://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" ';
|
||||
$out[] = 'width="' . $width . '" height="' . $height . '" id="ie_'. $obj_id .'" align="middle">';
|
||||
$out[] = '<param name="allowScriptAccess" value="sameDomain" />';
|
||||
$out[] = '<param name="movie" value="'. $base .'open-flash-chart.swf?data='. $url .'" />';
|
||||
$out[] = '<param name="quality" value="high" />';
|
||||
$out[] = '<param name="bgcolor" value="#FFFFFF" />';
|
||||
$out[] = '<embed src="'. $base .'open-flash-chart.swf?data=' . $url .'" quality="high" bgcolor="#FFFFFF" width="'. $width .'" height="'. $height .'" name="'. $obj_id .'" align="middle" allowScriptAccess="sameDomain" ';
|
||||
$out[] = 'type="application/x-shockwave-flash" pluginspage="' . $protocol . '://www.macromedia.com/go/getflashplayer" id="'. $obj_id .'"/>';
|
||||
$out[] = '</object>';
|
||||
|
||||
if ( $use_swfobject ) {
|
||||
$out[] = '</noscript>';
|
||||
}
|
||||
|
||||
return implode("\n",$out);
|
||||
}
|
||||
?>
|
|
@ -0,0 +1,195 @@
|
|||
<?php
|
||||
|
||||
// var_dump(debug_backtrace());
|
||||
|
||||
//
|
||||
// Omar Kilani's php C extension for encoding JSON has been incorporated in stock PHP since 5.2.0
|
||||
// http://www.aurore.net/projects/php-json/
|
||||
//
|
||||
// -- Marcus Engene
|
||||
//
|
||||
if (! function_exists('json_encode'))
|
||||
{
|
||||
include_once 'JSON.php';
|
||||
}
|
||||
|
||||
include_once 'json_format.php';
|
||||
|
||||
// ofc classes
|
||||
include_once 'ofc_title.php';
|
||||
include_once 'ofc_y_axis_base.php';
|
||||
include_once 'ofc_y_axis.php';
|
||||
include_once 'ofc_y_axis_right.php';
|
||||
include_once 'ofc_y_axis_labels.php';
|
||||
include_once 'ofc_y_axis_label.php';
|
||||
include_once 'ofc_x_axis.php';
|
||||
|
||||
include_once 'ofc_background.php';
|
||||
|
||||
include_once 'ofc_pie.php';
|
||||
//include_once 'ofc_bar.php';
|
||||
include_once 'ofc_bar_glass.php';
|
||||
include_once 'ofc_bar_filled.php';
|
||||
include_once 'ofc_bar_stack.php';
|
||||
//include_once 'ofc_bar_3d.php';
|
||||
include_once 'ofc_hbar.php';
|
||||
include_once 'ofc_line_base.php';
|
||||
include_once 'ofc_line.php';
|
||||
//include_once 'ofc_line_dot.php';
|
||||
//include_once 'ofc_line_hollow.php';
|
||||
include_once 'ofc_candle.php';
|
||||
include_once 'ofc_area_base.php';
|
||||
include_once 'ofc_tags.php';
|
||||
include_once 'ofc_arrow.php';
|
||||
//include_once 'ofc_area_hollow.php';
|
||||
//include_once 'ofc_area_line.php';
|
||||
|
||||
include_once 'ofc_legend.php';
|
||||
include_once 'ofc_x_legend.php';
|
||||
include_once 'ofc_y_legend.php';
|
||||
include_once 'ofc_bar_sketch.php';
|
||||
include_once 'ofc_scatter.php';
|
||||
include_once 'ofc_scatter_line.php';
|
||||
include_once 'ofc_x_axis_labels.php';
|
||||
include_once 'ofc_x_axis_label.php';
|
||||
include_once 'ofc_tooltip.php';
|
||||
include_once 'ofc_shape.php';
|
||||
include_once 'ofc_radar_axis.php';
|
||||
include_once 'ofc_radar_axis_labels.php';
|
||||
include_once 'ofc_radar_spoke_labels.php';
|
||||
include_once 'ofc_line_style.php';
|
||||
|
||||
include_once 'dot_base.php';
|
||||
include_once 'ofc_menu.php';
|
||||
|
||||
class open_flash_chart
|
||||
{
|
||||
function __construct()
|
||||
{
|
||||
//$this->title = new title( "Many data lines" );
|
||||
$this->elements = array();
|
||||
}
|
||||
|
||||
function set_title( $t )
|
||||
{
|
||||
$this->title = $t;
|
||||
}
|
||||
|
||||
function set_x_axis( $x )
|
||||
{
|
||||
$this->x_axis = $x;
|
||||
}
|
||||
|
||||
function set_y_axis( $y )
|
||||
{
|
||||
$this->y_axis = $y;
|
||||
}
|
||||
|
||||
function add_y_axis( $y )
|
||||
{
|
||||
$this->y_axis = $y;
|
||||
}
|
||||
|
||||
function set_y_axis_right( $y )
|
||||
{
|
||||
$this->y_axis_right = $y;
|
||||
}
|
||||
|
||||
function add_element( $e )
|
||||
{
|
||||
$this->elements[] = $e;
|
||||
}
|
||||
|
||||
function set_x_legend( $x )
|
||||
{
|
||||
$this->x_legend = $x;
|
||||
}
|
||||
|
||||
function set_legend( $legend )
|
||||
{
|
||||
$this->legend = $legend;
|
||||
}
|
||||
|
||||
function set_y_legend( $y )
|
||||
{
|
||||
$this->y_legend = $y;
|
||||
}
|
||||
|
||||
function set_bg_colour( $colour )
|
||||
{
|
||||
$this->bg_colour = $colour;
|
||||
}
|
||||
|
||||
function set_inner_bg_colour( $colour )
|
||||
{
|
||||
$this->inner_bg_colour = $colour;
|
||||
}
|
||||
|
||||
function set_inner_bg_grad( $colour )
|
||||
{
|
||||
$this->inner_bg_grad = $colour;
|
||||
}
|
||||
|
||||
function set_radar_axis( $radar )
|
||||
{
|
||||
$this->radar_axis = $radar;
|
||||
}
|
||||
|
||||
function set_tooltip( $tooltip )
|
||||
{
|
||||
$this->tooltip = $tooltip;
|
||||
}
|
||||
|
||||
/**
|
||||
* This is a bit funky :(
|
||||
*
|
||||
* @param $num_decimals as integer. Truncate the decimals to $num_decimals, e.g. set it
|
||||
* to 5 and 3.333333333 will display as 3.33333. 2.0 will display as 2 (or 2.00000 - see below)
|
||||
* @param $is_fixed_num_decimals_forced as boolean. If true it will pad the decimals.
|
||||
* @param $is_decimal_separator_comma as boolean
|
||||
* @param $is_thousand_separator_disabled as boolean
|
||||
*
|
||||
* This needs a bit of love and attention
|
||||
*/
|
||||
function set_number_format($num_decimals, $is_fixed_num_decimals_forced, $is_decimal_separator_comma, $is_thousand_separator_disabled )
|
||||
{
|
||||
$this->num_decimals = $num_decimals;
|
||||
$this->is_fixed_num_decimals_forced = $is_fixed_num_decimals_forced;
|
||||
$this->is_decimal_separator_comma = $is_decimal_separator_comma;
|
||||
$this->is_thousand_separator_disabled = $is_thousand_separator_disabled;
|
||||
}
|
||||
|
||||
/**
|
||||
* This is experimental and will change as we make it work
|
||||
*
|
||||
* @param $m as ofc_menu
|
||||
*/
|
||||
function set_menu($m)
|
||||
{
|
||||
$this->menu = $m;
|
||||
}
|
||||
|
||||
function toString()
|
||||
{
|
||||
if (function_exists('json_encode'))
|
||||
{
|
||||
return json_encode($this);
|
||||
}
|
||||
else
|
||||
{
|
||||
$json = new Services_JSON();
|
||||
return $json->encode( $this );
|
||||
}
|
||||
}
|
||||
|
||||
function toPrettyString()
|
||||
{
|
||||
return json_format( $this->toString() );
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
//
|
||||
// there is no PHP end tag so we don't mess the headers up!
|
||||
//
|
Loading…
Add table
Add a link
Reference in a new issue