|
|
|
@ -38,48 +38,6 @@ $htmlHeadXtra[] = '<script src="'. api_get_path(WEB_PATH) .'web/assets/cropper/d |
|
|
|
|
$htmlHeadXtra[] = '<script type="text/javascript" src="//maps.googleapis.com/maps/api/js?sensor=true" ></script>'; |
|
|
|
|
$htmlHeadXtra[] = '<script> |
|
|
|
|
$(document).ready(function() { |
|
|
|
|
var $image = $("#previewImage"); |
|
|
|
|
var $input = $("[name=\'cropResult\']"); |
|
|
|
|
var $cropButton = $("#cropButton"); |
|
|
|
|
|
|
|
|
|
$("input:file").change(function() { |
|
|
|
|
var oFReader = new FileReader(); |
|
|
|
|
oFReader.readAsDataURL(document.getElementById("picture_form").files[0]); |
|
|
|
|
|
|
|
|
|
oFReader.onload = function (oFREvent) { |
|
|
|
|
$image.attr("src", this.result); |
|
|
|
|
$("#labelCropImage").html("'.get_lang('Preview').'"); |
|
|
|
|
$("#cropImage").addClass("thumbnail"); |
|
|
|
|
$cropButton.removeClass("hidden"); |
|
|
|
|
// Destroy cropper |
|
|
|
|
$image.cropper("destroy"); |
|
|
|
|
|
|
|
|
|
$image.cropper({ |
|
|
|
|
aspectRatio: 1 / 1, |
|
|
|
|
responsive : true, |
|
|
|
|
center : false, |
|
|
|
|
guides : false, |
|
|
|
|
movable: false, |
|
|
|
|
zoomable: false, |
|
|
|
|
rotatable: false, |
|
|
|
|
scalable: false, |
|
|
|
|
crop: function(e) { |
|
|
|
|
// Output the result data for cropping image. |
|
|
|
|
$input.val(e.x+","+e.y+","+e.width+","+e.height); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
}; |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
$("#cropButton").on("click", function() { |
|
|
|
|
var canvas = $image.cropper("getCroppedCanvas"); |
|
|
|
|
var dataUrl = canvas.toDataURL(); |
|
|
|
|
$image.attr("src", dataUrl); |
|
|
|
|
$image.cropper("destroy"); |
|
|
|
|
$cropButton.addClass("hidden"); |
|
|
|
|
return false; |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
$("id_generate_api_key").on("click", function (e) { |
|
|
|
|
e.preventDefault(); |
|
|
|
|
|
|
|
|
@ -107,7 +65,6 @@ function show_image(image,width,height) { |
|
|
|
|
width = parseInt(width) + 20; |
|
|
|
|
height = parseInt(height) + 20; |
|
|
|
|
window_x = window.open(image,\'windowX\',\'width=\'+ width + \', height=\'+ height + \'\'); |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
function hide_icon_edit(element_html) { |
|
|
|
@ -378,28 +335,14 @@ if ($userGeolocalization) { |
|
|
|
|
|
|
|
|
|
// PICTURE |
|
|
|
|
if (is_profile_editable() && api_get_setting('profile', 'picture') == 'true') { |
|
|
|
|
$form->addElement( |
|
|
|
|
'file', |
|
|
|
|
$form->addFile( |
|
|
|
|
'picture', |
|
|
|
|
($user_data['picture_uri'] != '' ? get_lang('UpdateImage') : get_lang( |
|
|
|
|
'AddImage' |
|
|
|
|
)), |
|
|
|
|
array('id' => 'picture_form', 'class' => 'picture-form') |
|
|
|
|
array('id' => 'picture', 'class' => 'picture-form', 'crop_image' => true) |
|
|
|
|
); |
|
|
|
|
$form->addHtml('' |
|
|
|
|
. '<div class="form-group">' |
|
|
|
|
. '<label for="cropImage" id="labelCropImage" class="col-sm-2 control-label"></label>' |
|
|
|
|
. '<div class="col-sm-8">' |
|
|
|
|
. '<div id="cropImage" class="cropCanvas">' |
|
|
|
|
. '<img id="previewImage" >' |
|
|
|
|
. '</div>' |
|
|
|
|
. '<div>' |
|
|
|
|
. '<button class="btn btn-primary hidden" name="cropButton" id="cropButton"><em class="fa fa-crop"></em> '.get_lang('CropYourPicture').'</button>' |
|
|
|
|
. '</div>' |
|
|
|
|
. '</div>' |
|
|
|
|
. '</div>' |
|
|
|
|
. ''); |
|
|
|
|
$form->addHidden('cropResult', ''); |
|
|
|
|
|
|
|
|
|
$form->add_progress_bar(); |
|
|
|
|
if (!empty($user_data['picture_uri'])) { |
|
|
|
|
$form->addElement('checkbox', 'remove_picture', null, get_lang('DelImage')); |
|
|
|
|