📄 add_comment.php
字号:
<?php set_page_title($comment->isNew() ? lang('add comment') : lang('edit comment')); project_tabbed_navigation(PROJECT_TAB_OVERVIEW); project_crumbs(array( $comment->isNew() ? lang('add comment') : lang('edit comment') )); // project_crumbs?><?php if ($comment->isNew()) { ?><form action="<?php echo Comment::getAddUrl($comment_form_object) ?>" method="post"><?php } else { ?><form action="<?php echo $comment->getEditUrl() ?>" method="post"><?php } // if ?><?php tpl_display(get_template_path('form_errors')) ?><?php if ($comment_form_object->columnExists('comments_enabled') && !$comment_form_object->getCommentsEnabled() && logged_user()->isAdministrator()) { ?><p class="error"><?php echo lang('admins can post comments on locked objects desc') ?></p><?php } // if ?> <div class="formAddCommentText"> <?php echo label_tag(lang('text'), 'addCommentText', true) ?> <?php echo textarea_field("comment[text]", array_var($comment_data, 'text'), array('class' => 'comment', 'id' => 'addCommentText')) ?> </div> <?php if (logged_user()->isMemberOfOwnerCompany()) { ?> <fieldset> <legend><?php echo lang('options') ?></legend> <div class="objectOption"> <div class="optionLabel"><label><?php echo lang('private comment') ?>:</label></div> <div class="optionControl"><?php echo yes_no_widget('comment[is_private]', 'addCommentIsPrivate', array_var($comment_data, 'is_private'), lang('yes'), lang('no')) ?></div> <div class="optionDesc"><?php echo lang('private comment desc') ?></div> </div> </fieldset><?php } // if ?><?php if ($comment->columnExists('comments_enabled') && !$comment->getCommentsEnabled() && logged_user()->isAdministrator()) { ?><p class="error"><?php echo lang('admins can post comments on locked objects desc') ?></p><?php } // if ?> <?php echo submit_button($comment->isNew() ? lang('add comment') : lang('edit comment')) ?></form>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -