本文整理汇总了PHP中UserData::getWater方法的典型用法代码示例。如果您正苦于以下问题:PHP UserData::getWater方法的具体用法?PHP UserData::getWater怎么用?PHP UserData::getWater使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类UserData
的用法示例。
在下文中一共展示了UserData::getWater方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: testGetWater
/**
* @covers UserData::getWater
*/
public function testGetWater()
{
$this->assertEquals($this->object->getWater(), 65.2);
}
示例2: displayContentInOldDesign
/**
* Display the content (old design)
*/
protected function displayContentInOldDesign()
{
$Weight = '';
$Pulse = '';
$Analyse = '';
$UserData = new UserData(DataObject::$LAST_OBJECT);
if ($this->Configuration()->value('use_weight')) {
$Weight = __('Weight') . ': <strong>' . Helper::Unknown($UserData->getWeight(), '-') . ' kg</strong><br>';
}
if ($this->Configuration()->value('use_pulse')) {
$Pulse = Helper::Unknown($UserData->getPulseRest(), '-') . ' bpm / ' . Helper::Unknown($UserData->getPulseMax()) . ' bpm';
} else {
$Pulse = Helper::Unknown($UserData->getPulseMax(), '-') . ' bpm';
}
if ($this->Configuration()->value('use_body_fat')) {
$Analyse = __('Fat') . ': ' . Helper::Unknown($UserData->getBodyFat(), '-') . ' %, ' . __('Water') . ': ' . Helper::Unknown($UserData->getWater(), '-') . ' %, ' . __('Muscles') . ': ' . Helper::Unknown($UserData->getMuscles(), '-') . ' %';
}
$AnalyseIsHidden = $this->Configuration()->value('use_weight') || $this->Configuration()->value('use_pulse');
if (!$AnalyseIsHidden && !$this->Configuration()->value('use_body_fat')) {
return;
}
echo '
<div id="sportler-content">
<span class="right">' . $Pulse . '</span>
' . Ajax::flotChange($Weight, 'sportler_flots', 'sportler_weights') . '
' . Ajax::flotChange($Analyse, 'sportler_flots', 'sportler_analyse', !$AnalyseIsHidden) . '
<div id="sportler_flots" class="flot-changeable" style="position:relative;width:320px;height:150px;margin:0 auto;">
<div class="flot ' . Ajax::$IMG_WAIT . '" id="sportler_weights" style="width:320px;height:150px;position:absolute;"></div>
<div class="flot ' . Ajax::$IMG_WAIT . ($AnalyseIsHidden ? ' flot-hide' : '') . '" id="sportler_analyse" style="width:320px;height:150px;position:absolute;"></div>
</div>
</div>';
include FRONTEND_PATH . '../plugin/' . $this->key() . '/Plot.gewicht.php';
include FRONTEND_PATH . '../plugin/' . $this->key() . '/Plot.analyse.php';
}