當前位置: 首頁>>代碼示例>>PHP>>正文


PHP PMA_getSubmitAndResetButtonForActionsPanel函數代碼示例

本文整理匯總了PHP中PMA_getSubmitAndResetButtonForActionsPanel函數的典型用法代碼示例。如果您正苦於以下問題:PHP PMA_getSubmitAndResetButtonForActionsPanel函數的具體用法?PHP PMA_getSubmitAndResetButtonForActionsPanel怎麽用?PHP PMA_getSubmitAndResetButtonForActionsPanel使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了PMA_getSubmitAndResetButtonForActionsPanel函數的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: 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

示例2: testGetSubmitAndResetButtonForActionsPanel

 /**
  * Test for PMA_getSubmitAndResetButtonForActionsPanel
  *
  * @return void
  */
 public function testGetSubmitAndResetButtonForActionsPanel()
 {
     $GLOBALS['cfg']['ShowHint'] = false;
     $result = PMA_getSubmitAndResetButtonForActionsPanel(1, 0);
     $this->assertContains('<input type="submit" class="control_at_footer" value="Go" ' . 'tabindex="7" id="buttonYes" />', $result);
     $this->assertContains('<input type="button" class="preview_sql" value="Preview SQL" ' . 'tabindex="8" />', $result);
     $this->assertContains('<input type="reset" class="control_at_footer" value="Reset" ' . 'tabindex="9" />', $result);
 }
開發者ID:RimeOfficial,項目名稱:phpMyAdmin,代碼行數:13,代碼來源:PMA_insert_edit_test.php


注:本文中的PMA_getSubmitAndResetButtonForActionsPanel函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。