Cheetah
content.inc.php
Go to the documentation of this file.
1 <?php
2 
8 require_once($sIncPath . "xml.inc.php");
9 require_once($sIncPath . "constants.inc.php");
10 require_once($sIncPath . "functions.inc.php");
11 require_once($sIncPath . "apiFunctions.inc.php");
12 
14 {
16 }
17 
19 {
21  return getSettingValue($sGlobalDir, "registered") == TRUE_VAL;
22 }
23 
25 {
26  if(getSettingValue(GLOBAL_MODULE, "license", "main") == $sLicense) return;
27 
29  $rDirHandler = opendir($sModulesPath);
30  while(($sInner = readdir($rDirHandler)) !== false)
31  if(is_dir($sModulesPath . $sInner) && substr($sInner, 0, 1) != '.') {
32  if(isset($aInfo)) unset($aInfo);
33  $sConstantsFile = $sModulesPath . $sInner . "/inc/constants.inc.php";
34  if(!file_exists($sConstantsFile)) continue;
35  require($sConstantsFile);
36  if(strtolower($aInfo['author']) == 'cheetah')
37  setSettingValue($sInner, array("status", "license"), array(WIDGET_STATUS_ENABLED, $sLicense), "main");
38  }
39 }
40 
41 function getRayIntegrationJS($isCheetahPage = 0)
42 {
50 
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>';
56 
57  if ($isCheetahPage)
58  $GLOBALS['oSysTemplate']->addJs($sRayHomeDir . $sModulesDir . $sGlobalDir . 'js/|swfobject.js');
59  else
60  $sReturn .= '<script src="' . $sGlobalUrl . 'js/swfobject.js" type="text/javascript" language="javascript"></script>';
61 
62  return $sReturn;
63 }
64 
71 {
73 
74  $sFilePath = $sModulesPath . $sWidget . "/xml/main.xml";
75  $bExists = file_exists($sFilePath) && filesize($sFilePath) > 0;
76  return $bExists;
77 }
78 
79 function getFlashConfig($sModule, $sApp, $aParamValues)
80 {
84 
85  if(isset($aModules)) unset($aModules);
86  if($sModule != GLOBAL_MODULE) require($sModulesPath . $sModule . "/inc/header.inc.php");
87  require($sModulesPath . $sModule . "/inc/constants.inc.php");
88 
89  $sHolder = $aInfo['mode'] == "as3" ? "holder_as3.swf" : "holder.swf";
90  if(isset($aModules[$sApp]['holder'])) $sHolder = $aModules[$sApp]['holder'] . ".swf";
91  $sHolder = $sModulesUrl . GLOBAL_MODULE . "/app/" . $sHolder;
92 
93  $iWidth = getSettingValue($sModule, $sApp . "_width");
94  if(empty($iWidth)) $iWidth = $aModules[$sApp]['layout']['width'];
95  $iHeight = getSettingValue($sModule, $sApp . "_height");
96  if(empty($iHeight)) $iHeight = $aModules[$sApp]['layout']['height'];
97 
98  $aFlashVars = array(
99  'url' => $sRayXmlUrl,
100  'module' => $sModule,
101  'app' => $sApp
102  );
103  foreach($aModules[$sApp]['parameters'] as $sParameter) {
104  $aFlashVars[$sParameter] = isset($aParamValues[$sParameter]) ? $aParamValues[$sParameter] : process_db_input($_REQUEST[$sParameter]);
105  }
106 
107  $aParams = array(
108  'allowScriptAccess' => "always",
109  'allowFullScreen' => "true",
110  'base' => $sModulesUrl . $sModule . "/",
111  'bgcolor' => "#" . getSettingValue(GLOBAL_MODULE, "backColor"),
112  'wmode' => getWMode()
113  );
114 
115  return array(
116  'holder' => $sHolder,
117  'width' => $iWidth,
118  'height' => $iHeight,
119  'flashVars' => $aFlashVars,
120  'params' => $aParams,
121  'modules' => $aModules
122  );
123 }
124 
131 function getEmbedCode($sModule, $sApp, $aParamValues)
132 {
134 
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>';
136  $aConfig = getFlashConfig($sModule, $sApp, $aParamValues);
137 
138  $aFlashVars = array();
139  foreach($aConfig['flashVars'] as $sKey => $sValue)
140  $aFlashVars[] = $sKey . '=' . $sValue;
141  $aConfig['params']['flashVars'] = implode('&amp;', $aFlashVars);
142 
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 . '"';
148  }
149 
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);
155  return $sReturn;
156 }
157 
166 function getApplicationContent($sModule, $sApp, $aParamValues = array(), $bInline = false, $bEmbedCode = false, $sHtmlId = "")
167 {
174 
175  $sModule = isset($sModule) ? $sModule : process_db_input($_REQUEST['module']);
176  $sApp = isset($sApp) ? $sApp : process_db_input($_REQUEST['app']);
177 
178  $sModuleStatus = getSettingValue($sModule, "status", "main");
179  if($sModuleStatus == WIDGET_STATUS_NOT_INSTALLED || $sModuleStatus == WIDGET_STATUS_DISABLED) return "";
180 
181  $aConfig = getFlashConfig($sModule, $sApp, $aParamValues);
182  $aModules = $aConfig['modules'];
183  if(!isset($bInline))$bInline = $aModules[$sApp]['inline'];
184 
185  //--- Parameters for container's div ---//
186  $sDivId = !empty($aModules[$sApp]['div']['id']) ? $aModules[$sApp]['div']['id'] : '';
187  if(!empty($sHtmlId)) $sDivId = $sHtmlId;
188  if(empty($sDivId)) $sDivId = $sModule . '_' . $sApp;
189  $sInnerDivId = $sDivId . "_" . time();
190  if(empty($sHtmlId)) $sHtmlId = "ray_" . $sModule . "_" . $sApp . "_object";
191 
192  $sDivName = !empty($aModules[$sApp]['div']['name']) ? ' name="' . $aModules[$sApp]['div']['name'] . '"' : '';
193  if(!empty($aModules[$sApp]['div']['style'])) {
194  $sDivStyle = ' style="';
195  foreach($aModules[$sApp]['div']['style'] as $sKey => $sValue)
196  $sDivStyle .= $sKey . ':' . $sValue . ';';
197  $sDivStyle .= '"';
198  } else $sDivStyle='';
199 
200  //--- Parameters for SWF object and reloading ---//
201  $aParametersReload = array();
202  if(!isset($_GET["module"])) $aParametersReload[] = "module=" . $sModule;
203  if(!isset($_GET["app"])) $aParametersReload[] = "app=" . $sApp;
204 
205  ob_start();
206  if(!$bInline) {
207 ?>
208 <!DOCTYPE html>
209 <html>
210  <head>
211  <title><?=$aModules[$sApp]['caption']; ?></title>
212  <meta http-equiv=Content-Type content="text/html;charset=UTF-8" />
213  </head>
214  <body style="margin:0; padding:0;" <?=$aModules[$sApp]['hResizable'] || $aModules[$sApp]['vResizable'] ? 'onLoad="resizeWindow()" onResize="if ( window.resizeWindow ) resizeWindow()"' : ''; ?> >
215 <?php
216  echo getRayIntegrationJS();
217  }
218  if(!$bEmbedCode)
219  foreach($aModules[$sApp]['js'] as $sJSUrl)
220  echo "\t\t<script src=\"" . $sJSUrl . "\" type=\"text/javascript\" language=\"javascript\"></script>\n";
221 
222  if(!$bEmbedCode && ($aModules[$sApp]['hResizable'] || $aModules[$sApp]['vResizable'])) {
223  $iMinWidth = (int)$aModules[$sApp]['minSize']['width'];
224  $iMinHeight = (int)$aModules[$sApp]['minSize']['height'];
225 ?>
226  <script type="text/javascript" language="javascript">
227  function resizeWindow()
228  {
229  var frameWidth = 0;
230  var frameHeight = 0;
231 
232  if (document.documentElement) {
233  if(document.documentElement.clientHeight) {
234  frameWidth = document.documentElement.clientWidth;
235  frameHeight = document.documentElement.clientHeight;
236  }
237  } else if(window.innerWidth) {
238  frameWidth = window.innerWidth;
239  frameHeight = window.innerHeight;
240  } else if (document.body) {
241  frameWidth = document.body.offsetWidth;
242  frameHeight = document.body.offsetHeight;
243  }
244 
245  var sAppName = 'ray_flash_<?=$sModule?>_<?=$sApp?>_';
246  var o = document.getElementById(sAppName + 'object');
247  var e = document.getElementById(sAppName + 'embed');
248 
249  frameWidth = (frameWidth < <?=$iMinWidth?>) ? <?=$iMinWidth?> : frameWidth;
250  frameHeight = (frameHeight < <?=$iMinHeight?>) ? <?=$iMinHeight?> : frameHeight;
251 
252 <?php
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" : "";
258  $sRet .= "}";
259  echo $sRet;
260 ?>
261  }
262  </script>
263 <?php
264  }
265  if(!$bEmbedCode && $aModules[$sApp]['reloadable']) {
266  if(!$bInline) echo getRedirectForm($sModule, $sApp, array_merge($_GET, $_POST));
267 ?>
268  <script type="text/javascript" language="javascript">
269  function reload()
270  {
271 <?php
272  $sGet = $_SERVER['QUERY_STRING'];
273  $sExtraGet = implode("&", $aParametersReload);
274  if(!empty($sGet) && !empty($sExtraGet)) $sGet .= "&";
275 ?>
276 <?= !$bInline ? "redirect();" : "location.href='" . $_SERVER['PHP_SELF'] . "?" . $sGet . $sExtraGet . "';" ?>
277  }
278  </script>
279 <?php
280  }
281 ?>
282 <div id="<?=$sDivId?>" <?=$sDivName . $sDivStyle?>><div id="<?=$sInnerDivId?>"></div></div>
283 <script type="text/javascript" language="javascript">
284 <?php
285  foreach($aConfig['flashVars'] as $sKey => $sValue) {
286  if(!isset($_GET[$sKey]) && $sKey != 'url') $aParametersReload[] = $sKey . "=" . (isset($aConfig['flashVars'][$sKey]) ? $aConfig['flashVars'][$sKey] : process_db_input($_REQUEST[$sKey]));
287  }
288 ?>
289 <?=phpArrayToJS($aConfig['flashVars'], "flashvars")?>
290 <?=phpArrayToJS($aConfig['params'], "params")?>
291 
292 var attributes = {
293  id: "ray_flash_<?=$sModule?>_<?=$sApp?>_object",
294  name: "ray_flash_<?=$sModule?>_<?=$sApp?>_embed",
295  style: "display:block;"
296 };
297 swfobject.embedSWF("<?=$aConfig['holder']?>", "<?=$sInnerDivId?>", "<?=$aConfig['width']?>", "<?=$aConfig['height']?>", "<?=$sFlashPlayerVersion?>", "<?=$sGlobalUrl?>app/expressInstall.swf", flashvars, params, attributes);
298 </script>
299 <?php
300  if(!$bInline) {
301 ?>
302  </body>
303  </html>
304 <?php
305  }
306  $sWidgetContent = ob_get_contents();
307  ob_end_clean();
308 
309  return $sWidgetContent;
310 }
311 
315 function getRedirectForm($sModule, $sApp, $aRequest)
316 {
317  ob_start();
318 ?>
319  <form style="margin:0; padding:0;" name="<?= $sModule . "-" . $sApp; ?>" method="POST" action="<?= $_SERVER['PHP_SELF']; ?>">
320  <input type="hidden" name="module" value="<?= $sModule; ?>" />
321  <input type="hidden" name="app" value="<?= $sApp; ?>" />
322 <?php
323  foreach($aRequest as $sKey => $sValue) {
324 ?>
325  <input type="hidden" name="<?=process_db_input($sKey, CH_TAGS_SPECIAL_CHARS)?>" value="<?=process_db_input($sValue, CH_TAGS_SPECIAL_CHARS)?>" />
326 <?php
327  }
328 ?>
329  </form>
330  <script>
331  <!--
332  function redirect()
333  {
334  document.forms['<?= $sModule . "-" . $sApp; ?>'].submit();
335  }
336  -->
337  </script>
338 <?php
339  $sReturn = ob_get_contents();
340  ob_end_clean();
341  return $sReturn;
342 }
343 
344 function phpArrayToJS($aArray, $sName)
345 {
346  $aNewArray = array();
347  foreach($aArray as $sKey => $sValue)
348  $aNewArray[] = $sKey . ':"' . $sValue . '"';
349  return "var " . $sName . "={" . implode(",", $aNewArray) . "};";
350 }
process_db_input
process_db_input($sText, $iStripTags=0)
Definition: utils.inc.php:256
document
Output SortAttr HTML Purifier will sort attributes by name before writing them back to the document
Definition: Output.SortAttr.txt:8
$sGlobalUrl
$sGlobalUrl
Definition: header.inc.php:56
getRedirectForm
getRedirectForm($sModule, $sApp, $aRequest)
Definition: content.inc.php:315
$sIncPath
$sIncPath
Definition: header.inc.php:64
name
Core AllowHostnameUnderscore underscores are not permitted in host most browsers do the right thing when faced with an underscore in the host name
Definition: Core.AllowHostnameUnderscore.txt:11
$sFlashPlayerVersion
$sFlashPlayerVersion
Definition: header.inc.php:31
$sModulesUrl
$sModulesUrl
Definition: header.inc.php:52
$sHomeUrl
$sHomeUrl
Definition: header.inc.php:41
php
$sModule
if(!file_exists($sRayHeaderPath)) $sModule
Definition: index.php:14
$sModulesPath
$sModulesPath
Definition: header.inc.php:53
$sDataPath
$sDataPath
Definition: header.inc.php:68
$sWidget
$sWidget
Definition: actions.inc.php:18
$sModulesDir
$sModulesDir
Definition: header.inc.php:51
$aInfo
$aInfo
Definition: constants.inc.php:21
getFlashConfig
getFlashConfig($sModule, $sApp, $aParamValues)
Definition: content.inc.php:79
getEmbedCode
getEmbedCode($sModule, $sApp, $aParamValues)
Definition: content.inc.php:131
$_GET
$_GET['debug']
Definition: index.php:67
$sRayXmlUrl
$sRayXmlUrl
Definition: header.inc.php:44
$sLicense
if(isset($_GET['checklic'])) if(isset($_POST['license_code']) &&isset($_POST['register'])) if(isset($_POST['recheck'])) if(isset($_POST['reset'])) $sLicense
Definition: license.php:57
content
AutoFormat RemoveEmpty HTML Purifier will attempt to remove empty elements that contribute no semantic information to the document The following types of nodes will be and that are not empty and</li >< li > Tags with no content
Definition: AutoFormat.RemoveEmpty.txt:17
setRayCheetahLicense
setRayCheetahLicense($sLicense)
Definition: content.inc.php:24
$sGlobalDir
$sGlobalDir
Definition: header.inc.php:55
$_REQUEST
$_REQUEST['action']
Definition: cmd.php:11
getWMode
getWMode()
Definition: apiFunctions.inc.php:106
type
if(!defined("USER_STATUS_TYPE")) define("USER_STATUS_TYPE" type
Definition: constants.inc.php:13
global
if(!defined("GLOBAL_MODULE")) define("GLOBAL_MODULE" global
Definition: header.inc.php:25
getApplicationContent
getApplicationContent($sModule, $sApp, $aParamValues=array(), $bInline=false, $bEmbedCode=false, $sHtmlId="")
Definition: content.inc.php:166
time
that in the case of a Adaptation or at a minimum such credit will if a credit for all contributing authors of the Adaptation or Collection then as part of these credits and in a manner at least as prominent as the credits for the other contributing authors For the avoidance of You may only use the credit required by this Section for the purpose of attribution in the manner set out above by exercising Your rights under this You may not implicitly or explicitly assert or imply any connection sponsorship or endorsement by the Original Licensor and or Attribution as of You or Your use of the without the express prior written permission of the Original Licensor and or Attribution Parties Except as otherwise agreed in writing by the Licensor or as may be otherwise permitted by applicable if You Distribute or Publicly Perform the Work either by itself or as part of any Adaptations or You must not modify or take other derogatory action in relation to the Work which would be prejudicial to the Original Author s honor or reputation Licensor agrees that in those in which any exercise of the right granted in modification or other derogatory action prejudicial to the Original Author s honor and the Licensor will waive or not as this to the fullest extent permitted by the applicable national to enable You to reasonably exercise Your right under Warranties and Disclaimer UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN LICENSOR OFFERS THE WORK AS IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE STATUTORY OR WITHOUT WARRANTIES OF FITNESS FOR A PARTICULAR OR THE ABSENCE OF LATENT OR OTHER OR THE PRESENCE OF ABSENCE OF WHETHER OR NOT DISCOVERABLE SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED SO SUCH EXCLUSION MAY NOT APPLY TO YOU Limitation on Liability EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES Termination This License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License Individuals or entities who have received Adaptations or Collections from You under this will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses and will survive any termination of this License Subject to the above terms and the license granted here is Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time
Definition: license.txt:56
value
URI Base such as when URI MakeAbsolute is on You may use a non absolute URI for this value
Definition: URI.Base.txt:11
method
and that you are informed that you can do these things To protect your we need to make restrictions that forbid distributors to deny you these rights or to ask you to surrender these rights These restrictions translate to certain responsibilities for you if you distribute copies of the library or if you modify it For if you distribute copies of the whether gratis or for a you must give the recipients all the rights that we gave you You must make sure that receive or can get the source code If you link other code with the you must provide complete object files to the so that they can relink them with the library after making changes to the library and recompiling it And you must show them these terms so they know their rights We protect your rights with a two step method
Definition: license.txt:49
$sRayHomeDir
$sRayHomeDir
Definition: header.inc.php:39
$aConfig
$aConfig
Definition: config.php:8
phpArrayToJS
phpArrayToJS($aArray, $sName)
Definition: content.inc.php:344
isCheetahWidgetsRegistered
isCheetahWidgetsRegistered()
Definition: content.inc.php:18
$aModules
$aModules
Definition: constants.inc.php:29
getRayIntegrationJS
getRayIntegrationJS($isCheetahPage=0)
Definition: content.inc.php:41
widgetExists
widgetExists($sWidget)
Definition: content.inc.php:70
$sGlobalPath
$sGlobalPath
Definition: header.inc.php:57
getSettingValue
getSettingValue($sWidget, $sSettingKey, $sFile="config", $bFullReturn=false, $sFolder="xml")
Definition: apiFunctions.inc.php:82
setSettingValue
setSettingValue($sWidget, $sSettingKey, $sSettingValue, $sFile="config")
Definition: apiFunctions.inc.php:43
empty
Attr AllowedRel this is empty
Definition: Attr.AllowedRel.txt:7
as
as
Definition: Filter.ExtractStyleBlocks.Escaping.txt:10
rayGetSettingValue
rayGetSettingValue($sWidget, $sSettingKey)
Definition: content.inc.php:13
$sName
$sName
Definition: ChWsbAdminTools.php:853
$sApp
$sApp
Definition: index.php:15
$sSettingKey
$sSettingKey
Definition: actions.inc.php:29
http
AutoFormat Linkify auto linking http
Definition: AutoFormat.Linkify.txt:8
form
iii in the case of the organization that transmits the broadcast Work means the literary and or artistic work offered under the terms of this License including without limitation any production in the scientific and artistic whatever may be the mode or form of its expression including digital form
Definition: license.txt:19
$GLOBALS
$GLOBALS['iAdminPage']
Definition: advanced_settings.php:10