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


PHP tribe_events_tab_index函數代碼示例

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


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

示例1: esc_attr

echo esc_attr($rule_type);
?>
][][custom][duration][hours]"
			   data-field="custom-duration-hours"
			   value="{{custom.duration.hours}}"
			/>
		<?php 
_ex('hours', 'custom recurrence duration', 'the-events-calendar');
?>

		<input type="number"
			   min="0"
			   max="59"
			   step="1"
			   tabindex="<?php 
tribe_events_tab_index();
?>
"
			   name="recurrence[<?php 
echo esc_attr($rule_type);
?>
][][custom][duration][minutes]"
			   data-field="custom-duration-minutes"
			   value="{{custom.duration.minutes}}"
			/>
		<?php 
_ex('minutes', 'custom recurrence duration', 'the-events-calendar');
?>
	</span>
</div>
開發者ID:TravisSperry,項目名稱:mpa_website,代碼行數:30,代碼來源:time.php

示例2: setup_overwrite_geoloc

    public function setup_overwrite_geoloc($post)
    {
        if ($post->post_type != Tribe__Events__Main::VENUE_POST_TYPE) {
            return;
        }
        $overwrite_coords = (bool) get_post_meta($post->ID, self::OVERWRITE, true);
        $_lat = get_post_meta($post->ID, self::LAT, true);
        $_lng = get_post_meta($post->ID, self::LNG, true);
        ?>
		<tr id="overwrite_coordinates">
			<td class='tribe-table-field-label'><?php 
        esc_attr_e('Use latitude + longitude', 'tribe-events-calendar');
        ?>
:</td>
			<td>
				<input tabindex="<?php 
        tribe_events_tab_index();
        ?>
" type="checkbox" id="VenueOverwriteCoords" name="venue[OverwriteCoords]" value="true" <?php 
        checked($overwrite_coords);
        ?>
 />

				<input class=" " disabled title='<?php 
        esc_attr_e('Latitude', 'tribe-events-calendar');
        ?>
' placeholder='<?php 
        esc_attr_e('Latitude', 'tribe-events-calendar');
        ?>
' tabindex="<?php 
        tribe_events_tab_index();
        ?>
" type="text" id="VenueLatitude" name="venue[Lat]" value="<?php 
        echo esc_attr(is_numeric($_lat) ? (double) $_lat : '');
        ?>
" />
				<input class=" " disabled title='<?php 
        esc_attr_e('Longitude', 'tribe-events-calendar');
        ?>
' placeholder='<?php 
        esc_attr_e('Longitude', 'tribe-events-calendar');
        ?>
' tabindex="<?php 
        tribe_events_tab_index();
        ?>
" type="text" id="VenueLongitude" name="venue[Lng]" value="<?php 
        echo esc_attr(is_numeric($_lng) ? (double) $_lng : '');
        ?>
" />
			</td>
		</tr>
		<?php 
    }
開發者ID:TravisSperry,項目名稱:mpa_website,代碼行數:53,代碼來源:Geo_Loc.php


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