本文整理汇总了PHP中Select::draw方法的典型用法代码示例。如果您正苦于以下问题:PHP Select::draw方法的具体用法?PHP Select::draw怎么用?PHP Select::draw使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Select
的用法示例。
在下文中一共展示了Select::draw方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: drawJaahyt
function drawJaahyt($tyyppi, &$joukkue)
{
$this->p('Jäähyt');
if (count($joukkue->jaahyt) > 0) {
?>
<table>
<tr>
<th>
<?php
$this->p('nro');
?>
</th>
<th>
<?php
$this->p('# Nimi');
?>
</th>
<th>
<?php
$this->p('Minuutit');
?>
</th>
<th>
<?php
$this->p('Syy');
?>
</th>
<th>
<?php
$this->p('tapahtumisaika');
?>
</th>
<th>
<?php
$this->p('Päättymisaika');
?>
</th>
</tr>
<?php
$i = 1;
foreach ($joukkue->jaahyt as $k => $v) {
print '<tr> <td>';
print $i;
print ' </td> <td>';
$cs = new Select($joukkue->select, $tyyppi . 'jhsaaja' . $i, $v['saaja']);
$cs->draw();
print ' </td> <td>';
$cb = new Input($tyyppi . "jhminuutit{$i}", $v['minuutit'], 'text', 5);
$cb->draw();
print ' </td> <td>';
$cb = new Input($tyyppi . "jhsyy{$i}", $v['syy'], 'text', 5);
$cb->draw();
print ' </td> <td>';
$cb = new Input($tyyppi . "jhtapahtumisaika{$i}", $v['tapahtumisaika'], 'text', 5);
$cb->draw();
print ' </td> <td>';
$cb = new Input($tyyppi . "jhpaattymisaika{$i}", $v['paattymisaika'], 'text', 5);
$cb->draw();
print '</td> </tr>';
$i++;
}
print '</table>';
} else {
print '<br>';
$this->p('Ei merkintöjä.');
}
print '<br>';
}
示例2: drawJoukkeenPelaajat
function drawJoukkeenPelaajat(&$joukkue)
{
print '<br>';
if (!$this->hasErrors) {
$joukkue->sortPelaajat();
}
$pelaajat = $joukkue->pelaajat;
if (count($pelaajat) > 0) {
?>
<table>
<tr>
<th><?php
$this->p('pelaaja');
?>
</th>
<th><?php
$this->p('Numero');
?>
</th>
<th><?php
$this->p('Nimi');
?>
</th>
<th><?php
$this->p('Maalivahti');
?>
</th>
<th><?php
$this->p('kapteeni');
?>
</th>
<th><?php
$this->p('(+/-)');
?>
</th>
<th><?php
$this->p('Peliaika');
?>
</th>
<th><?php
$this->p('Lisätiedot');
?>
</th>
</tr>
<?php
$toimih = array();
foreach ($pelaajat as $p) {
$hid = $p['pelaaja'];
print '<tr>';
print '<td>';
array_push($toimih, array($hid, $p['nimi']));
$kp = FALSE;
if (isset($p['kokoonpanossa']) and $p['kokoonpanossa']) {
$kp = TRUE;
}
$cb = new Checkbox($joukkue->tyyppi . 'pelaaja' . $hid, 'pelaaja', '', $kp);
$cb->draw();
print '</td><td>';
$cb = new Input($joukkue->tyyppi . 'numero' . $hid, $p['numero'], 'text', 2);
$cb->draw();
print '</td>';
print '<td>';
print $p['nimi'];
?>
</td><td>
<?php
$cb = new Checkbox($joukkue->tyyppi . 'maalivahti' . $hid, 'maalivahti', '', $p['maalivahti'] == 't' and $kp);
$cb->draw();
?>
</td><td>
<?php
$cb = new Checkbox($joukkue->tyyppi . 'kapteeni' . $hid, 'kapteeni', '', $p['kapteeni'] == 't' and $kp);
$cb->draw();
print '</td>';
print '<td>';
$cb = new Input($joukkue->tyyppi . 'plusmiinus' . $hid, $p['plusmiinus'], 'text', 3);
$cb->draw();
print '</td>';
print '<td>';
$cb = new Input($joukkue->tyyppi . 'peliaika' . $hid, $p['peliaika'], 'text', 5);
$cb->draw();
print '</td>';
print '<td>';
$cb = new Input($joukkue->tyyppi . 'lisatieto' . $hid, $p['lisatieto'], 'text', 500);
$cb->draw();
print '</td>';
print '</tr>';
}
print '</table>';
print '<br><br>';
print '<table>';
$tar = array(array('', $this->tm->getText('Valitse toimihenkilö')));
usort($toimih, 'toimihenkSort');
$toimih = $tar + $toimih;
$t = $joukkue->tyyppi == 'koti' ? 'a' : 'b';
for ($i = 1; $i < 6; $i++) {
print '<tr><td>';
$this->p('Toimihenkilö');
//.........这里部分代码省略.........