Пример #1
0
 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));
 }