tool_test_email.php
来自「ProjectPier 源码 很好的项目管理程序」· PHP 代码 · 共 24 行
PHP
24 行
<?php set_page_title($tool->getDisplayName()); administration_tabbed_navigation(ADMINISTRATION_TAB_TOOLS); administration_crumbs(array( array(lang('administration tools'), get_url('administration', 'tools')), array($tool->getDisplayName()) ));?><form action="<?php echo $tool->getToolUrl() ?>" method="post"><?php tpl_display(get_template_path('form_errors')) ?> <div> <?php echo label_tag(lang('test mail recipient'), 'testMailFormRecipient', true) ?> <?php echo text_field('test_mail[recipient]', array_var($test_mail_data, 'recipient'), array('id' => 'testMailFormRecipient', 'class' => 'long')) ?> </div> <div> <?php echo label_tag(lang('test mail message'), 'testMailFormMessage', true) ?> <?php echo textarea_field('test_mail[message]', array_var($test_mail_data, 'message'), array('id' => 'testMailFormMessage')) ?> </div> <?php echo submit_button(lang('submit')) ?></form>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?