blob: 6e519b607aa02395f5992882ff6930a6c07b99cc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
<?php
/**
* Test the location of ImageMagick
*/
$content .= '<p>' . elgg_echo('tidypics:lib_tools:testing') . '</p>';
$content .= '<p><label>' . elgg_echo('tidypics:settings:im_path');
$content .= elgg_view('input/text', array(
'name' => 'im_location'
));
$content .= '</p><p>';
$content .= elgg_view('input/submit', array(
'value' => elgg_echo('submit'),
'id' => 'tidypics-im-test'
));
$content .= '</p>';
$content .= '<p id="tidypics-im-results"></p>';
echo elgg_view_module('inline', 'ImageMagick', $content);
?>
<script type="text/javascript">
$(function() {
$('#tidypics-im-test').click(function() {
var loc = $('input[name=im_location]').val();
$("#tidypics-im-results").html("");
$.ajax({
type: "GET",
url: elgg.normalize_url('mod/tidypics/actions/photos/admin/imtest.php'),
data: {location: loc},
cache: false,
success: function(html){
$("#tidypics-im-results").html(html);
}
});
});
});
</script>
|