
pbx.galleries.collection={collection_form:null,debug:true,init:function()
{var order_selection_options={url:'/includes/popup/order_album',beforeSubmit:pbx.galleries.collection.form_check,success:pbx.galleries.collection.open_order_popup};pbx.galleries.collection.collection_form=$('form#pbx_order_collection_form').ajaxForm(order_selection_options);},form_check:function(the_data,the_form,the_options){pbx.show_overlay(true,function(){pbx.popup.on_close();});pbx.show_loading(true);var has_album_id=false;var has_photo_ids=false;for(var i=0;i<the_data.length;i++){switch(the_data[i].name)
{case'album_id':if(the_data[i].value.match(/^\d+$/))
{has_album_id=true;}
break;case'photos':if(the_data[i].value.match(/^\d+$/))
{has_photo_ids=true;}}
if(has_album_id&&has_photo_ids)
{return true;}}
if(!(has_album_id&&has_photo_ids))
{var title=$('input.pbx_order_selection_ajax').val();var content=$('#pbx_zero_selected_photos_error').html();pbx.show_loading(true);pbx.popup.genericOK.open(title,content);}
return has_album_id&&has_photo_ids;},open_order_popup:function(the_response)
{if(!pbx.popup.popup)
{pbx.popup.popup=$("div#pbx_popup_window");}
pbx.popup.settings={height:170,width:400}
var title=$('input.pbx_order_selection_ajax').val();pbx.popup.show_from_ajax(the_response);pbx.popup.orderAlbum.callback({settings:pbx.popup.settings});$('#pbx_popup_title').html(title);return;}};$(document).ready(function()
{pbx.galleries.collection.init();});