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


PHP PMA_getSubmitTypeDropDown函数代码示例

本文整理汇总了PHP中PMA_getSubmitTypeDropDown函数的典型用法代码示例。如果您正苦于以下问题:PHP PMA_getSubmitTypeDropDown函数的具体用法?PHP PMA_getSubmitTypeDropDown怎么用?PHP PMA_getSubmitTypeDropDown使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


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

示例1: testGetSubmitTypeDropDown

 /**
  * Test for PMA_getSubmitTypeDropDown
  *
  * @return void
  */
 public function testGetSubmitTypeDropDown()
 {
     $result = PMA_getSubmitTypeDropDown(true, 2, 2);
     $this->assertTag(PMA_getTagArray('<select name="submit_type" class="control_at_footer" tabindex="5">'), $result);
     $this->assertTag(PMA_getTagArray('<option value="save">', array('content' => 'Save')), $result);
 }
开发者ID:kfjihailong,项目名称:phpMyAdmin,代码行数:11,代码来源:PMA_insert_edit_test.php

示例2: PMA_getActionsPanel

/**
 * Get action panel
 *
 * @param array   $where_clause       where clause
 * @param string  $after_insert       insert mode, e.g. new_insert, same_insert
 * @param integer $tabindex           tab index
 * @param integer $tabindex_for_value offset for the values tabindex
 * @param boolean $found_unique_key   boolean variable for unique key
 *
 * @return string an html snippet
 */
function PMA_getActionsPanel($where_clause, $after_insert, $tabindex, $tabindex_for_value, $found_unique_key)
{
    $html_output = '<fieldset id="actions_panel">' . '<table cellpadding="5" cellspacing="0">' . '<tr>' . '<td class="nowrap vmiddle">' . PMA_getSubmitTypeDropDown($where_clause, $tabindex, $tabindex_for_value) . "\n";
    $html_output .= '</td>' . '<td class="vmiddle">' . '&nbsp;&nbsp;&nbsp;<strong>' . __('and then') . '</strong>&nbsp;&nbsp;&nbsp;' . '</td>' . '<td class="nowrap vmiddle">' . PMA_getAfterInsertDropDown($where_clause, $after_insert, $found_unique_key) . '</td>' . '</tr>';
    $html_output .= '<tr>' . PMA_getSubmitAndResetButtonForActionsPanel($tabindex, $tabindex_for_value) . '</tr>' . '</table>' . '</fieldset>';
    return $html_output;
}
开发者ID:hewenhao2008,项目名称:phpmyadmin,代码行数:18,代码来源:insert_edit.lib.php

示例3: testGetSubmitTypeDropDown

 /**
  * Test for PMA_getSubmitTypeDropDown
  *
  * @return void
  */
 public function testGetSubmitTypeDropDown()
 {
     $result = PMA_getSubmitTypeDropDown(array(), 2, 2);
     $this->assertContains('<select name="submit_type" class="control_at_footer" tabindex="5">', $result);
     $this->assertContains('<option value="save">', $result);
 }
开发者ID:RimeOfficial,项目名称:phpMyAdmin,代码行数:11,代码来源:PMA_insert_edit_test.php


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