本文整理汇总了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
示例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;
}