當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Update::updateAvailable方法代碼示例

本文整理匯總了PHP中Update::updateAvailable方法的典型用法代碼示例。如果您正苦於以下問題:PHP Update::updateAvailable方法的具體用法?PHP Update::updateAvailable怎麽用?PHP Update::updateAvailable使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Update的用法示例。


在下文中一共展示了Update::updateAvailable方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: url

if (!$gSetupObj->configOutDated()) {
    echo Settings::getDesktopPlayer();
}
?>
';</script>
  <?php 
$xajax->printJavascript();
// XAJAX part 2
?>
</head>
<body <?php 
echo $gSetupObj->configOutDated() ? 'class="setup"' : '';
?>
 >
<?php 
if ($gUpdateObj->updateAvailable()) {
    echo '<div id="updateAvailable" class="separator">There is an update available of Dreambox ReStream. Click here to <a href="javascript:void(0);" onclick="DreamboxObj.update()" title="Update Dreambox ReStream to version ' . $gUpdateObj->getLatestUpdateVersion() . '">update to the latest version ' . $gUpdateObj->getLatestUpdateVersion() . '</a><span style="float:right; height: 20px; width:20px; display:block;"><a href="javascript:void(0);" onclick="jQuery(\'#updateAvailable\').hide();" title="Close">X</a></span></div>';
}
?>
<div id="wrapper">
	<h1><script type="text/javascript">document.write(document.title)</script></h1>
	<div id="ReStreamUI">
<?php 
if (date("m") == 12 && (date('d') == 25 || date('d') == 26)) {
    echo '<div id="christmashat" style="background: url(\'images/christmashat.png\') no-repeat;width: 76px; height: 88px;background-size:100%;position:absolute;z-index:99;left: 910px;top:-30px;float:right;"></div>';
}
?>
		<div id="PlayerWrapper">
			<div id="ReStreamPlayer">
				<?php 
if ($gSetupObj->configOutDated()) {
開發者ID:theyosh,項目名稱:DreamboxReStream,代碼行數:31,代碼來源:index.php


注:本文中的Update::updateAvailable方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。