当前位置: 首页>>代码示例>>PHP>>正文


PHP html::selectReverse方法代码示例

本文整理汇总了PHP中html::selectReverse方法的典型用法代码示例。如果您正苦于以下问题:PHP html::selectReverse方法的具体用法?PHP html::selectReverse怎么用?PHP html::selectReverse使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在html的用法示例。


在下文中一共展示了html::selectReverse方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1:

'><?php 
    echo $lang->story->statusList[$story->status];
    ?>
</td>
        <td><?php 
    echo $lang->story->stageList[$story->stage];
    ?>
</td>
      </tr>
      <?php 
}
?>
      </tbody>
      <tfoot>
        <tr>
          <td colspan='8' class='text-left'>
            <?php 
if (count($allStories)) {
    echo "<div class='table-actions clearfix'>";
    echo "<div class='btn-group'>" . html::selectAll('unlinkedStoriesForm') . html::selectReverse('unlinkedStoriesForm') . '</div>';
    echo html::submitButton($lang->story->linkStory) . html::a(inlink('view', "releaseID={$release->id}&type=story"), $lang->goback, '', "class='btn'") . '</div>';
}
?>
          </td>
        </tr>
      </tfoot>
    </table>
  </form>
</div>
<script>$(function(){ajaxGetSearchForm('#stories .linkBox #querybox')})</script>
开发者ID:XMGmen,项目名称:zentao,代码行数:30,代码来源:linkstory.html.php

示例2:

    if (strtotime(date('Y-m-d H:i:s')) - strtotime($user->locked) < $this->config->user->lockMinutes * 60) {
        common::printIcon('user', 'unlock', "userID={$user->account}", '', 'list', '', "hiddenwin");
    }
    ?>
          </td>
        </tr>
        <?php 
}
?>
        </tbody>
        <tfoot>
        <tr>
          <td colspan='12'>
          <?php 
if ($canBatchEdit or $canManageContacts) {
    echo html::selectAll() . html::selectReverse();
}
if ($canBatchEdit) {
    echo html::submitButton($lang->edit, 'onclick=batchEdit()');
}
if ($canManageContacts) {
    echo html::submitButton($lang->user->contacts->manage, 'onclick=manageContacts()');
}
$pager->show();
?>
          </td>
        </tr>
        </tfoot>
      </table>
    </td>
  </tr>
开发者ID:laiello,项目名称:zentaoms,代码行数:31,代码来源:browse.html.php

示例3: sprintf

        echo html::a("javascript:ajaxDelete(\"{$unlinkURL}\",\"leftBugList\",confirmUnlinkBug)", '<i class="icon-unlink"></i>', '', "class='btn-icon' title='{$lang->release->unlinkBug}'");
    }
    ?>
                </td>
              </tr>
              <?php 
}
?>
              <tfoot>
                <tr>
                  <td colspan='7'>
                    <div class='table-actions clearfix'>
                      <div class='text'>
                        <?php 
if ($countLeftBugs and $canBatchUnlink) {
    echo "<div class='table-actions clearfix'><div class='btn-group'>" . html::selectAll('linkedBugsForm') . html::selectReverse('linkedBugsForm') . '</div>' . html::submitButton($lang->release->batchUnlink) . '</div>';
}
?>
                        <?php 
echo sprintf($lang->release->createdBugs, $countLeftBugs);
?>
                      </div>
                    </div>
                  </td>
                </tr>
              </tfoot>
            </table>
            </form>
          </div>
        </div>
      </div>
开发者ID:caiwenhao,项目名称:zentao,代码行数:31,代码来源:view.html.php

示例4:

</td>
      <td><?php 
    echo $story->estimate;
    ?>
</td>
    </tr>
    <?php 
    $storyCount++;
    ?>
    <?php 
}
?>
    </tbody>
    <tfoot>
      <tr>
        <td colspan='7' class='a-left'>
          <?php 
if ($storyCount) {
    echo html::selectAll() . html::selectReverse() . html::submitButton();
}
if (!$storyCount) {
    echo $lang->project->whyNoStories;
}
?>
        </td>
      </tr>
    </tfoot>
  </table>
</form>
<?php 
include '../../common/view/footer.html.php';
开发者ID:huokedu,项目名称:zentao,代码行数:31,代码来源:linkstory.html.php

示例5:

  <tr valign='top'>
    <td class='side'>
      <div class='box-title'><?php 
echo $lang->story->report->select;
?>
</div>
      <div class='box-content'>
        <form method='post'>
        <?php 
echo html::checkBox('charts', $lang->story->report->charts, $checkedCharts);
?>
        <?php 
echo html::selectAll();
?>
        <?php 
echo html::selectReverse();
?>
        <br /><br />
        <?php 
echo html::submitButton($lang->story->report->create);
?>
      </div>
    </td>
    <td class='divider'></td>
    <td>
      <table class='table-1'>
        <caption><?php 
echo $lang->story->report->common;
?>
</caption>
        <?php 
开发者ID:huokedu,项目名称:zentao,代码行数:31,代码来源:report.html.php

示例6: zget

</td>
      <td><?php 
    echo html::select("pri[{$bug->id}]", $lang->task->priList, 3);
    ?>
</td>
      <td><?php 
    echo html::select("assignedTo[{$bug->id}]", $users, zget($users, $bug->assignedTo, '', $bug->assignedTo));
    ?>
</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><?php 
echo html::selectAll() . html::selectReverse() . html::submitButton($lang->import) . html::backButton();
?>
</div>
</form>
</div>
<?php 
include '../../common/view/footer.html.php';
开发者ID:laiello,项目名称:zentaoms,代码行数:31,代码来源:importbug.html.php

示例7:

    common::printIcon('task', 'activate', "taskID={$task->id}", $task, 'list');
    ?>
      </td>
    </tr>
    <?php 
}
?>
    </tbody>
    <tfoot>
      <tr>
        <td colspan='11'>
        <?php 
if ($canBatchClose) {
    ?>
        <div class='f-left'><?php 
    echo html::selectAll() . html::selectReverse() . html::submitButton($lang->close);
    ?>
</div> 
        <?php 
}
?>
        <?php 
$pager->show();
?>
        </td>
      </tr>
    </tfoot>
  </table> 
<?php 
if ($canBatchClose) {
    echo '</form>';
开发者ID:shshenpengfei,项目名称:scrum_project_manage_system,代码行数:31,代码来源:task.html.php

示例8:

        echo html::a("javascript:ajaxDelete(\"{$unlinkURL}\",\"bugList\",confirmUnlinkBug)", "<i class='icon-remove'></i>", '', "title='{$lang->build->unlinkBug}' class='btn-icon'");
    }
    ?>
        </td>
      </tr>
      <?php 
}
?>
      <?php 
if (count($buildBugs) and $canBatchUnlink) {
    ?>
      <tfoot>
      <tr>
        <td colspan='8' class='text-left'>
        <?php 
    echo "<div class='table-actions clearfix'><div class='btn-group'>" . html::selectAll('linkedBugsForm') . html::selectReverse('linkedBugsForm') . '</div>';
    echo html::submitButton($lang->productplan->batchUnlink) . '</div>';
    ?>
        </td>
      </tr>
      </tfoot>
      <?php 
}
?>
      </tbody>
    </table>
  </form>
</div>
<script>$(function(){ajaxGetSearchForm()})</script>
<?php 
include '../../common/view/footer.html.php';
开发者ID:fanscky,项目名称:HTPMS,代码行数:31,代码来源:linkbug.html.php

示例9: inLink

</td>
        <td><?php 
    echo $lang->story->stageList[$story->stage];
    ?>
</td>
      </tr>
      <?php 
}
?>
      </tbody>
      <tfoot>
        <tr>
          <td colspan='9' class='text-left'>
            <?php 
if (count($allStories)) {
    echo "<div class='table-actions clearfix'><div class='btn-group'>" . html::selectAll('unlinkedStoriesForm') . html::selectReverse('unlinkedStoriesForm') . '</div>' . html::submitButton($lang->story->linkStory) . '</div>';
}
?>
          </td>
        </tr>
      </tfoot>
    </table>
  </form>
  <hr class='mg-0'>
  <form method='post' target='hiddenwin' action="<?php 
echo inLink('batchUnlinkStory');
?>
" id='linkedStoriesForm'>
    <table class='table table-condensed table-hover table-striped tablesorter table-fixed'> 
      <caption class='text-left text-important'><?php 
echo html::icon('link');
开发者ID:iamazhi,项目名称:zentaopms,代码行数:31,代码来源:linkstory.html.php

示例10:

    ?>
'><?php 
    echo $lang->bug->statusList[$bug->status];
    ?>
</td>
      </tr>
      <?php 
}
?>
      </tbody>
      <tfoot>
      <tr>
        <td colspan='6' class='text-left'>
          <?php 
if (count($allBugs)) {
    echo "<div class='table-actions clearfix'>";
    echo "<div class='btn-group'>" . html::selectAll($formID) . html::selectReverse($formID) . '</div>';
    echo html::submitButton($lang->release->linkBug) . html::a(inlink('view', "releaseID={$release->id}&type={$type}"), $lang->goback, '', "class='btn'") . '</div>';
}
?>
        </td>
      </tr>
      </tfoot>
    </table>
  </form>
</div>
<script>$(function(){ajaxGetSearchForm('#<?php 
echo $type == 'bug' ? 'bugs' : 'leftBugs';
?>
 .linkBox #querybox')})</script>
开发者ID:heeeello,项目名称:zentaopms,代码行数:30,代码来源:linkbug.html.php

示例11:

    ?>
</td>
      <td><?php 
    common::printIcon('productplan', 'unlinkStory', "story={$story->id}", '', 'list', '', 'hiddenwin');
    ?>
</td>
    </tr>
    <?php 
}
?>
    <?php 
if (count($planStories) and $canBatchUnlink) {
    ?>
    <tfoot>
    <tr>
      <td colspan='9' class='a-left'>
      <?php 
    echo html::selectAll('linkedStoriesForm') . html::selectReverse('linkedStoriesForm');
    echo html::submitButton($lang->productplan->batchUnlinkStory);
    ?>
      </td>
    </tr>
    </tfoot>
    <?php 
}
?>
    </tbody>
  </table>
</form>
<?php 
include '../../common/view/footer.html.php';
开发者ID:laiello,项目名称:zentaoms,代码行数:31,代码来源:linkstory.html.php

示例12: count

}
?>
          </tbody>
          <tfoot>
            <tr>
              <?php 
$columns = $this->cookie->windowWidth > $this->config->wideSize ? 14 : 12;
?>
              <td colspan='<?php 
echo $columns;
?>
'>
                <div class='f-left'>
                <?php 
if (common::hasPriv('task', 'batchEdit') and count($tasks)) {
    echo html::selectAll() . html::selectReverse() . html::submitButton($lang->task->batchEdit);
}
printf($lang->project->taskSummary, count($tasks), $statusWait, $statusDoing, $totalEstimate, $totalConsumed, $totalLeft, round($estimate_sum * $pcwh), round($consumed_sum) * $pcwh);
?>
                </div>
                <?php 
$pager->show();
?>
              </td>
            </tr>
          </tfoot>
        </table>
      </form>
    </td>
  </tr>
</table>
开发者ID:shshenpengfei,项目名称:scrum_project_manage_system,代码行数:31,代码来源:task.html.php

示例13:

      <td class=<?php 
    echo $task->status;
    ?>
 ><?php 
    echo $lang->task->statusList[$task->status];
    ?>
</td>
      <td class='a-left nobr'>
        <?php 
    if ($task->storyID) {
        if (common::hasPriv('story', 'view')) {
            echo html::a($this->createLink('story', 'view', "storyid={$task->storyID}"), $task->storyTitle);
        } else {
            echo $task->storyTitle;
        }
    }
    ?>
      </td>
    </tr>
    <?php 
}
?>
    </tbody>
  </table>
  <div><?php 
echo html::selectAll() . html::selectReverse() . html::submitButton($lang->project->importTask);
?>
</div>
</form>
<?php 
include '../../common/view/footer.html.php';
开发者ID:laiello,项目名称:zentaoms,代码行数:31,代码来源:importtask.html.php

示例14: inLink

</td>
        <td><?php 
    echo $lang->bug->statusList[$bug->status];
    ?>
</td>
      </tr>
      <?php 
}
?>
      </tbody>
      <tfoot>
      <tr>
        <td colspan='6' class='text-left'>
          <?php 
if (count($allBugs)) {
    echo "<div class='table-actions clearfix'><div class='btn-group'>" . html::selectAll('unlinkedBugsForm') . html::selectReverse('unlinkedBugsForm') . '</div>' . html::submitButton($lang->productplan->linkBug) . '</div>';
}
?>
        </td>
      </tr>
      </tfoot>
    </table>
  </form>
  <hr class='mg-0'>
  <form method='post' target='hiddenwin' action="<?php 
echo inLink('batchUnlinkBug');
?>
" id='linkedBugsForm'>
    <table class='table table-condensed table-hover table-striped tablesorter table-fixed'> 
      <caption class='text-left text-important'><?php 
echo html::icon('unlink');
开发者ID:iamazhi,项目名称:zentaopms,代码行数:31,代码来源:linkbug.html.php

示例15:

    common::printIcon('bug', 'edit', $params, '', 'list');
    ?>
    </td>
  </tr>
  <?php 
}
?>
  </tbody>
  <tfoot>
    <tr><td colspan='9'>
    <?php 
if ($bugs and $canBatchEdit) {
    ?>
    <div class='f-left'>
    <?php 
    echo html::selectAll() . html::selectReverse() . html::submitButton($lang->edit);
    ?>
    </div>
    <?php 
}
?>
    <?php 
$pager->show();
?>
    </td></tr>
  </tfoot>
</table>
</form>
<script language='javascript'>$("#<?php 
echo $type;
?>
开发者ID:laiello,项目名称:zentaoms,代码行数:31,代码来源:bug.html.php


注:本文中的html::selectReverse方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。