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


PHP WC_HTML::getColorForPercent方法代碼示例

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


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

示例1: sprintf

 $site instanceof WC_Site;
 $site->setVars($data);
 $regat->setVars($data);
 $siteid = $site->getVar('site_id');
 //		$regat = WC_RegAt::getRegatRow($userid, $siteid);
 $btn_update = sprintf('<input type="submit" name="update[%s]" value="%s" />', $siteid, $tLang->lang('btn_update'));
 echo GWF_Table::rowStart();
 echo GWF_Table::column($site->displayStatus());
 echo GWF_Table::column($site->displayIcon(1.0) . '&nbsp;' . $site->displayLink());
 echo GWF_Table::column($regat->getVar('regat_challsolved'), 'gwf_num');
 echo GWF_Table::column($site->getVar('site_challcount'), 'gwf_num');
 echo GWF_Table::column($site->displayAutoUpdate());
 echo GWF_Table::column($btn_update);
 echo GWF_Table::column($regat->getVar('regat_score'), 'gwf_num');
 $perc = $regat->getPercent($site->getOnsiteScore());
 $color = WC_HTML::getColorForPercent($perc);
 echo GWF_Table::column(sprintf('<span style="color: #%s">%.02f%%</span>', $color, $perc), 'gwf_num');
 echo GWF_Table::column($regat->displayLastDate(), 'gwf_date');
 echo GWF_Table::column($regat->displayOnsiteName());
 if ($regat->isOnsitenameHidden()) {
     echo GWF_Table::column(sprintf('<input type="submit" name="showname[%s]" value="%s" />', $siteid, $txtshow));
 } else {
     echo GWF_Table::column(sprintf('<input type="submit" name="hidename[%s]" value="%s" />', $siteid, $txthide));
 }
 //		if ($regat->isScored()) {
 //			echo GWF_Table::column(sprintf('<input type="submit" name="scored[%s]" value="%s" />', $siteid, $txtscore));
 //		} else {
 //			echo GWF_Table::column(sprintf('<input type="submit" name="unscored[%s]" value="%s" />', $siteid, $txtunscore));
 //		}
 echo sprintf('<td><input type="submit" name="unlink[%s]" value="%s" /></td>', $siteid, $tLang->lang('btn_unlink'));
 echo GWF_Table::rowEnd();
開發者ID:sinfocol,項目名稱:gwf3,代碼行數:31,代碼來源:linked_sites.php

示例2: sprintf

</th>
	</tr>
<?php 
for ($i = 0; $i <= 11; $i++) {
    ?>
	<?php 
    echo GWF_Table::rowStart();
    ?>
		<?php 
    echo sprintf('<th>%s</th>', $i === 11 ? $tLang->lang('th_avg') : $i);
    ?>
		<?php 
    echo sprintf('<td><div style="width: %s%%; background-color: #%s;">%s%% (%d votes)</div></td>', round($dif[$i][1]), WC_HTML::getColorForPercent($dif[$i][1]), $dif[$i][1], $dif[$i][0]);
    ?>
		<?php 
    echo sprintf('<td><div style="width: %s%%; background-color: #%s;">%s%% (%d votes)</div></td>', round($edu[$i][1]), WC_HTML::getColorForPercent($edu[$i][1]), $edu[$i][1], $edu[$i][0]);
    ?>
		<?php 
    echo sprintf('<td><div style="width: %s%%; background-color: #%s;">%s%% (%d votes)</div></td>', round($fun[$i][1]), WC_HTML::getColorForPercent($fun[$i][1]), $fun[$i][1], $fun[$i][0]);
    ?>
	<?php 
    echo GWF_Table::rowEnd();
}
?>
</table>
</div>

<?php 
if ($tVars['has_solved']) {
    echo $tVars['form_vote'];
}
開發者ID:sinfocol,項目名稱:gwf3,代碼行數:31,代碼來源:chall_votes.php

示例3: displayVoteValue

 public function displayVoteValue($value)
 {
     $percent = ($value - 1) * 25;
     return sprintf('<b style="color:#%s;">%.02f%%</b>', WC_HTML::getColorForPercent($percent), $percent);
 }
開發者ID:sinfocol,項目名稱:gwf3,代碼行數:5,代碼來源:WC_Site.php


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