mirror of
https://github.com/silverstripe/silverstripe-reports
synced 2024-10-22 09:05:53 +00:00
mujma:
(merged from branches/gsoc) git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@41874 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
6ae57bdb46
commit
65e0686fa0
@ -53,7 +53,7 @@
|
|||||||
}
|
}
|
||||||
$rand = md5(rand(1,100000));
|
$rand = md5(rand(1,100000));
|
||||||
$gd->writeTo('../assets/tmp/' . $rand . '.jpg');
|
$gd->writeTo('../assets/tmp/' . $rand . '.jpg');
|
||||||
$this->returnImage($gd,'/assets/tmp/' . $rand . '.jpg');
|
$this->returnImage($gd,'assets/tmp/' . $rand . '.jpg');
|
||||||
}
|
}
|
||||||
|
|
||||||
public function save() {
|
public function save() {
|
||||||
@ -77,7 +77,7 @@
|
|||||||
|
|
||||||
private function returnImage(GD $gd,$strFile)
|
private function returnImage(GD $gd,$strFile)
|
||||||
{
|
{
|
||||||
list($width, $height) = getimagesize('..' . $strFile);
|
list($width, $height) = getimagesize('../' . $strFile);
|
||||||
echo json_encode(array(
|
echo json_encode(array(
|
||||||
'fileName' => $strFile,
|
'fileName' => $strFile,
|
||||||
'width' => $width,
|
'width' => $width,
|
||||||
|
@ -26,7 +26,7 @@ var ImageTransformation = {
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
imageBox.showIndicator();
|
imageBox.showIndicator();
|
||||||
new Ajax.Request('/admin/ImageEditor/manipulate', options);
|
new Ajax.Request('admin/ImageEditor/manipulate', options);
|
||||||
},
|
},
|
||||||
|
|
||||||
rotate: function(angle) {
|
rotate: function(angle) {
|
||||||
@ -44,7 +44,7 @@ var ImageTransformation = {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
imageBox.showIndicator();
|
imageBox.showIndicator();
|
||||||
new Ajax.Request('/admin/ImageEditor/manipulate', options);
|
new Ajax.Request('admin/ImageEditor/manipulate', options);
|
||||||
},
|
},
|
||||||
|
|
||||||
crop: function(top,left,width,height) {
|
crop: function(top,left,width,height) {
|
||||||
@ -62,7 +62,7 @@ var ImageTransformation = {
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
imageBox.showIndicator();
|
imageBox.showIndicator();
|
||||||
new Ajax.Request('/admin/ImageEditor/manipulate', options);
|
new Ajax.Request('admin/ImageEditor/manipulate', options);
|
||||||
},
|
},
|
||||||
|
|
||||||
save: function(originalFile,editedFile) {
|
save: function(originalFile,editedFile) {
|
||||||
@ -73,7 +73,7 @@ var ImageTransformation = {
|
|||||||
imageEditor.onClose();
|
imageEditor.onClose();
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
new Ajax.Request('/admin/ImageEditor/save', options);
|
new Ajax.Request('admin/ImageEditor/save', options);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
||||||
<% base_tag %>
|
<% base_tag %>
|
||||||
<title>Untitled Document</title>
|
<title>Untitled Document</title>
|
||||||
<link rel="stylesheet" type="text/css" media="all" href="/css/main.css" />
|
<link rel="stylesheet" type="text/css" media="all" href="css/main.css" />
|
||||||
</head>
|
</head>
|
||||||
<body id="body">
|
<body id="body">
|
||||||
<div id="mainContainer">
|
<div id="mainContainer">
|
||||||
@ -41,7 +41,7 @@
|
|||||||
<div id="cropBox"></div>
|
<div id="cropBox"></div>
|
||||||
</div>
|
</div>
|
||||||
<div id="loadingIndicatorContainer">
|
<div id="loadingIndicatorContainer">
|
||||||
<img id="loadingIndicator" alt="indicator" src="/cms/images/ImageEditor/indicator.gif">
|
<img id="loadingIndicator" alt="indicator" src="cms/images/ImageEditor/indicator.gif">
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user