Album Image Uploads: Difference between revisions
Jump to navigation
Jump to search
| Line 13: | Line 13: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
* In the page header for the details and edit pages: | * In the page header for the details and edit pages: | ||
<syntaxhighlight lang="javascript"> | <syntaxhighlight lang="javascript" highlight="2"> | ||
$(document).ready(function() { | $(document).ready(function() { | ||
$('.image-upload-container').galleries('bindImageOverlayHandlers'); | $('.image-upload-container').galleries('bindImageOverlayHandlers'); | ||
Revision as of 04:42, 27 March 2012
Upload Types
Content type without album
Album-based content using a gallery image as a thumbnail
- The thumbnail is a pointer to one of the album image records.
- In the content properties CMS check the "use gallery image as thumbnail" option.
- To make the edit and delete buttons available when the thumbnail image is clicked:
include (COMMON_TEMPLATE_DIR."forms/images/thumbnail_overlay_buttons.php");
- To insert an editable thumbnail image (either gallery-based or independent) into the edit form or details content include:
include (COMMON_TEMPLATE_DIR."forms/images/select_thumbnail_link_container.php");
- In the page header for the details and edit pages:
$(document).ready(function() {
$('.image-upload-container').galleries('bindImageOverlayHandlers');
});
</script>
Album-based content with thumbnail record independent of the gallery images
- The thumbnail
image_linkrecord has the sametype_idas the parent content record. - The gallery images have a different
type_idvalue from the thumbnail imageimage_linkrecord.
PHP Classes
- Shared PHP classes
[COMMON_LIB]_classes/images/image_upload_class.php(extendsimage_link_class)
PHP Template Includes
[COMMON_TEMPLATE_DIR]forms/images/thumbnail_overlay_buttons.php
Include this once somewhere on the page containing the image upload controls.- For album-based uploads (both with linked and independent thumbnails)
include (COMMON_TEMPLATE_DIR."forms/images/select_thumbnail_link_container.php");
- For images within gallery listings:
- IMG
class="gallery-edit" - IMG attributes
data-idanddata-tid $('.gallery-edit')handler is set inLITTLED.Gallery.bindImageOverlayHandlers()- single click: display edit and delete buttons overlaid on the image
- double click: display the full-sized version of the image in a lightbox
- IMG
JavaScript Libraries
[COMMON_LIB]scripts/littled/littled.js[COMMON_LIB]scripts/littled/listings.js[COMMON_LIB]scripts/littled/gallery.js
AJAX Handler Scripts
[ADMIN_ROOT]_ajax/images/edit_image.php
Designed to handle uploading and editing images from within image and album listings.[ADMIN_ROOT]_ajax/images/upload_image.php
Designed to handler uploading a single image within the parent article edit form.
MySQL Tables
image_linkimagessite_sectionsection_properties