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


PHP wpsc_have_shipping_quote函數代碼示例

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


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

示例1: wpsc_shipping_quote_html_id

								<label for='<?php echo wpsc_shipping_quote_html_id(); ?>'><?php echo wpsc_shipping_quote_value(); ?></label>
							</td>
							<td style='text-align:center;'>
							<?php if(wpsc_have_morethanone_shipping_methods_and_quotes()): ?>
								<input type='radio' id='<?php echo wpsc_shipping_quote_html_id(); ?>' <?php echo wpsc_shipping_quote_selected_state(); ?>  onclick='switchmethod("<?php echo wpsc_shipping_quote_name(); ?>", "<?php echo wpsc_shipping_method_internal_name(); ?>")' value='<?php echo wpsc_shipping_quote_value(true); ?>' name='shipping_method' />
							<?php else: ?>
								<input <?php echo wpsc_shipping_quote_selected_state(); ?> disabled='disabled' type='radio' id='<?php echo wpsc_shipping_quote_html_id(); ?>'  value='<?php echo wpsc_shipping_quote_value(true); ?>' name='shipping_method' />
									<?php wpsc_update_shipping_single_method(); ?>
							<?php endif; ?>
							</td>
						</tr>
			
					<?php endwhile; ?>
			<?php endwhile;  ?>
			<?php wpsc_update_shipping_multiple_methods(); ?>
			<?php if (!wpsc_have_shipping_quote()) : // No valid shipping quotes ?>
				<tr>
					<td colspan='5'><?php echo __('Sorry, online ordering is unavailable to this destination and/or weight. Please double check your destination details.', 'wpsc'); ?></td>
				</tr>
			</table>
			</div>
			<?php 
			return;
			endif;  
			?>
		</table>
	<?php endif;  ?>
	
	<table class="productcart">
	<tr class="total_price total_tax">
		<td colspan="3">
開發者ID:nerdfiles,項目名稱:sideshowtramps.com,代碼行數:31,代碼來源:shopping_cart_page.php

示例2: wpsc_update_shipping_multiple_methods

                }
                ?>
							</td>
						</tr>
			
					<?php 
            }
            ?>
			<?php 
        }
        ?>
			<?php 
        wpsc_update_shipping_multiple_methods();
        ?>
			<?php 
        if (!wpsc_have_shipping_quote()) {
            // No valid shipping quotes
            ?>
				<tr>
					<td colspan='5'><?php 
            echo TXT_WPSC_NO_SHIPPING_QUOTES;
            ?>
</td>
				</tr>
			</table>
			</div>
			<?php 
            return;
        }
        ?>
		</table>
開發者ID:papayalabs,項目名稱:htdocs,代碼行數:31,代碼來源:shopping_cart_page.php

示例3: wpsc_update_shipping_quotes_on_shipping_same_as_billing

function wpsc_update_shipping_quotes_on_shipping_same_as_billing()
{
    global $wpsc_cart;
    wpsc_update_location();
    if (get_option('do_not_use_shipping')) {
        die('-1');
    }
    if (!wpsc_have_shipping_quotes()) {
        die('0');
    } else {
        ?>
   <tr class="wpsc_shipping_info">
            <td colspan="5">
               <?php 
        _e('Please choose a country below to calculate your shipping costs', 'wpsc');
        ?>
            </td>
         </tr>

         <?php 
        if (!wpsc_have_shipping_quote()) {
            // No valid shipping quotes
            ?>
            <?php 
            if (wpsc_have_valid_shipping_zipcode()) {
                ?>
                  <tr class='wpsc_update_location'>
                     <td colspan='5' class='shipping_error' >
                        <?php 
                _e('Please provide a Zipcode and click Calculate in order to continue.', 'wpsc');
                ?>
                     </td>
                  </tr>
            <?php 
            } else {
                ?>
               <tr class='wpsc_update_location_error'>
                  <td colspan='5' class='shipping_error' >
                     <?php 
                _e('Sorry, online ordering is unavailable to this destination and/or weight. Please double check your destination details.', 'wpsc');
                ?>
                  </td>
               </tr>
            <?php 
            }
            ?>
         <?php 
        }
        ?>
         <tr class='wpsc_change_country'>
            <td colspan='5'>
               <form name='change_country' id='change_country' action='' method='post'>
                  <?php 
        echo wpsc_shipping_country_list();
        ?>
                  <input type='hidden' name='wpsc_update_location' value='true' />
                  <input type='submit' name='wpsc_submit_zipcode' value='Calculate' />
               </form>
            </td>
         </tr>

         <?php 
        if (wpsc_have_morethanone_shipping_quote()) {
            ?>
            <?php 
            while (wpsc_have_shipping_methods()) {
                wpsc_the_shipping_method();
                ?>
                  <?php 
                if (!wpsc_have_shipping_quotes()) {
                    continue;
                }
                // Don't display shipping method if it doesn't have at least one quote
                ?>
                  <tr class='wpsc_shipping_header'><td class='shipping_header' colspan='5'><?php 
                echo wpsc_shipping_method_name() . __(' - Choose a Shipping Rate', 'wpsc');
                ?>
 </td></tr>
                  <?php 
                while (wpsc_have_shipping_quotes()) {
                    wpsc_the_shipping_quote();
                    ?>
                     <tr class='<?php 
                    echo wpsc_shipping_quote_html_id();
                    ?>
'>
                        <td class='wpsc_shipping_quote_name wpsc_shipping_quote_name_<?php 
                    echo wpsc_shipping_quote_html_id();
                    ?>
' colspan='3'>
                           <label for='<?php 
                    echo wpsc_shipping_quote_html_id();
                    ?>
'><?php 
                    echo wpsc_shipping_quote_name();
                    ?>
</label>
                        </td>
                        <td class='wpsc_shipping_quote_price wpsc_shipping_quote_price_<?php 
                    echo wpsc_shipping_quote_html_id();
//.........這裏部分代碼省略.........
開發者ID:pankajsinghjarial,項目名稱:SYLC,代碼行數:101,代碼來源:ajax.functions.php


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