本文整理汇总了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) . ' ' . $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();
示例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'];
}
示例3: displayVoteValue
public function displayVoteValue($value)
{
$percent = ($value - 1) * 25;
return sprintf('<b style="color:#%s;">%.02f%%</b>', WC_HTML::getColorForPercent($percent), $percent);
}