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


PHP wpl_global::get_wpl_url方法代碼示例

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


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

示例1:

{
	if(wplj.inArray(dataMarker.id, loaded_markers<?php 
echo $this->activity_id;
?>
) != '-1') return true;
	
  	marker = new google.maps.Marker(
    {
		position: new google.maps.LatLng(dataMarker.googlemap_lt, dataMarker.googlemap_ln),
		map: <?php 
echo $this->show_marker ? 'wpl_map' . $this->activity_id : 'null';
?>
,
		property_ids: dataMarker.pids,
		icon: '<?php 
echo wpl_global::get_wpl_url();
?>
assets/img/listing_types/gicon/'+dataMarker.gmap_icon,
		title: dataMarker.title,
	});
	
	/** extend the bounds to include each marker's position **/
  	if(wpl_map_bounds_extend<?php 
echo $this->activity_id;
?>
) bounds<?php 
echo $this->activity_id;
?>
.extend(marker.position);
  
	loaded_markers<?php 
開發者ID:gvh1993,項目名稱:project-vvvh,代碼行數:31,代碼來源:js.php

示例2: get_images_url

 /**
  * Returns image URL
  * @author Howard R <howard@realtyna.com>
  * @static
  * @param string $image
  * @return string|boolean
  */
 public static function get_images_url($image = '')
 {
     /** first validation **/
     if (trim($image) == '') {
         return false;
     }
     $path = wpl_global::get_wpl_root_path() . 'libraries' . DS . 'notifications' . DS . 'templates' . DS . 'cache' . DS . $image . '.png';
     $url = wpl_global::get_wpl_url() . 'libraries/notifications/templates/cache/' . $image . '.png';
     if (!wpl_file::exists($path)) {
         wpl_images::text_to_image($image, '000000', $path);
     }
     return $url;
 }
開發者ID:gvh1993,項目名稱:project-vvvh,代碼行數:20,代碼來源:notifications.php


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