9 require_once(
$sIncPath .
"constants.inc.php");
10 require_once(
$sIncPath .
"functions.inc.php");
11 require_once(
$sIncPath .
"apiFunctions.inc.php");
30 while(($sInner = readdir($rDirHandler)) !==
false)
31 if(is_dir(
$sModulesPath . $sInner) && substr($sInner, 0, 1) !=
'.') {
33 $sConstantsFile =
$sModulesPath . $sInner .
"/inc/constants.inc.php";
34 if(!file_exists($sConstantsFile))
continue;
35 require($sConstantsFile);
36 if(strtolower(
$aInfo[
'author']) ==
'cheetah')
51 $sIntegrationData =
$sDataPath .
"integration.dat";
52 $sReturn =
'<script type="text/javascript" language="javascript">var sRayUrl = "' .
$sHomeUrl .
'";var aRayApps = new Array();';
53 if(file_exists($sIntegrationData) && filesize($sIntegrationData) > 0)
54 $sReturn .= @file_get_contents($sIntegrationData);
55 $sReturn .=
'</script><script src="' .
$sGlobalUrl .
'js/integration.js" type="text/javascript" language="javascript"></script>';
60 $sReturn .=
'<script src="' .
$sGlobalUrl .
'js/swfobject.js" type="text/javascript" language="javascript"></script>';
75 $bExists = file_exists($sFilePath) && filesize($sFilePath) > 0;
89 $sHolder =
$aInfo[
'mode'] ==
"as3" ?
"holder_as3.swf" :
"holder.swf";
91 $sHolder =
$sModulesUrl . GLOBAL_MODULE .
"/app/" . $sHolder;
104 $aFlashVars[$sParameter] = isset($aParamValues[$sParameter]) ? $aParamValues[$sParameter] :
process_db_input(
$_REQUEST[$sParameter]);
108 'allowScriptAccess' =>
"always",
109 'allowFullScreen' =>
"true",
116 'holder' => $sHolder,
118 'height' => $iHeight,
119 'flashVars' => $aFlashVars,
120 'params' => $aParams,
135 $sTemplate =
'<object style="display:block;" width="#width#" height="#height#"><param name="movie" value="#holder#"></param>#objectParams#<embed src="#holder#" type="application/x-shockwave-flash" width="#width#" height="#height#" #embedParams#></embed></object>';
138 $aFlashVars = array();
139 foreach(
$aConfig[
'flashVars']
as $sKey => $sValue)
140 $aFlashVars[] = $sKey .
'=' . $sValue;
141 $aConfig[
'params'][
'flashVars'] = implode(
'&', $aFlashVars);
143 $aObjectParams = array();
144 $aEmbedParams = array();
145 foreach(
$aConfig[
'params']
as $sKey => $sValue) {
146 $aObjectParams[] =
'<param name="' . $sKey .
'" value="' . $sValue .
'"></param>';
147 $aEmbedParams[] = $sKey .
'="' . $sValue .
'"';
150 $sReturn = str_replace(
"#holder#",
$aConfig[
'holder'], $sTemplate);
151 $sReturn = str_replace(
"#width#",
$aConfig[
'width'], $sReturn);
152 $sReturn = str_replace(
"#height#",
$aConfig[
'height'], $sReturn);
153 $sReturn = str_replace(
"#objectParams#", implode(
"", $aObjectParams), $sReturn);
154 $sReturn = str_replace(
"#embedParams#", implode(
" ", $aEmbedParams), $sReturn);
179 if($sModuleStatus == WIDGET_STATUS_NOT_INSTALLED || $sModuleStatus == WIDGET_STATUS_DISABLED)
return "";
187 if(!
empty($sHtmlId)) $sDivId = $sHtmlId;
189 $sInnerDivId = $sDivId .
"_" .
time();
194 $sDivStyle =
' style="';
196 $sDivStyle .= $sKey .
':' . $sValue .
';';
198 }
else $sDivStyle=
'';
201 $aParametersReload = array();
202 if(!isset(
$_GET[
"module"])) $aParametersReload[] =
"module=" .
$sModule;
203 if(!isset(
$_GET[
"app"])) $aParametersReload[] =
"app=" .
$sApp;
212 <meta
http-equiv=Content-Type
content=
"text/html;charset=UTF-8" />
214 <body style=
"margin:0; padding:0;" <?=
$aModules[
$sApp][
'hResizable'] ||
$aModules[
$sApp][
'vResizable'] ?
'onLoad="resizeWindow()" onResize="if ( window.resizeWindow ) resizeWindow()"' :
''; ?> >
220 echo
"\t\t<script src=\"" . $sJSUrl .
"\" type=\"text/javascript\" language=\"javascript\"></script>\n";
226 <script
type=
"text/javascript" language=
"javascript">
227 function resizeWindow()
233 if(
document.documentElement.clientHeight) {
234 frameWidth =
document.documentElement.clientWidth;
235 frameHeight =
document.documentElement.clientHeight;
237 }
else if(window.innerWidth) {
238 frameWidth = window.innerWidth;
239 frameHeight = window.innerHeight;
241 frameWidth =
document.body.offsetWidth;
242 frameHeight =
document.body.offsetHeight;
245 var sAppName =
'ray_flash_<?=$sModule?>_<?=$sApp?>_';
246 var o =
document.getElementById(sAppName +
'object');
247 var e =
document.getElementById(sAppName +
'embed');
249 frameWidth = (frameWidth < <?=$iMinWidth?>) ? <?=$iMinWidth?> : frameWidth;
250 frameHeight = (frameHeight < <?=$iMinHeight?>) ? <?=$iMinHeight?> : frameHeight;
253 $sRet =
$aModules[
$sApp][
'hResizable'] ?
"o.width = frameWidth;\n" :
"";
254 $sRet .=
$aModules[
$sApp][
'vResizable'] ?
"o.height = frameHeight;\n" :
"";
255 $sRet .=
"if(e != null){";
256 $sRet .=
$aModules[
$sApp][
'hResizable'] ?
"e.width = frameWidth;\n" :
"";
257 $sRet .=
$aModules[
$sApp][
'vResizable'] ?
"e.height = frameHeight;\n" :
"";
268 <script
type=
"text/javascript" language=
"javascript">
272 $sGet = $_SERVER[
'QUERY_STRING'];
273 $sExtraGet = implode(
"&", $aParametersReload);
274 if(!
empty($sGet) && !
empty($sExtraGet)) $sGet .=
"&";
276 <?= !$bInline ?
"redirect();" :
"location.href='" . $_SERVER[
'PHP_SELF'] .
"?" . $sGet . $sExtraGet .
"';" ?>
282 <div
id=
"<?=$sDivId?>" <?=$sDivName . $sDivStyle?>><div
id=
"<?=$sInnerDivId?>"></div></div>
283 <script
type=
"text/javascript" language=
"javascript">
285 foreach(
$aConfig[
'flashVars']
as $sKey => $sValue) {
293 id:
"ray_flash_<?=$sModule?>_<?=$sApp?>_object",
294 name:
"ray_flash_<?=$sModule?>_<?=$sApp?>_embed",
295 style:
"display:block;"
297 swfobject.embedSWF(
"<?=$aConfig['holder']?>",
"<?=$sInnerDivId?>",
"<?=$aConfig['width']?>",
"<?=$aConfig['height']?>",
"<?=$sFlashPlayerVersion?>",
"<?=$sGlobalUrl?>app/expressInstall.swf", flashvars, params, attributes);
306 $sWidgetContent = ob_get_contents();
309 return $sWidgetContent;
319 <
form style=
"margin:0; padding:0;" name=
"<?= $sModule . "-
" . $sApp; ?>" method=
"POST" action=
"<?= $_SERVER['PHP_SELF']; ?>">
320 <input
type=
"hidden" name=
"module" value=
"<?= $sModule; ?>" />
323 foreach($aRequest
as $sKey => $sValue) {
325 <input
type=
"hidden" name=
"<?=process_db_input($sKey, CH_TAGS_SPECIAL_CHARS)?>" value=
"<?=process_db_input($sValue, CH_TAGS_SPECIAL_CHARS)?>" />
334 document.forms[
'<?= $sModule . "-" . $sApp; ?>'].submit();
339 $sReturn = ob_get_contents();
346 $aNewArray = array();
347 foreach($aArray
as $sKey => $sValue)
348 $aNewArray[] = $sKey .
':"' . $sValue .
'"';
349 return "var " .
$sName .
"={" . implode(
",", $aNewArray) .
"};";