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


PHP BYT_Theme_Utils::render_tab方法代碼示例

本文整理匯總了PHP中BYT_Theme_Utils::render_tab方法的典型用法代碼示例。如果您正苦於以下問題:PHP BYT_Theme_Utils::render_tab方法的具體用法?PHP BYT_Theme_Utils::render_tab怎麽用?PHP BYT_Theme_Utils::render_tab使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在BYT_Theme_Utils的用法示例。


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

示例1: elseif

                }
                if ($i == 0) {
                    $first_display_tab = $tab['id'];
                }
                if ($tab['id'] == 'reviews' && $enable_reviews) {
                    BYT_Theme_Utils::render_tab("cruise", $tab['id'], '', '<a href="#' . $tab['id'] . '" title="' . $tab_label . '">' . $tab_label . '</a>');
                } elseif ($tab['id'] == 'locations') {
                    if ($cruise_locations && count($cruise_locations) > 0) {
                        BYT_Theme_Utils::render_tab("cruise", $tab['id'], '', '<a href="#' . $tab['id'] . '" title="' . $tab_label . '">' . $tab_label . '</a>');
                    }
                } elseif ($tab['id'] == 'description' || $tab['id'] == 'availability') {
                    BYT_Theme_Utils::render_tab("tour", $tab['id'], '', '<a href="#' . $tab['id'] . '" title="' . $tab_label . '">' . $tab_label . '</a>');
                } else {
                    $all_empty_fields = BYT_Theme_Utils::are_tab_fields_empty('cruise_extra_fields', $cruise_extra_fields, $tab['id'], $cruise_obj);
                    if (!$all_empty_fields) {
                        BYT_Theme_Utils::render_tab("cruise", $tab['id'], '', '<a href="#' . $tab['id'] . '" title="' . $tab_label . '">' . $tab_label . '</a>');
                    }
                }
                $i++;
            }
        }
    }
    do_action('byt_show_single_cruise_tab_items_after');
    ?>
			</ul>
		</nav>
		<!--//inner navigation-->
		<?php 
    do_action('byt_show_single_cruise_tab_content_before');
    ?>
		<!--description-->
開發者ID:alikris,項目名稱:OTA,代碼行數:31,代碼來源:single-cruise.php

示例2: foreach

    ?>
				<?php 
    $first_display_tab = '';
    $i = 0;
    if (is_array($tab_array) && count($tab_array) > 0) {
        foreach ($tab_array as $tab) {
            if (!isset($tab['hide']) || $tab['hide'] != '1') {
                $tab_label = '';
                if (isset($tab['label'])) {
                    $tab_label = $tab['label'];
                    $tab_label = $byt_theme_of_custom->get_translated_dynamic_string($byt_theme_of_custom->get_option_id_context('car_rental_tabs') . ' ' . $tab['label'], $tab_label);
                }
                if ($i == 0) {
                    $first_display_tab = $tab['id'];
                }
                BYT_Theme_Utils::render_tab('car_rental', $tab['id'], '', '<a href="#' . $tab['id'] . '" title="' . $tab_label . '">' . $tab_label . '</a>');
                $i++;
            }
        }
    }
    ?>
				<?php 
    do_action('byt_show_single_car_rental_tab_items_after');
    ?>
			</ul>
		</nav>
		<!--//inner navigation-->
		<?php 
    do_action('byt_show_single_car_rental_tab_content_before');
    ?>
		<!--description-->
開發者ID:JDjimenezdelgado,項目名稱:old-mmexperience,代碼行數:31,代碼來源:single-car_rental.php

示例3:

    echo json_encode(__('Children', 'bookyourtravel'));
    ?>
;
		window.pricePerChildLabel = <?php 
    echo json_encode(__('Price per child', 'bookyourtravel'));
    ?>
;
		window.pricePerDayLabel = <?php 
    echo json_encode(__('Price per day', 'bookyourtravel'));
    ?>
;
		window.priceTotalLabel = <?php 
    echo json_encode($total_price_label);
    ?>
;
		window.dateLabel = <?php 
    echo json_encode(__('Date', 'bookyourtravel'));
    ?>
;
	</script>
	<?php 
    $accommodation_obj->render_image_gallery();
    ?>
	<!--inner navigation-->
	<nav class="inner-nav">
		<ul>
			<?php 
    do_action('byt_show_single_accommodation_tab_items_before');
    $first_display_tab = '';
    $i = 0;
    if (is_array($tab_array) && count($tab_array) > 0) {
開發者ID:JDjimenezdelgado,項目名稱:old-mmexperience,代碼行數:31,代碼來源:single-accommodation.php


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