本文整理汇总了PHP中html::resetButton方法的典型用法代码示例。如果您正苦于以下问题:PHP html::resetButton方法的具体用法?PHP html::resetButton怎么用?PHP html::resetButton使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类html
的用法示例。
在下文中一共展示了html::resetButton方法的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1:
<tr>
<th class='rowhead'><?php
echo $lang->bug->keywords;
?>
</th>
<td><?php
echo html::input('keywords', $keywords, "class='text-1'");
?>
</td>
</tr>
<tr>
<th class='rowhead'><?php
echo $lang->bug->files;
?>
</th>
<td><?php
echo $this->fetch('file', 'buildform', 'fileCount=2&percent=0.85');
?>
</td>
</tr>
<tr>
<td colspan='2' class='a-center'>
<?php
echo html::submitButton() . html::resetButton() . html::hidden('case', $caseID);
?>
</td>
</tr>
</table>
</form>
<?php
include '../../common/view/footer.html.php';
示例2: inlink
<fieldset>
<legend><?php
echo $lang->comment;
?>
</legend>
<form method='post' action='<?php
echo inlink('edit', "caseID={$case->id}&comment=true");
?>
'>
<table align='center' class='table-1'>
<tr><td><?php
echo html::textarea('comment', '', "rows='5' class='w-p100'");
?>
</td></tr>
<tr><td><?php
echo html::submitButton() . html::resetButton();
?>
</td></tr>
</table>
</form>
</fieldset>
</div>
</td>
<td class='divider'></td>
<td class='side'>
<fieldset>
<legend><?php
echo $lang->testcase->legendBasicInfo;
?>
</legend>
<table class='table-1 a-left fixed'>
示例3: htmlspecialchars
?>
</table>
</div>
</td>
</tr>
</table>
</div>
</div>
</td>
</tr>
<tr>
<th class='rowhead'><?php
echo $lang->release->desc;
?>
</th>
<td><?php
echo html::textarea('desc', htmlspecialchars($release->desc), "rows='20' class='area-1'");
?>
</td>
</tr>
<tr>
<td colspan='2' class='a-center'><?php
echo html::submitButton() . html::resetButton() . html::hidden('product', $release->product);
?>
</td>
</tr>
</table>
</form>
<?php
include '../../common/view/footer.html.php';
示例4: htmlspecialchars
echo $lang->productplan->end;
?>
</th>
<td><?php
echo html::input('end', $plan->end, 'class="text-3 date"');
?>
</td>
</tr>
<tr>
<th class='rowhead'><?php
echo $lang->productplan->desc;
?>
</th>
<td><?php
echo html::textarea('desc', htmlspecialchars($plan->desc), "rows='10' class='area-1'");
?>
</td>
</tr>
<tr>
<td colspan='2' class='a-center'>
<?php
echo html::submitButton();
echo html::resetButton();
echo html::hidden('product', $product->id);
?>
</td>
</tr>
</table>
</form>
<?php
include '../../common/view/footer.html.php';
示例5: inlink
</fieldset>
<?php
}
?>
<fieldset>
<legend><?php
echo $lang->info->files;
?>
</legend>
<?php
echo $this->fetch('file', 'buildform', 'filecount=2');
?>
</fieldset>
<div class='a-center'>
<?php
echo html::submitButton() . html::resetButton() . html::hidden('editedCount', $info->editedCount + 1);
$browseLink = $app->session->infoList != false ? $app->session->infoList : inlink('browse', "libID={$info->lib}");
echo html::linkButton($lang->goback, $browseLink);
?>
</div>
</td></tr>
</table>
<?php
include '../../common/view/action.html.php';
?>
</td>
<td class='divider'></td>
<td class='side'>
<fieldset>
<legend><?php
echo $lang->info->legendBasicInfo;
示例6: inlink
}
?>
<?php
} else {
?>
<?php
echo html::input($custom->Field, ${$custom->Field}, "class='text-1'");
?>
<?php
}
?>
</td>
</tr>
<?php
}
?>
</table>
</fieldset>
<?php
}
?>
<div class='a-center' style='font-size:16px; font-weight:bold'>
<?php
$browseLink = $app->session->assetList != false ? $app->session->assetList : inlink('browse', "libID={$libID}");
echo html::submitButton() . html::resetButton() . html::hidden('editedCount', 0);
echo html::linkButton($lang->goback, $browseLink);
?>
</div>
</form>
<?php
include '../../info/view/footer.html.php';
示例7: htmlspecialchars
<?php
}
?>
</table>
</div>
</td>
</tr>
</table>
</div>
</div>
</td>
</tr>
<tr>
<th class='rowhead'><?php
echo $lang->build->desc;
?>
</th>
<td><?php
echo html::textarea('desc', htmlspecialchars($build->desc), "rows='15' class='area-1'");
?>
</td>
</tr>
<tr><td colspan='2' class='a-center'><?php
echo html::submitButton() . html::resetButton() . html::hidden('project', $build->project);
?>
</td></tr>
</table>
</form>
<?php
include '../../common/view/footer.html.php';
示例8:
</tr>
<tr>
<th class='rowhead'><?php
echo $lang->doc->digest;
?>
</th>
<td><?php
echo html::textarea('digest', '', "class='text-1' rows=3");
?>
</td>
</tr>
<tr id='fileBox'>
<th class='rowhead'><?php
echo $lang->doc->files;
?>
</th>
<td><?php
echo $this->fetch('file', 'buildform', 'fileCount=2');
?>
</td>
</tr>
<tr>
<td colspan='2' class='a-center'><?php
echo html::submitButton() . html::resetButton() . html::hidden('lib', $libID);
?>
</td>
</tr>
</table>
</form>
<?php
include './footer.html.php';
示例9:
</td>
<td><?php
echo html::select("pri[{$bug->id}]", $lang->task->priList, 3);
?>
</td>
<td><?php
echo html::select("assignedTo[{$bug->id}]", $users, '');
?>
</td>
<td><?php
echo html::input("estimate[{$bug->id}]", '', 'size=4');
?>
</td>
</tr>
<?php
}
?>
</tbody>
<tr><td colspan='9'><div class='f-right'><?php
$pager->show();
?>
</div></td></tr>
</table>
<div class='a-center'><?php
echo html::submitButton($lang->import) . html::resetButton();
?>
</div>
</form>
</div>
<?php
include '../../common/view/footer.html.php';