<?php
/**
* Documents the file following
* @package googlemapsForWP
* @author webcat
*/
//#################################################################
if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) { die('You are not allowed to call this page directly.'); }
//#################################################################
if (!class_exists('googlemapsForWPMapImage')){
/**
* googlemapsForWP maps
* The class provides access to
*/
class googlemapsForWPMapImage {
/**
*
* @param <type> $id
* @param <type> $args
*/
function __construct(){
$ch = curl_init();
if(!$ch){
return false;
}else{
return true;
}
}
function checkCache(){}
function storeImage($imgurl){
}
}
}
?>