예제 #1
0
파일: AJAX.php 프로젝트: hguru/224Civi
 static function getImageProp()
 {
     $img = $_GET['img'];
     list($w, $h) = CRM_Badge_BAO_Badge::getImageProperties($img);
     echo json_encode(array('width' => $w, 'height' => $h));
     CRM_Utils_System::civiExit();
 }
예제 #2
0
 public static function getImageProp()
 {
     $img = $_GET['img'];
     list($w, $h) = CRM_Badge_BAO_Badge::getImageProperties($img);
     CRM_Utils_JSON::output(array('width' => $w, 'height' => $h));
 }