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(); }
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)); }