892d64aa6c
Signed-off-by: Owen Leonard <oleonard@myacpl.org>
201 lines
9.5 KiB
Text
201 lines
9.5 KiB
Text
[% INCLUDE 'doc-head-open.inc' %]
|
|
<title>Koha › Patron card creator › Manage images</title>
|
|
[% INCLUDE 'doc-head-close.inc' %]
|
|
<script type="text/javascript">
|
|
//<![CDATA[
|
|
function DeleteConfirm() {
|
|
var results = selected_images("delete");
|
|
if (results.images != -1) {
|
|
var msg = "Are you sure you want to delete image(s): " + results.image_ids + "?";
|
|
var answer = confirm(msg);
|
|
if (answer) {
|
|
window.location = "/cgi-bin/koha/patroncards/image-manage.pl?op=delete&" + results.images;
|
|
}
|
|
else {
|
|
return; // abort delete
|
|
}
|
|
}
|
|
};
|
|
function selected_images(op) {
|
|
var selected = new Array;
|
|
var image_ids = new Array;
|
|
if (document.delete_images.action.length) {
|
|
for (i=0;i<document.delete_images.action.length;i++){
|
|
if (document.delete_images.action[i].checked){
|
|
selected.push("image_id=" + document.delete_images.action[i].value);
|
|
image_ids.push(document.delete_images.action[i].value);
|
|
}
|
|
};
|
|
images = selected.join("&");
|
|
return {images:images, image_ids:image_ids};
|
|
}
|
|
else if (document.delete_images.action.checked){
|
|
return {images:"batch_id="+document.delete_images.action.value, image_ids:document.delete_images.action.value};
|
|
};
|
|
alert(_("Please select image(s) to ") + op + ".");
|
|
return (-1);
|
|
};
|
|
function showHideLayers(element, time, action) {
|
|
setTimeout("changeVisibility('" + element + "','" + action + "')", time)
|
|
}
|
|
function changeVisibility(element, action) {
|
|
document.getElementById(element).style.display=action;
|
|
}
|
|
</script>
|
|
<script type="text/javascript">
|
|
//<![CDATA[
|
|
$(document).ready(function() {
|
|
$("#upload_cancel").empty();
|
|
$("#delete_cancel").empty();
|
|
$("#upload").empty();
|
|
$("#delete").empty();
|
|
buildButtons();
|
|
showHideLayers('dialog', 5000, 'none')
|
|
});
|
|
|
|
function buildButtons() {
|
|
new YAHOO.widget.Button({
|
|
type: "link",
|
|
label: _("Cancel"),
|
|
id: "cancelul",
|
|
href: "/cgi-bin/koha/patroncards/home.pl",
|
|
container: "upload_cancel"
|
|
});
|
|
|
|
new YAHOO.widget.Button({
|
|
type: "link",
|
|
label: _("Cancel"),
|
|
id: "canceldel",
|
|
href: "/cgi-bin/koha/patroncards/home.pl",
|
|
container: "delete_cancel"
|
|
});
|
|
|
|
new YAHOO.widget.Button({
|
|
type: "submit",
|
|
label: _("Upload"),
|
|
id: "uploadsb",
|
|
value: "upload",
|
|
container: "upload"
|
|
});
|
|
|
|
var deleteButton = new YAHOO.widget.Button({
|
|
type: "link",
|
|
onclick: {fn: DeleteConfirm},
|
|
label: _("Delete"),
|
|
id: "deletesb",
|
|
value: "delete",
|
|
container: "delete",
|
|
});
|
|
}
|
|
</script>
|
|
</head>
|
|
<body id="pcard_image-manage" class="tools pcard">
|
|
[% INCLUDE 'header.inc' %]
|
|
[% INCLUDE 'cat-search.inc' %]
|
|
<div id="breadcrumbs">
|
|
<a href="/cgi-bin/koha/mainpage.pl">Home</a> ›
|
|
<a href="/cgi-bin/koha/tools/tools-home.pl">Tools</a> ›
|
|
<a href="/cgi-bin/koha/patroncards/home.pl">Patron card creator</a> ›
|
|
Manage images
|
|
</div>
|
|
<div id="doc3" class="yui-t2">
|
|
<div id="bd">
|
|
<div id="yui-main">
|
|
<div class="yui-b">
|
|
[% INCLUDE 'error-messages.inc' %]
|
|
<div class="yui-g">
|
|
<div class="yui-u first">
|
|
<h1>Upload Images</h1>
|
|
[% IF ( IMPORT_SUCCESSFUL ) %]
|
|
<div id="dialog" class="dialog message">
|
|
<li><h3>Image successfully uploaded.</h3></li>
|
|
<li>File: [% SOURCE_FILE %]</li>
|
|
<li>Image name: [% IMAGE_NAME %]</li>
|
|
</div>
|
|
[% END %]
|
|
<form name="upload_images" method="post" action="/cgi-bin/koha/patroncards/image-manage.pl" enctype="multipart/form-data">
|
|
<fieldset class="brief">
|
|
<div class="hint">
|
|
<b>NOTE:</b> Only PNG, GIF, JPEG, XPM formats are supported. Images <b>must</b> be less than 500KB.
|
|
</div>
|
|
<li>
|
|
<label for="uploadfile">Select the file to upload: </label>
|
|
<input type="file" id="uploadfile" name="uploadfile" />
|
|
<input type="hidden" id="image" name="filetype" value="image" />
|
|
</li>
|
|
<li>
|
|
<label for="image_name">Image name: </label>
|
|
<div class="hint">
|
|
This will be the name by which you will refer to this image in the patron card layout editor.
|
|
</div>
|
|
<input type="text" id="image_name" name="image_name" size="20" />
|
|
</li>
|
|
</fieldset>
|
|
<fieldset class="action">
|
|
<input type="hidden" name="op" value="upload" />
|
|
<span id="upload"><input id="uploadsu" type="submit" value="upload" class="submit" /></span>
|
|
<span id="upload_cancel"><a id="cancelul" href="/cgi-bin/koha/patroncards/home.pl" class="cancel">Cancel</a></span>
|
|
</fieldset>
|
|
</form>
|
|
</div>
|
|
<div class="yui-u">
|
|
<h1>Delete Images</h1>
|
|
[% IF ( DELETE_SUCCESSFULL ) %]
|
|
<div id="dialog" class="dialog message">
|
|
<li><h3>Image(s) successfully deleted.</h3></li>
|
|
</div>
|
|
[% END %]
|
|
[% IF ( TABLE ) %]
|
|
<form name="delete_images" method="post" action="/cgi-bin/koha/patroncards/image-manage.pl" enctype="multipart/form-data">
|
|
<fieldset class="brief">
|
|
<div class="hint">
|
|
Select one or more images to delete.
|
|
</div>
|
|
<li>
|
|
<table>
|
|
[% FOREACH TABL IN TABLE %]
|
|
[% IF ( TABL.header_fields ) %]
|
|
<tr>
|
|
[% FOREACH header_field IN TABL.header_fields %]
|
|
<th>[% header_field.field_label %]</th>
|
|
[% END %]
|
|
</tr>
|
|
[% ELSE %]
|
|
<tr>
|
|
[% FOREACH text_field IN TABL.text_fields %]
|
|
[% IF ( text_field.select_field ) %]
|
|
<td align="center"><input type="checkbox" name="action" value="[% text_field.field_value %]" /></td>
|
|
[% ELSIF ( text_field.field_value ) %]
|
|
<td>[% text_field.field_value %]</td>
|
|
[% ELSE %]
|
|
<td> </td>
|
|
[% END %]
|
|
[% END %]
|
|
</tr>
|
|
[% END %]
|
|
[% END %]
|
|
</table>
|
|
</li>
|
|
</fieldset>
|
|
<fieldset class="action">
|
|
<input type="hidden" name="op" value="delete" />
|
|
<span id="delete"><input id="deletesu" type="button" id="delete" onclick="DeleteConfirm()" value="Delete image(s)" /></span>
|
|
<span id="delete_cancel"><a id="canceldel" href="/cgi-bin/koha/patroncards/home.pl" class="cancel">Cancel</a></span>
|
|
</fieldset>
|
|
</form>
|
|
[% ELSE %]
|
|
<fieldset class="brief">
|
|
<div class="hint">
|
|
No images are currently available.
|
|
</div>
|
|
</fieldset>
|
|
[% END %]
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="yui-b noprint">
|
|
[% INCLUDE 'patroncards-menu.inc' %]
|
|
</div>
|
|
</div>
|
|
[% INCLUDE 'intranet-bottom.inc' %]
|