⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 reorder_tasks.php

📁 ProjectPier 源码 很好的项目管理程序
💻 PHP
字号:
<?php  set_page_title(lang('reorder tasks'));  project_tabbed_navigation(PROJECT_TAB_TASKS);  project_crumbs(array(    array(lang('tasks'), get_url('task')),    array($task_list->getName(), $task_list->getViewUrl()),    array(lang('reorder tasks'))  ));    add_stylesheet_to_page('project/reorder_tasks.css');?><div id="reorderTasks">  <form action="<?php echo $task_list->getReorderTasksUrl($back_to_list) ?>" method="post">    <table class="blank">      <tr>        <th><?php echo lang('order') ?></th>        <th><?php echo lang('task') ?></th>      </tr><?php foreach ($tasks as $task) { ?>      <tr>        <td><?php echo text_field('task_' . $task->getId(), $task->getOrder(), array('class' => 'short')) ?></td>        <td><?php echo clean($task->getText()) ?></td>      </tr><?php } // foreach ?>    </table>    <input type="hidden" name="submitted" value="submitted" />    <?php echo submit_button(lang('reorder tasks')) ?>  </form></div>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -