• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

PHP html_button_field函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

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



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

示例1: Output

 function Output($params)
 {
     global $db, $currencies;
     if (count($params) != $this->size_params) {
         //upgrading
         $params = $this->Upgrade($params);
     }
     $list_length = array();
     $contents = '';
     $control = '';
     for ($i = 0; $i <= $this->max_length; $i++) {
         $list_length[] = array('id' => $i, 'text' => $i);
     }
     $list_order = array(array('id' => 'asc', 'text' => TEXT_ASC), array('id' => 'desc', 'text' => TEXT_DESC));
     $list_limit = array(array('id' => '0', 'text' => TEXT_NO), array('id' => '1', 'text' => TEXT_YES));
     // Build control box form data
     $control = '<div class="row">';
     $control .= '  <div style="white-space:nowrap">';
     $control .= TEXT_SHOW . TEXT_SHOW_NO_LIMIT . '&nbsp' . html_pull_down_menu('po_status_field_0', $list_length, $params['num_rows']) . '<br />';
     $control .= CP_PO_STATUS_SORT_ORDER . '&nbsp' . html_pull_down_menu('po_status_field_1', $list_order, $params['order']) . '<br />';
     $control .= CP_PO_STATUS_HIDE_FUTURE . '&nbsp' . html_pull_down_menu('po_status_field_2', $list_limit, $params['limit']);
     $control .= html_submit_field('sub_po_status', TEXT_SAVE);
     $control .= '  </div>';
     $control .= '</div>';
     if (count($params) != $this->size_params) {
         $this->update();
     }
     // Build content box
     $sql = "select id, post_date, purchase_invoice_id, bill_primary_name, total_amount, currencies_code, currencies_value \n\t\t  from " . TABLE_JOURNAL_MAIN . " where journal_id = 4 and closed = '0'";
     if ($params['limit'] == '1') {
         $sql .= " and post_date <= '" . date('Y-m-d') . "'";
     }
     if ($params['order'] == 'desc') {
         $sql .= " order by post_date desc";
     }
     if ($params['num_rows']) {
         $sql .= " limit " . $params['num_rows'];
     }
     $result = $db->Execute($sql);
     if ($result->RecordCount() < 1) {
         $contents = ACT_NO_RESULTS;
     } else {
         while (!$result->EOF) {
             $contents .= '<div style="float:right">';
             $contents .= html_button_field('invoice_' . $result->fields['id'], TEXT_RECEIVE, 'onclick="window.open(\'' . html_href_link(FILENAME_DEFAULT, 'module=phreebooks&amp;page=orders&amp;oID=' . $result->fields['id'] . '&amp;jID=6&amp;action=prc_so', 'SSL') . '\',\'_blank\')"') . "  ";
             $contents .= $currencies->format_full($result->fields['total_amount'], true, $result->fields['currencies_code'], $result->fields['currencies_value']);
             $contents .= '</div>';
             $contents .= '<div>';
             $contents .= '<a href="' . html_href_link(FILENAME_DEFAULT, 'module=phreebooks&amp;page=orders&amp;oID=' . $result->fields['id'] . '&amp;jID=4&amp;action=edit', 'SSL') . '">';
             $contents .= $result->fields['purchase_invoice_id'] . ' - ';
             $contents .= gen_locale_date($result->fields['post_date']);
             $contents .= ' ' . htmlspecialchars(gen_trim_string($result->fields['bill_primary_name'], 20, true));
             $contents .= '</a>';
             $contents .= '</div>' . chr(10);
             $result->MoveNext();
         }
     }
     return $this->build_div('', $contents, $control);
 }
开发者ID:siwiwit,项目名称:PhreeBooksERP,代码行数:59,代码来源:po_status.php


示例2: html_button_field

// | Copyright(c) 2008-2014 PhreeSoft      (www.PhreeSoft.com)       |
// +-----------------------------------------------------------------+
// | This program is free software: you can redistribute it and/or   |
// | modify it under the terms of the GNU General Public License as  |
// | published by the Free Software Foundation, either version 3 of  |
// | the License, or any later version.                              |
// |                                                                 |
// | This program is distributed in the hope that it will be useful, |
// | but WITHOUT ANY WARRANTY; without even the implied warranty of  |
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the   |
// | GNU General Public License for more details.                    |
// +-----------------------------------------------------------------+
//  Path: /modules/phreeform/pages/admin/template_tab_tools.php
//
?>
<div id="tab_tools">
<fieldset>
  <legend><?php 
echo PHREEFORM_TOOLS_REBUILD_TITLE;
?>
</legend>
  <p><?php 
echo PHREEFORM_TOOLS_REBUILD_DESC;
?>
</p>
  <p align="center"><?php 
echo PHREEFORM_TOOLS_REBUILD_SUBMIT . ' ' . html_button_field('fix', TEXT_SUBMIT, 'onclick="submitToDo(\'fix\')"');
?>
</fieldset>
</div>
开发者ID:TrinityComputers,项目名称:PhreeBooksERP,代码行数:30,代码来源:template_tab_tools.php


示例3: foreach

    foreach ($extra_toolbar_buttons as $key => $value) {
        $toolbar->icon_list[$key] = $value;
    }
}
// add the help file index and build the toolbar
$toolbar->add_help('03.04.02');
echo $toolbar->build_toolbar();
// Build the page
?>
<div class="pageHeading"><?php 
echo GL_HEADING_BEGINNING_BALANCES;
?>
</div>
<?php 
if ($security_level > 1) {
    echo '<div align="center">' . html_button_field('bb_inv', GL_BTN_IMP_BEG_BALANCES, 'onclick="location.href = \'' . html_href_link(FILENAME_DEFAULT, 'cat=gen_ledger&amp;module=beg_bal_imp', 'SSL') . '\'"') . '</div>' . chr(10);
}
?>
<table id="item_table" align="center" border="1" cellspacing="1" cellpadding="1">
  <tr>
	<th><?php 
echo TEXT_GL_ACCOUNT;
?>
</th>
	<th><?php 
echo TEXT_DESCRIPTION;
?>
</th>
	<th><?php 
echo TEXT_ACCOUNT_TYPE;
?>
开发者ID:jigsmaheta,项目名称:puerto-argentino,代码行数:31,代码来源:template_main.php


示例4: html_icon

      <th><?php 
echo html_icon('emblems/emblem-unreadable.png', TEXT_DELETE, 'small');
?>
</th>
      <th><?php 
echo TEXT_FILENAME;
?>
</th>
      <th><?php 
echo TEXT_ACTION;
?>
</th>
     </tr>
<?php 
if (sizeof($cInfo->attachments) > 0) {
    foreach ($cInfo->attachments as $key => $value) {
        echo '<tr>';
        echo ' <td>' . html_checkbox_field('rm_attach_' . $key, '1', false) . '</td>' . chr(10);
        echo ' <td>' . $value . '</td>' . chr(10);
        echo ' <td>' . html_button_field('dn_attach_' . $key, TEXT_DOWNLOAD, 'onclick="submitSeq(' . $key . ', \'download\', true)"') . '</td>';
        echo '</tr>' . chr(10);
    }
} else {
    echo '<tr><td colspan="3">' . TEXT_NO_DOCUMENTS . '</td></tr>';
}
?>
    </tbody>
   </table>
   </fieldset>
  </div>
</div>
开发者ID:siwiwit,项目名称:PhreeBooksERP,代码行数:31,代码来源:template_general.php


示例5: html_pull_down_menu

<div id="tab_chart_of_accounts">
  <?php 
echo $chart_of_accounts_toolbar->build_toolbar();
?>
  <h1><?php 
echo $chart_of_accounts->title;
?>
</h1>
  <div align="center">
    <?php 
echo GL_SELECT_STD_CHART . html_pull_down_menu('std_chart', $sel_chart);
?>
    <?php 
echo GL_CHART_IMPORT_DESC . html_file_field('file_name') . '<br />';
?>
    <?php 
echo html_checkbox_field('delete_chart', '1', false) . GL_CHART_REPLACE;
?>
    <?php 
echo html_button_field('import', TEXT_IMPORT, 'onclick="submitToDo(\'import\')"');
?>
    <?php 
echo '<br />' . GL_CHART_DELETE_WARNING;
?>
  </div>
  <div id="chart_of_accounts_content"><?php 
echo $chart_of_accounts->build_main_html();
?>
</div>
</div>
开发者ID:siwiwit,项目名称:PhreeBooksERP,代码行数:30,代码来源:template_tab_chart_of_accounts.php


示例6: html_button_field

		<td><?php 
echo SHIPPING_FEDEX_MULTIWGHT_REPORTS;
?>
</td>
		<td align="right"><?php 
echo html_button_field('multiweight_fedex', TEXT_VIEW, 'onclick="window.open(\'index.php?cat=services&amp;module=popup_label_mgr&amp;subject=fedex&amp;action=multiweight&amp;date=' . $date . '\',\'ship_mgr\',\'width=800,height=700,resizable=1,scrollbars=1,top=50,left=50\')"');
?>
</td>
	  </tr>
	  <tr>
		<td><?php 
echo SHIPPING_FEDEX_HAZMAT_REPORTS;
?>
</td>
		<td align="right"><?php 
echo html_button_field('hazmat_fedex', TEXT_VIEW, 'onclick="window.open(\'index.php?cat=services&amp;module=popup_label_mgr&amp;subject=fedex&amp;action=hazmat&amp;date=' . $date . '\',\'ship_mgr\',\'width=800,height=700,resizable=1,scrollbars=1,top=50,left=50\')"');
?>
</td>
	  </tr>
	 </table>
	</td>
  </tr>
</table>
<table width="95%" border="1" cellspacing="1" cellpadding="1">
  <tr>
    <th colspan="8"><?php 
echo SHIPPING_FEDEX_SHIPMENTS_ON . gen_spiffycal_db_date_short($date);
?>
</th>
  </tr>
  <tr>
开发者ID:jigsmaheta,项目名称:puerto-argentino,代码行数:31,代码来源:fedex.php


示例7: html_button_field

?>
</td>
	<td><?php 
echo html_button_field('ship_log_' . $method_id, SHIPPING_CREATE_ENTRY, 'onclick="window.open(\'index.php?module=shipping&amp;page=popup_tracking&amp;method=' . $method_id . '&amp;action=new\',\'popup_tracking\',\'width=550,height=350,resizable=1,scrollbars=1,top=150,left=200\')"');
?>
</td>
	<td><?php 
echo html_button_field('close_' . $method_id, SRV_TRACK_FEDEX_V7, 'onclick="submitAction(\'' . $method_id . '\', \'track\')"');
?>
</td>
	<td>
	  <?php 
echo html_file_field('file_name') . ' ';
?>
	  <?php 
echo html_button_field('recon_' . $method_id, SHIPPING_RECON_BILL, 'onclick="submitAction(\'' . $method_id . '\', \'reconcile\')"');
?>
	</td>
  </tr>
</table>
<table class="ui-widget" style="border-collapse:collapse;width:100%">
 <thead class="ui-widget-header">
  <tr>
    <th colspan="8"><?php 
echo SHIPPING_FEDEX_V7_SHIPMENTS_ON . gen_locale_date($date);
?>
</th>
  </tr>
  <tr>
	<th><?php 
echo SHIPPING_TEXT_SHIPMENT_ID;
开发者ID:siwiwit,项目名称:PhreeBooksERP,代码行数:31,代码来源:ship_mgr.php


示例8: html_button_field

?>
	<tr>
	  <td colspan="2" align="right"><?php 
echo html_button_field('ordr_nums', GEN_ADM_TOOLS_BTN_SAVE, 'onclick="submitToDo(\'ordr_nums\')"');
?>
</td>
    </tr>
  </table>
</fieldset>

<fieldset>
<legend><?php 
echo GEN_ADM_TOOLS_SECURITY_HEADING;
?>
</legend>
  <p><?php 
echo GEN_ADM_TOOLS_SECURITY_DESC;
?>
</p>
  <p align="center">
    <?php 
echo TEXT_CLEAN_BEFORE . ' ' . html_calendar_field($cal_clean);
?>
	<?php 
echo html_button_field('clean_security', GEN_ADM_TOOLS_BTN_CLEAN, 'onclick="submitToDo(\'clean_security\')"');
?>
  </p>
</fieldset>

</div>
开发者ID:siwiwit,项目名称:PhreeBooksERP,代码行数:30,代码来源:template_tab_tools.php


示例9: html_checkbox_field

// Build the page
?>
<h1><?php 
echo PAGE_TITLE;
?>
</h1>
<div id="filter_bar">
<table class="ui-widget" style="border-style:none;">
 <tbody class="ui-widget-content">
  <tr>
	<td><?php 
echo TEXT_FILTERS . '&nbsp;' . TEXT_SHOW_INACTIVE . '&nbsp;' . html_checkbox_field('f0', '1', $_SESSION['f0']);
?>
</td>
	<td><?php 
echo '&nbsp;' . html_button_field('apply', TEXT_APPLY, 'onclick="document.forms[0].submit();"');
?>
</td>
  </tr>
 </tbody>
</table>
</div>
<div style="height:19px"><?php 
echo $query_split->display_count(TEXT_DISPLAY_NUMBER . constant('ACT_' . strtoupper($type) . '_TYPE_NAME'));
?>
<div style="float:right"><?php 
echo $query_split->display_links();
?>
</div>
</div>
<table class="ui-widget" style="border-collapse:collapse;width:100%">
开发者ID:siwiwit,项目名称:PhreeBooksERP,代码行数:31,代码来源:template_main.php


示例10: html_file_field

    <td align="center"><?php 
echo 'Select order file to import from Amazon: ' . html_file_field('file_name');
?>
</td>
    <td align="right"><?php 
echo 'Maximum results per page ' . html_pull_down_menu('pull_down_max', $display_length, $max_list, 'onchange="changePageResults();"');
?>
</td>
  </tr>
  <tr>
    <td align="center">
	  <?php 
echo 'Select the date to build the Amazon ship confirmation on: ' . html_calendar_field($cal_pps) . ' ';
?>
	  <?php 
echo html_button_field('confirm', 'Build Confirmation File', 'onclick="submitToDo(\'ship_confirm\', true)"');
?>
	</td>
	<td>&nbsp;</td>
  </tr>
</table>

<?php 
if ($so_query_result->RecordCount() > 0) {
    // only show if there are open sales orders
    ?>
<!-- Display open Sales orders -->
<h1><?php 
    echo "Amazon Open Sales Orders";
    ?>
</h1>
开发者ID:TrinityComputers,项目名称:PhreeBooksERP,代码行数:31,代码来源:template_main.php


示例11: html_icon

     echo html_icon('actions/document-print.png', TEXT_PRINT, 'small', 'onclick="printOrder(' . $oID . ')"') . chr(10);
     break;
 case 6:
     break;
 case 7:
     echo html_icon('actions/document-print.png', TEXT_PRINT, 'small', 'onclick="printOrder(' . $oID . ')"') . chr(10);
     break;
 case 9:
     echo html_icon('actions/system-shutdown.png', TEXT_TOGGLE, 'small', 'onclick="submitSeq(' . $oID . ', \'toggle\')"') . chr(10);
     echo html_icon('actions/document-print.png', TEXT_PRINT, 'small', 'onclick="printOrder(' . $oID . ')"') . chr(10);
     break;
 case 10:
     if (!$query_result->fields['closed']) {
         echo html_button_field('invoice_' . $oID, TEXT_INVOICE, 'onclick="window.open(\'' . html_href_link(FILENAME_DEFAULT, 'module=phreebooks&amp;page=orders&amp;oID=' . $oID . '&amp;jID=12&amp;action=prc_so', 'SSL') . '\',\'_blank\')"') . chr(10);
     }
     echo html_button_field('delivery_' . $oID, ORD_DELIVERY_DATES, 'onclick="deliveryList(' . $oID . ')"') . chr(10);
     echo html_icon('actions/system-shutdown.png', TEXT_TOGGLE, 'small', 'onclick="submitSeq(' . $oID . ', \'toggle\')"') . chr(10);
     echo html_icon('actions/document-print.png', TEXT_PRINT, 'small', 'onclick="printOrder(' . $oID . ')"') . chr(10);
     break;
 case 12:
     if (defined('MODULE_SHIPPING_STATUS') && $shipper_code) {
         if ($sID) {
             if ($date_shipped == $date_today) {
                 echo html_icon('phreebooks/void-truck-icon.png', ORD_VOID_SHIP, 'small', 'onclick="if (confirm(\'Are you sure you want to delete this shipment?\')) voidShipment(' . $shipped . ', \'' . $shipper_code . '\')"') . chr(10);
             }
             echo html_icon('phreebooks/stock_id.png', TEXT_VIEW_SHIP_LOG, 'small', 'onclick="loadPopUp(\'' . $shipper_code . '\', \'edit\', ' . $sID . ')"') . chr(10);
         } elseif (!$shipped) {
             echo html_icon('phreebooks/truck-icon.png', TEXT_SHIP, 'small', 'onclick="shipList(' . $oID . ', \'' . $shipper_code . '\')"') . chr(10);
         }
     }
     if (!$closed) {
开发者ID:siwiwit,项目名称:PhreeBooksERP,代码行数:31,代码来源:template_main.php


示例12: html_button_field

    <tr><th colspan="2"><?php 
echo OSCOMMERCE_SHIP_CONFIRM_TITLE;
?>
</th></tr>
    <tr><td colspan="2"><?php 
echo OSCOMMERCE_SHIP_CONFIRM_INFO;
?>
</td></tr>
    <tr>
      <td align="right"><?php 
echo OSCOMMERCE_TEXT_CONFIRM_ON;
?>
</td>
      <td><script language="javascript">shipDate.writeControl(); shipDate.displayLeft=true; shipDate.dateFormat="<?php 
echo DATE_FORMAT_SPIFFYCAL;
?>
";</script></td>
	</tr>
    <tr>
      <td align="right"><?php 
echo OSCOMMERCE_SHIP_CONFIRM_TEXT;
?>
</td>
      <td><?php 
echo html_button_field('confirm', OSCOMMERCE_SHIP_CONFIRM_BTN, 'onclick="submitToDo(\'confirm\')"');
?>
</td>
	</tr>
  </table>
</form>
开发者ID:jigsmaheta,项目名称:puerto-argentino,代码行数:30,代码来源:template_main.php


示例13: html_button_field

<?php 
if ($auto_print) {
    ?>
  <applet id="qz" name="QZ Print Plugin" code="qz.PrintApplet.class" archive="<?php 
    echo DIR_WS_ADMIN . 'modules/phreedom/includes/jzebra/qz-print.jar';
    ?>
" width="16px" height="16px">
	<param name="permissions" value="all-permissions" />
	<param name="printer" value="<?php 
    echo MODULE_SHIPPING_FEDEX_V7_PRINTER_NAME;
    ?>
">
  </applet>
  <?php 
    echo html_button_field('print_label', TEXT_PRINT, 'onclick="labelPrint()"');
} else {
    ?>
  <table border="0" cellspacing="0" cellpadding="2">
  <tr><td width="50%" valign="top">
  <div>
    <fieldset>
    <legend><?php 
    echo SHIPPING_RECP_INFO;
    ?>
</legend>
    <table border="0" cellspacing="0" cellpadding="2">
	  <tr>
		<td class="dataTableContent"><?php 
    echo GEN_PRIMARY_NAME;
    ?>
开发者ID:TrinityComputers,项目名称:PhreeBooksERP,代码行数:30,代码来源:template_main.php


示例14: html_input_field

</th>
			<th class="dataTableHeadingContent"></th>
		</tr>
	</tfoot>
</table>





<div id="search_customer" >
<?php 
echo ORD_ACCT_ID . ' ' . html_input_field('copy_search', isset($order->short_name) ? $order->short_name : TEXT_SEARCH, 'size="21" maxlength="30" title="' . TEXT_SEARCH . '" onchange="accountGuess(true)"');
echo '&nbsp;' . html_icon('actions/system-search.png', TEXT_SEARCH, 'small', 'align="top" style="cursor:pointer" onclick="accountGuess(true)"') . '<br>' . chr(10);
echo html_input_field('copy_bill_primary_name', $order->bill_primary_name, 'size="33" maxlength="32" onfocus="clearField(\'bill_primary_name\', \'' . GEN_PRIMARY_NAME . '\')" onblur="setField(\'bill_primary_name\', \'' . GEN_PRIMARY_NAME . '\')"', true) . '<br>' . chr(10);
echo html_button_field('customer_popup_buttom', TEXT_SELECT_CUSTOMER, 'onclick="popupContact()"') . '<br>' . chr(10);
?>
 
</div>

<table id="item_table" class="ui-widget" style="border-collapse:collapse;">
 	<thead class="ui-widget-header">
		<tr>
			<th class="dataTableHeadingContent"></th>
			<th class="dataTableHeadingContent"><?php 
echo TEXT_QUANTITY;
?>
</th>
			<th class="dataTableHeadingContent"><?php 
echo TEXT_SKU;
?>
开发者ID:billj9000,项目名称:PhreeBooksERP,代码行数:31,代码来源:template_main.php


示例15: html_button_field

?>
</legend>
<p><?php 
echo INV_TOOLS_VALIDATE_SO_PO_DESC;
?>
</p>
  <table align="center" border="0" cellspacing="2" cellpadding="1">
    <tr>
	  <th><?php 
echo INV_TOOLS_REPAIR_SO_PO;
?>
</th>
	</tr>
	<tr>
	  <td align="center"><?php 
echo html_button_field('inv_on_order_fix', INV_TOOLS_BTN_SO_PO_FIX, 'onclick="submitToDo(\'inv_on_order_fix\')"');
?>
</td>
	</tr>
  </table>
</fieldset>
</form>

<hr/>
<h3> Etiquetas para imprimir </h3>
<div>
	<label for="nueva_etiqueta">Agregar</label><input type="text" name="nueva_etiqueta" id="nueva_etiqueta" onkeypress> <br/>
	<a href="#" onclick="imprimir_listado(); return false;"> Imprimir listado </a>
</div>
<br/>
<table id="etiquetas_pendientes">
开发者ID:jigsmaheta,项目名称:puerto-argentino,代码行数:31,代码来源:template_main.php


示例16: html_pull_down_menu

 </thead>
 <tbody class="ui-widget-content">
  <tr><td colspan="2"><?php 
echo TRANSLATOR_EXPORT_DESC;
?>
</td></tr>
  <tr>
	<td><?php 
echo TRANSLATOR_ISO_EXPORT . '&nbsp;';
?>
</td>
	<td><?php 
echo html_pull_down_menu('lang', $sel_language, DEFAULT_LANGUAGE);
?>
</td>
  </tr>
  <tr>
	<td colspan="2"><?php 
echo '&nbsp;';
?>
</td>
  </tr>
  <tr>
	<td colspan="2" align="right"><?php 
echo html_button_field('export', TEXT_EXPORT, 'onclick="submitToDo(\'export_all_go\', true)"');
?>
</td>
  </tr>
 </tbody>
</table>
</form>
开发者ID:siwiwit,项目名称:PhreeBooksERP,代码行数:31,代码来源:template_export.php


示例17: html_button_field

		<td align="right"><?php 
echo html_button_field('import_so', GL_BB_IMPORT_SALES_ORDERS, 'onclick="submitToDo(\'import_so\')"');
?>
</td>
	  </tr>
	  <tr><td colspan="2"><hr /></td></tr>
	  <tr>
		<td><h3><?php 
echo GL_BB_IMPORT_RECEIVABLES;
?>
</h3></td>
		<td align="right"><?php 
echo html_file_field('file_name_ar');
?>
</td>
	  </tr>
	  <tr>
		<td><?php 
echo GL_BB_IMPORT_HELP_MSG;
?>
</td>
		<td align="right"><?php 
echo html_button_field('import_ar', GL_BB_IMPORT_RECEIVABLES, 'onclick="submitToDo(\'import_ar\')"');
?>
</td>
	  </tr>
	 </tbody>
	</table>
  </td></tr>
</table>
</form>
开发者ID:siwiwit,项目名称:PhreeBooksERP,代码行数:31,代码来源:template_beg_bal.php


示例18: html_radio_field

			</tr>
			<tr>
				<td width="80%"><?php 
echo DESC_AGREE;
?>
</td>
				<td><?php 
echo html_radio_field('license', 'agree', false) . ' ' . TEXT_AGREE;
?>
				</td>
			</tr>
			<tr>
				<td width="80%"><?php 
echo DESC_DISAGREE;
?>
</td>
				<td><?php 
echo html_radio_field('license', 'disagree', true) . ' ' . TEXT_DISAGREE;
?>
				</td>
			</tr>
			<tr>
				<td colspan="2" align="right"><?php 
echo html_button_field('submit_form', TEXT_CONTINUE, 'onclick="document.forms[0].submit()"');
?>
				</td>
			</tr>
		</tbody>
	</table>
</form>
开发者ID:siwiwit,项目名称:PhreeBooksERP,代码行数:30,代码来源:template_welcome.php


示例19: html_pull_down_menu

<?php 
}
?>
	</table>
  </fieldset>
  <fieldset>
  <legend><?php 
echo SETUP_CO_MGR_DEL_CO;
?>
</legend>
    <table>
	  <tr>
	    <td colspan="3" style="color:red"><?php 
echo SETUP_CO_MGR_DELETE_CONFIRM;
?>
</td>
	  </tr>
	  <tr>
	    <td colspan="3"><?php 
echo SETUP_CO_MGR_SELECT_DELETE . html_pull_down_menu('del_company', load_company_dropdown(true));
?>
</td>
	    <td align="right"><?php 
echo html_button_field('del_button', TEXT_DELETE, 'onclick="if (confirm(\'' . SETUP_CO_MGR_JS_DELETE_CONFIRM . '\')) submitToDo(\'delete_co\')"');
?>
</td>
	  </tr>
	 </table>
  </fieldset>
</div>
开发者ID:siwiwit,项目名称:PhreeBooksERP,代码行数:30,代码来源:template_tab_manager.php


示例20: html_password_field

    echo GEN_ADM_TOOLS_ENCRYPT_PW;
    ?>
</td>
	  <td><?php 
    echo html_password_field('new_encrypt_key');
    ?>
</td>
	</tr>
    <tr>
	  <td><?php 
    echo GEN_ADM_TOOLS_ENCRYPT_PW_CONFIRM;
    ?>
</td>
	  <td><?php 
    echo html_password_field('new_encrypt_confirm');
    ?>
</td>
	</tr>
    <tr>
	  <td colspan="2" align="right"><?php 
    echo html_button_field('encrypt_key', GEN_ADM_TOOLS_BTN_SAVE, 'onclick="submitToDo(\'encrypt_key\')"');
    ?>
</td>
	</tr>
 </tbody>
</table>
</fieldset>
<?php 
}
?>
</form>
开发者ID:siwiwit,项目名称:PhreeBooksERP,代码行数:31,代码来源:template_main.php



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


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
PHP html_calendar_field函数代码示例发布时间:2022-05-15
下一篇:
PHP html_button函数代码示例发布时间:2022-05-15
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap