// SYSTEM PANEL //
[ROOT]
/
home
/
salvufkx
/
homedir
/
public_html
/
wp-content
/
plugins
/
photo-gallery
/
admin
/
views
[ PARENT ]
EDIT :: BWGViewGalleries_bwg.php
<?php class BWGViewGalleries_bwg { //////////////////////////////////////////////////////////////////////////////////////// // Events // //////////////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////////////// // Constants // //////////////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////////////// // Variables // //////////////////////////////////////////////////////////////////////////////////////// private $model; //////////////////////////////////////////////////////////////////////////////////////// // Constructor & Destructor // //////////////////////////////////////////////////////////////////////////////////////// public function __construct($model) { $this->model = $model; } //////////////////////////////////////////////////////////////////////////////////////// // Public Methods // //////////////////////////////////////////////////////////////////////////////////////// public function display() { global $WD_BWG_UPLOAD_DIR; $rows_data = $this->model->get_rows_data(); $page_nav = $this->model->page_nav(); $search_value = ((isset($_POST['search_value'])) ? esc_html(stripslashes($_POST['search_value'])) : ''); $search_select_value = ((isset($_POST['search_select_value'])) ? (int) $_POST['search_select_value'] : 0); $asc_or_desc = ((isset($_POST['asc_or_desc'])) ? esc_html(stripslashes($_POST['asc_or_desc'])) : 'asc'); $order_by = (isset($_POST['order_by']) ? esc_html(stripslashes($_POST['order_by'])) : 'order'); $order_class = 'manage-column column-title sorted ' . $asc_or_desc; $ids_string = ''; $per_page = $this->model->per_page(); $pager = 0; $gallery_button_array = array( 'publish_all' => __('Publish', 'bwg_back'), 'unpublish_all' => __('Unpublish', 'bwg_back'), 'delete_all' => __('Delete', 'bwg_back') ); ?> <div style="clear: both; float: left; width: 99%;"> <div style="float:left; font-size: 14px; font-weight: bold;"> <?php _e("This section allows you to create, edit and delete galleries.", 'bwg_back'); ?> <a style="color: blue; text-decoration: none;" target="_blank" href="https://web-dorado.com/wordpress-gallery/creating-editing-galleries.html"><?php _e("Read More in User Manual", 'bwg_back'); ?></a> </div> <div style="float: right; text-align: right;"> <a style="text-decoration: none;" target="_blank" href="https://web-dorado.com/files/fromPhotoGallery.php"> <img width="215" border="0" alt="web-dorado.com" src="<?php echo WD_BWG_URL . '/images/logo.png'; ?>" /> </a> </div> </div> <form class="wrap bwg_form" id="galleries_form" method="post" action="admin.php?page=galleries_bwg" style="float: left; width: 99%;"> <?php wp_nonce_field( 'galleries_bwg', 'bwg_nonce' ); ?> <span class="gallery-icon"></span> <h2> <?php _e("Galleries", 'bwg_back'); ?> <a href="" id="galleries_id" class="add-new-h2" onclick="spider_set_input_value('task', 'add'); spider_form_submit(event, 'galleries_form')"><?php _e("Add new", 'bwg_back'); ?></a> </h2> <div id="draganddrop" class="wd_updated" style="display:none;"><strong><p><?php _e("Changes made in this table should be saved.", 'bwg_back'); ?></p></strong></div> <?php WDWLibrary::search(__('Name','bwg_back'), $search_value, 'galleries_form', '');?> <div class="tablenav top buttons_div" > <span class="wd-btn wd-btn-primary-gray bwg_check_all non_selectable" onclick="spider_check_all_items()"> <input type="checkbox" id="check_all_items" name="check_all_items" onclick="spider_check_all_items_checkbox()" style="margin: 0; vertical-align: middle;" /> <span style="vertical-align: middle;"><?php echo __('Select All', 'bwg_back'); ?></span> </span> <select class='select_icon bulk_action'> <option value=""><?php _e('Bulk Actions', 'bwg_back'); ?></option> <?php foreach($gallery_button_array as $key => $value) { ?> <option value="<?php echo $key; ?>"> <?php echo $value; ?> </option> <?php } ?> </select> <input class="wd-btn wd-btn-primary wd-btn-icon wd-btn-apply" type="button" title="<?php _e("Apply","bwg_back"); ?>" onclick="if (!bwg_bulk_actions('.bulk_action', 'gallery_page')) {return false;}" value="<?php _e("Apply","bwg_back"); ?>" /> <?php WDWLibrary::html_page_nav($page_nav['total'], $pager++, $page_nav['limit'], 'galleries_form', $per_page); ?> </div> <table class="wp-list-table widefat fixed pages"> <thead> <th class="sortable check-column table_small_col manage-column <?php if ($order_by == 'order') {echo $order_class;} ?>" style="margin: 0px auto 5px 15px; width: 77px; vertical-align: middle;"> <a id="show_hide_weights" class="bwg_order_column" title="<?php echo __('Hide order column', 'bwg_back'); ?>" onclick="spider_show_hide_weights();" value="<?php echo __('Hide order column', 'bwg_back'); ?>" ></a> <a id="show_order_button" class="bwg_save_order" title="<?php echo __('Save Order', 'bwg_back'); ?>" onclick="spider_set_input_value('task', 'save_order');spider_form_submit(event, 'galleries_form')" value="<?php echo __('Save Order', 'bwg_back'); ?>" ></a> <a id="th_order" onclick="spider_set_input_value('task', ''); spider_set_input_value('order_by', 'order'); spider_set_input_value('asc_or_desc', '<?php echo ((isset($_POST['asc_or_desc']) && isset($_POST['order_by']) && (esc_html(stripslashes($_POST['order_by'])) == 'order') && esc_html(stripslashes($_POST['asc_or_desc'])) == 'asc') ? 'desc' : 'asc'); ?>'); spider_form_submit(event, 'galleries_form')" href=""> <span class="sorting-indicator"></span> </a> </th> <th class="sortable manage-column column-cb check-column table_small_col" style="padding-top:15px !important;"><input id="check_all" type="checkbox" onclick="spider_check_all(this)" style="margin:0" /></th> <th class="sortable table_th_middle table_small_col <?php if ($order_by == 'id') {echo $order_class;} ?>"> <a onclick="spider_set_input_value('task', ''); spider_set_input_value('order_by', 'id'); spider_set_input_value('asc_or_desc', '<?php echo ((isset($_POST['asc_or_desc']) && isset($_POST['order_by']) && (esc_html(stripslashes($_POST['order_by'])) == 'id') && esc_html(stripslashes($_POST['asc_or_desc'])) == 'asc') ? 'desc' : 'asc'); ?>'); spider_form_submit(event, 'galleries_form')" href=""> <span>ID</span><span class="sorting-indicator"></span> </a> </th> <th class="table_extra_large_col"><?php echo __('Thumbnail', 'bwg_back'); ?></th> <th class="sortable <?php if ($order_by == 'name') {echo $order_class;} ?>"> <a onclick="spider_set_input_value('task', ''); spider_set_input_value('order_by', 'name'); spider_set_input_value('asc_or_desc', '<?php echo ((isset($_POST['asc_or_desc']) && isset($_POST['order_by']) && (esc_html(stripslashes($_POST['order_by'])) == 'name') && esc_html(stripslashes($_POST['asc_or_desc'])) == 'asc') ? 'desc' : 'asc'); ?>'); spider_form_submit(event, 'galleries_form')" href=""> <span><?php echo __('Name', 'bwg_back'); ?></span><span class="sorting-indicator"></span> </a> </th> <th class="sortable <?php if ($order_by == 'slug') {echo $order_class;} ?>"> <a onclick="spider_set_input_value('task', ''); spider_set_input_value('order_by', 'slug'); spider_set_input_value('asc_or_desc', '<?php echo ((isset($_POST['asc_or_desc']) && isset($_POST['order_by']) && (esc_html(stripslashes($_POST['order_by'])) == 'slug') && esc_html(stripslashes($_POST['asc_or_desc'])) == 'asc') ? 'desc' : 'asc'); ?>'); spider_form_submit(event, 'galleries_form')" href=""> <span><?php echo __('Slug', 'bwg_back'); ?></span><span class="sorting-indicator"></span> </a> </th> <th class="sortable <?php if ($order_by == 'display_name') {echo $order_class;} ?>"> <a onclick="spider_set_input_value('task', ''); spider_set_input_value('order_by', 'display_name'); spider_set_input_value('asc_or_desc', '<?php echo ((isset($_POST['asc_or_desc']) && isset($_POST['order_by']) && (esc_html(stripslashes($_POST['order_by'])) == 'display_name') && esc_html(stripslashes($_POST['asc_or_desc'])) == 'asc') ? 'desc' : 'asc'); ?>'); spider_form_submit(event, 'galleries_form')" href=""> <span><?php echo __('Author', 'bwg_back'); ?></span><span class="sorting-indicator"></span> </a> </th> <th class="table_big_col"><?php echo __('Images count', 'bwg_back'); ?></th> <th class="sortable table_big_col <?php if ($order_by == 'published') {echo $order_class;} ?>" style="padding-left:30px;"> <a onclick="spider_set_input_value('task', ''); spider_set_input_value('order_by', 'published'); spider_set_input_value('asc_or_desc', '<?php echo ((isset($_POST['asc_or_desc']) && isset($_POST['order_by']) && (esc_html(stripslashes($_POST['order_by'])) == 'published') && esc_html(stripslashes($_POST['asc_or_desc'])) == 'asc') ? 'desc' : 'asc'); ?>'); spider_form_submit(event, 'galleries_form')" href=""> <span><?php echo __('Published', 'bwg_back'); ?></span><span class="sorting-indicator"></span> </a> </th> <th class="table_small_col"><?php echo __('Edit', 'bwg_back'); ?></th> <th class="table_small_col"><?php echo __('Delete', 'bwg_back'); ?></th> </thead> <tbody id="tbody_arr"> <?php if ($rows_data) { foreach ($rows_data as $row_data) { $alternate = (!isset($alternate) || $alternate == 'class="alternate"') ? '' : 'class="alternate"'; $published_image = (($row_data->published) ? 'publish-blue' : 'unpublish-red'); $published = (($row_data->published) ? 'unpublish' : 'publish'); $unpublish = ((!$row_data->published) ? 'Unpublish' : 'Publish'); $images_count = $this->model->get_images_count($row_data->id); if ($row_data->preview_image == '') { $preview_image = WD_BWG_URL . '/images/no-image.png'; } else { $preview_image = site_url() . '/' . $WD_BWG_UPLOAD_DIR . $row_data->preview_image; } ?> <tr id="tr_<?php echo $row_data->id; ?>" <?php echo $alternate; ?>> <td class="spider_order table_medium_col"><input id="order_input_<?php echo $row_data->id; ?>" name="order_input_<?php echo $row_data->id; ?>" type="text" size="1" value="<?php echo $row_data->order; ?>" /></td> <td class="connectedSortable handles table_small_col"><div title="Drag to re-order" class="handle" style="margin:5px auto 0 auto;"></div></td> <td class="table_small_col check-column"><input id="check_<?php echo $row_data->id; ?>" name="check_<?php echo $row_data->id; ?>" onclick="spider_check_all(this)" type="checkbox" /></td> <td class="table_small_col"><?php echo $row_data->id; ?></td> <td class="table_extra_large_col"> <img title="<?php echo $row_data->name; ?>" style="border: 1px solid #CCCCCC; max-width:60px; max-height:60px;" src="<?php echo $preview_image . '?date=' . date('Y-m-y H:i:s'); ?>"> </td> <td><a onclick="spider_set_input_value('task', 'edit'); spider_set_input_value('page_number', '1'); spider_set_input_value('search_value', ''); spider_set_input_value('search_or_not', ''); spider_set_input_value('asc_or_desc', 'asc'); spider_set_input_value('order_by', 'order'); spider_set_input_value('current_id', '<?php echo $row_data->id; ?>'); spider_form_submit(event, 'galleries_form')" href="" title="<?php _e("Edit", 'bwg_back'); ?>"><?php echo $row_data->name; ?></a></td> <td><?php echo $row_data->slug; ?></td> <td><?php echo get_userdata($row_data->author)->display_name; ?></td> <td class="table_large_col"><?php echo $images_count; ?></td> <td class="table_big_col publish_icon"><a style="background-image:url('<?php echo WD_BWG_URL . '/images/icons/' . $published_image . '.png'; ?>'); background-repeat: no-repeat; display: inline-block; width: 18px; height: 22px;margin: 3px; vertical-align: middle;background-size: contain;" title="<?php echo $unpublish; ?>" onclick="spider_set_input_value('task', '<?php echo $published; ?>');spider_set_input_value('current_id', '<?php echo $row_data->id; ?>');spider_form_submit(event, 'galleries_form')" href=""></a></td> <td class="table_big_col"><a class="bwg_img_edit" title="<?php echo __('Edit', 'bwg_back'); ?>" onclick="spider_set_input_value('task', 'edit'); spider_set_input_value('page_number', '1'); spider_set_input_value('search_value', ''); spider_set_input_value('search_or_not', ''); spider_set_input_value('asc_or_desc', 'asc'); spider_set_input_value('order_by', 'order'); spider_set_input_value('current_id', '<?php echo $row_data->id; ?>'); spider_form_submit(event, 'galleries_form')" href=""></a></td> <td class="table_big_col"><a class="bwg_img_remove" title="<?php echo __('Delete', 'bwg_back'); ?>" onclick="if (confirm('<?php echo addslashes(__('Do you want to delete selected items?', 'bwg_back')); ?>')) { spider_set_input_value('task', 'delete'); spider_set_input_value('current_id', '<?php echo $row_data->id; ?>'); spider_form_submit(event, 'galleries_form') } else { return false; }" href=""></a></td> </tr> <?php $ids_string .= $row_data->id . ','; } } ?> </tbody> </table> <div class="tablenav bottom"> <?php WDWLibrary::html_page_nav($page_nav['total'], $pager++, $page_nav['limit'], 'galleries_form', $per_page); ?> </div> <input id="task" name="task" type="hidden" value="" /> <input id="current_id" name="current_id" type="hidden" value="" /> <input id="ids_string" name="ids_string" type="hidden" value="<?php echo $ids_string; ?>" /> <input id="asc_or_desc" name="asc_or_desc" type="hidden" value="asc" /> <input id="order_by" name="order_by" type="hidden" value="<?php echo $order_by; ?>" /> <script> window.onload = spider_show_hide_weights; </script> </form> <?php } public function edit($id) { global $WD_BWG_UPLOAD_DIR; global $wd_bwg_options; $row = $this->model->get_row_data($id); $page_title = (($id != 0) ? __('Edit gallery','bwg_back') . $row->name : __('Create new gallery','bwg_back')); $per_page = $this->model->per_page(); $images_count = $this->model->get_images_count($id); ?> <div style="clear: both; float: left; width: 99%;"> <div id="message_div" class="wd_updated" style="display: none;"></div> <div style="float:left; font-size: 14px; font-weight: bold;"> <?php _e("This section allows you to add/edit gallery.", 'bwg_back'); ?> <a style="color: blue; text-decoration: none;" target="_blank" href="https://web-dorado.com/wordpress-gallery/creating-editing-galleries.html"><?php _e("Read More in User Manual", 'bwg_back'); ?></a> </div> <div style="float: right; text-align: right;"> <a style="text-decoration: none;" target="_blank" href="https://web-dorado.com/files/fromPhotoGallery.php"> <img width="215" border="0" alt="web-dorado.com" src="<?php echo WD_BWG_URL . '/images/logo.png'; ?>" /> </a> </div> </div> <script> function spider_set_href(a, number, type) { var image_url = document.getElementById("image_url_" + number).value; var thumb_url = document.getElementById("thumb_url_" + number).value; <?php $query_url = wp_nonce_url( admin_url('admin-ajax.php'), 'editThumb', 'bwg_nonce' ); ?> a.href='<?php echo add_query_arg(array('action' => 'editThumb', 'width' => '800', 'height' => '500'), $query_url); ?>&type=' + type + '&image_id=' + number + '&image_url=' + image_url + '&thumb_url=' + thumb_url + '&TB_iframe=1'; } function bwg_add_preview_image(files) { document.getElementById("preview_image").value = files[0]['thumb_url']; document.getElementById("button_preview_image").style.display = "none"; document.getElementById("delete_preview_image").style.display = "inline-block"; if (document.getElementById("img_preview_image")) { document.getElementById("img_preview_image").src = files[0]['reliative_url']; document.getElementById("img_preview_image").style.display = "inline-block"; } } var j_int = 0; var bwg_j = 'pr_' + j_int; function bwg_add_image(files) { jQuery(document).trigger("bwgImagesAdded"); var tbody = document.getElementById('tbody_arr'); for (var i in files) { var is_direct_url = files[i]['filetype'].indexOf("DIRECT_URL_") > -1 ? true : false; var is_embed = files[i]['filetype'].indexOf("EMBED_") > -1 ? true : false; var tr = document.createElement('tr'); tr.setAttribute('id', "tr_" + bwg_j); if (tbody.firstChild) { tbody.insertBefore(tr, tbody.firstChild); } else { tbody.appendChild(tr); } // Handle TD. var td_handle = document.createElement('td'); td_handle.setAttribute('class', "connectedSortable table_small_col"); td_handle.setAttribute('title', "Drag to re-order"); tr.appendChild(td_handle); var div_handle = document.createElement('div'); div_handle.setAttribute('class', "bwg_img_handle handle connectedSortable"); div_handle.setAttribute('style', "margin: 5px auto 0px;"); td_handle.appendChild(div_handle); // Checkbox TD. var td_checkbox = document.createElement('td'); td_checkbox.setAttribute('class', "table_small_col check-column"); td_checkbox.setAttribute('onclick', "spider_check_all(this)"); tr.appendChild(td_checkbox); var input_checkbox = document.createElement('input'); input_checkbox.setAttribute('id', "check_" + bwg_j); input_checkbox.setAttribute('name', "check_" + bwg_j); input_checkbox.setAttribute('type', "checkbox"); td_checkbox.appendChild(input_checkbox); // Numbering TD. var td_numbering = document.createElement('td'); td_numbering.setAttribute('class', "table_small_col"); td_numbering.innerHTML = ""; tr.appendChild(td_numbering); // Thumb TD. var td_thumb = document.createElement('td'); td_thumb.setAttribute('class', "table_extra_large_col"); tr.appendChild(td_thumb); var a_thumb = document.createElement('a'); a_thumb.setAttribute('class', "thickbox thickbox-preview"); <?php $query_url = wp_nonce_url( admin_url('admin-ajax.php'), 'editThumb', 'bwg_nonce' ); ?> a_thumb.setAttribute('href', "<?php echo add_query_arg(array('action' => 'editThumb', 'type' => 'display'/*thumb_display*/, 'width' => '650', 'height' => '500'), $query_url); ?>&image_id=" + bwg_j + "&TB_iframe=1"); a_thumb.setAttribute('title', files[i]['name']); td_thumb.appendChild(a_thumb); var img_thumb = document.createElement('img'); img_thumb.setAttribute('id', "image_thumb_" + bwg_j); img_thumb.setAttribute('class', "thumb"); img_thumb.setAttribute('src', files[i]['thumb']); a_thumb.appendChild(img_thumb); // Filename TD. var td_filename = document.createElement('td'); td_filename.setAttribute('class', "table_extra_large_col"); tr.appendChild(td_filename); var div_filename = document.createElement('div'); div_filename.setAttribute('class', "filename"); div_filename.setAttribute('id', "filename_" + bwg_j); td_filename.appendChild(div_filename); var strong_filename = document.createElement('strong'); div_filename.appendChild(strong_filename); var a_filename = document.createElement('a'); <?php $query_url = wp_nonce_url( admin_url('admin-ajax.php'), 'editThumb', 'bwg_nonce' ); ?> a_filename.setAttribute('href', "<?php echo add_query_arg(array('action' => 'editThumb', 'type' => 'display', 'width' => '800', 'height' => '500'), $query_url); ?>&image_id=" + bwg_j + "&TB_iframe=1"); a_filename.setAttribute('class', "spider_word_wrap thickbox thickbox-preview"); a_filename.setAttribute('title', files[i]['filename']); a_filename.innerHTML = files[i]['filename']; strong_filename.appendChild(a_filename); var div_date_modified = document.createElement('div'); div_date_modified.setAttribute('class', "fileDescription"); div_date_modified.setAttribute('title', "Date modified"); div_date_modified.setAttribute('id', "date_modified_" + bwg_j); div_date_modified.innerHTML = files[i]['date_modified']; td_filename.appendChild(div_date_modified); var div_fileresolution = document.createElement('div'); div_fileresolution.setAttribute('class', "fileDescription"); div_fileresolution.setAttribute('title', "Image Resolution"); div_fileresolution.setAttribute('id', "fileresolution" + bwg_j); div_fileresolution.innerHTML = files[i]['resolution']; td_filename.appendChild(div_fileresolution); var div_filesize = document.createElement('div'); div_filesize.setAttribute('class', "fileDescription"); div_filesize.setAttribute('title', "Image size"); div_filesize.setAttribute('id', "filesize" + bwg_j); div_filesize.innerHTML = files[i]['size']; td_filename.appendChild(div_filesize); var div_filetype = document.createElement('div'); div_filetype.setAttribute('class', "fileDescription"); div_filetype.setAttribute('title', "Type"); div_filetype.setAttribute('id', "filetype" + bwg_j); div_filetype.innerHTML = files[i]['filetype']; td_filename.appendChild(div_filetype); if ( !is_embed ) { var div_edit = document.createElement('div'); td_filename.appendChild(div_edit); var span_edit_crop = document.createElement('span'); span_edit_crop.setAttribute('class', "edit_thumb"); div_edit.appendChild(span_edit_crop); var a_crop = document.createElement('a'); a_crop.setAttribute('class', "thickbox thickbox-preview"); a_crop.setAttribute('onclick', "spider_set_href(this, '" + bwg_j + "', 'crop');"); a_crop.innerHTML = "<?php _e('Crop', 'bwg_back'); ?>"; span_edit_crop.appendChild(a_crop); div_edit.innerHTML += " | "; var span_edit_rotate = document.createElement('span'); span_edit_rotate.setAttribute('class', "edit_thumb"); div_edit.appendChild(span_edit_rotate); var a_rotate = document.createElement('a'); a_rotate.setAttribute('class', "thickbox thickbox-preview"); a_rotate.setAttribute('onclick', "spider_set_href(this, '" + bwg_j + "', 'rotate');"); a_rotate.innerHTML = "<?php _e('Edit', 'bwg_back'); ?>"; span_edit_rotate.appendChild(a_rotate); div_edit.innerHTML += " | " var span_edit_recover = document.createElement('span'); span_edit_recover.setAttribute('class', "edit_thumb"); div_edit.appendChild(span_edit_recover); var a_recover = document.createElement('a'); a_recover.setAttribute('onclick', 'if (confirm("<?php echo addslashes(__('Do you want to reset the image?', 'bwg_back')); ?>")) { spider_set_input_value("ajax_task", "recover"); spider_set_input_value("image_current_id", "' + bwg_j + '"); spider_ajax_save("galleries_form");} return false;'); a_recover.innerHTML = "<?php _e('Reset', 'bwg_back'); ?>"; span_edit_recover.appendChild(a_recover); } var input_image_url = document.createElement('input'); input_image_url.setAttribute('id', "image_url_" + bwg_j); input_image_url.setAttribute('name', "image_url_" + bwg_j); input_image_url.setAttribute('type', "hidden"); input_image_url.setAttribute('value', files[i]['url']); td_filename.appendChild(input_image_url); var input_thumb_url = document.createElement('input'); input_thumb_url.setAttribute('id', "thumb_url_" + bwg_j); input_thumb_url.setAttribute('name', "thumb_url_" + bwg_j); input_thumb_url.setAttribute('type', "hidden"); input_thumb_url.setAttribute('value', files[i]['thumb_url']); td_filename.appendChild(input_thumb_url); var input_filename = document.createElement('input'); input_filename.setAttribute('id', "input_filename_" + bwg_j); input_filename.setAttribute('name', "input_filename_" + bwg_j); input_filename.setAttribute('type', "hidden"); input_filename.setAttribute('value', files[i]['filename']); td_filename.appendChild(input_filename); var input_date_modified = document.createElement('input'); input_date_modified.setAttribute('id', "input_date_modified_" + bwg_j); input_date_modified.setAttribute('name', "input_date_modified_" + bwg_j); input_date_modified.setAttribute('type', "hidden"); input_date_modified.setAttribute('value', files[i]['date_modified']); td_filename.appendChild(input_date_modified); var input_resolution = document.createElement('input'); input_resolution.setAttribute('id', "input_resolution_" + bwg_j); input_resolution.setAttribute('name', "input_resolution_" + bwg_j); input_resolution.setAttribute('type', "hidden"); input_resolution.setAttribute('value', files[i]['resolution']); td_filename.appendChild(input_resolution); var input_size = document.createElement('input'); input_size.setAttribute('id', "input_size_" + bwg_j); input_size.setAttribute('name', "input_size_" + bwg_j); input_size.setAttribute('type', "hidden"); input_size.setAttribute('value', files[i]['size']); td_filename.appendChild(input_size); var input_filetype = document.createElement('input'); input_filetype.setAttribute('id', "input_filetype_" + bwg_j); input_filetype.setAttribute('name', "input_filetype_" + bwg_j); input_filetype.setAttribute('type', "hidden"); input_filetype.setAttribute('value', files[i]['filetype']); td_filename.appendChild(input_filetype); // Alt/Title TD. var td_alt = document.createElement('td'); td_alt.setAttribute('class', "table_extra_large_col"); tr.appendChild(td_alt); var input_alt = document.createElement('textarea'); input_alt.setAttribute('id', "image_alt_text_" + bwg_j); input_alt.setAttribute('name', "image_alt_text_" + bwg_j); input_alt.setAttribute('style', "resize: vertical; height: 54px;"); input_alt.setAttribute('rows', "2"); if (is_embed && !is_direct_url) { input_alt.innerHTML = files[i]['name']; } else {/*uploaded images and direct URLs of images only*/ input_alt.innerHTML = files[i]['filename']; } td_alt.appendChild(input_alt); <?php if ($wd_bwg_options->thumb_click_action != 'open_lightbox') { ?> //Redirect url input_alt = document.createElement('input'); input_alt.setAttribute('id', "redirect_url_" + bwg_j); input_alt.setAttribute('name', "redirect_url_" + bwg_j); input_alt.setAttribute('type', "text"); input_alt.setAttribute('size', "24"); td_alt.appendChild(input_alt); <?php } ?> // Description TD. var td_desc = document.createElement('td'); td_desc.setAttribute('class', "table_extra_large_col"); tr.appendChild(td_desc); var textarea_desc = document.createElement('textarea'); textarea_desc.setAttribute('id', "image_description_" + bwg_j); textarea_desc.setAttribute('name', "image_description_" + bwg_j); textarea_desc.setAttribute('rows', "2"); textarea_desc.setAttribute('style', "resize:vertical;"); if (is_embed && !is_direct_url) { textarea_desc.innerHTML = files[i]['description']; } else if (<?php echo $wd_bwg_options->read_metadata; ?>) { textarea_desc.innerHTML = files[i]['credit'] ? 'Author: ' + files[i]['credit'] + '\n' : ''; textarea_desc.innerHTML += ((files[i]['aperture'] != 0 && files[i]['aperture'] != '') ? 'Aperture: ' + files[i]['aperture'] + '\n' : ''); textarea_desc.innerHTML += ((files[i]['camera'] != 0 && files[i]['camera'] != '') ? 'Camera: ' + files[i]['camera'] + '\n' : ''); textarea_desc.innerHTML += ((files[i]['caption'] != 0 && files[i]['caption'] != '') ? 'Caption: ' + files[i]['caption'] + '\n' : ''); textarea_desc.innerHTML += ((files[i]['iso'] != 0 && files[i]['iso'] != '') ? 'Iso: ' + files[i]['iso'] + '\n' : ''); textarea_desc.innerHTML += ((files[i]['copyright'] != 0 && files[i]['copyright'] != '') ? 'Copyright: ' + files[i]['copyright'] + '\n' : ''); textarea_desc.innerHTML += ((files[i]['orientation'] != 0 && files[i]['orientation'] != '') ? 'Orientation: ' + files[i]['orientation'] + '\n' : ''); } td_desc.appendChild(textarea_desc); // Tag TD. var td_tag = document.createElement('td'); td_tag.setAttribute('class', "table_extra_large_col"); tr.appendChild(td_tag); var a_tag = document.createElement('a'); a_tag.setAttribute('class', "button-small wd-btn wd-btn-primary wd-not-image thickbox thickbox-preview"); a_tag.setAttribute('title' , "<?php addslashes(_e("Add tag", 'bwg_back')); ?>"); <?php $query_url = wp_nonce_url( admin_url('admin-ajax.php'), 'addTags', 'bwg_nonce' ); ?> a_tag.setAttribute('href', "<?php echo add_query_arg(array('action' => 'addTags', 'width' => '650', 'height' => '500', 'bwg_items_per_page' => $per_page), $query_url); ?>&image_id=" + bwg_j + "&TB_iframe=1"); a_tag.innerHTML = '<?php addslashes(_e("Add tag", 'bwg_back')); ?>'; td_tag.appendChild(a_tag); var div_tag = document.createElement('div'); div_tag.setAttribute('class', "tags_div"); div_tag.setAttribute('id', "tags_div_" + bwg_j); td_tag.appendChild(div_tag); var hidden_tag = document.createElement('input'); hidden_tag.setAttribute('type', "hidden"); hidden_tag.setAttribute('id', "tags_" + bwg_j); hidden_tag.setAttribute('name', "tags_" + bwg_j); hidden_tag.setAttribute('value', ""); td_tag.appendChild(hidden_tag); // Order TD. var td_order = document.createElement('td'); td_order.setAttribute('class', "spider_order table_medium_col"); td_order.setAttribute('style', "display: none;"); tr.appendChild(td_order); var input_order = document.createElement('input'); input_order.setAttribute('id', "order_input_" + bwg_j); input_order.setAttribute('name', "order_input_" + bwg_j); input_order.setAttribute('type', "text"); input_order.setAttribute('value', 0 - j_int); input_order.setAttribute('size', "1"); td_order.appendChild(input_order); // Publish TD. var td_publish = document.createElement('td'); td_publish.setAttribute('class', "table_big_col publish_icon"); tr.appendChild(td_publish); var a_publish = document.createElement('a'); a_publish.setAttribute('style',"background-image:url('<?php echo WD_BWG_URL . '/images/icons/publish-blue.png'; ?>');background-repeat: no-repeat; display: inline-block; width: 18px; height: 22px;margin: 3px; vertical-align: middle;background-size: contain;") a_publish.setAttribute('onclick', "spider_set_input_value('ajax_task', 'image_unpublish');spider_set_input_value('image_current_id', '" + bwg_j + "');spider_ajax_save('galleries_form');"); a_publish.setAttribute('title','Publish'); td_publish.appendChild(a_publish); // Delete TD. var td_delete = document.createElement('td'); td_delete.setAttribute('class', "table_big_col spider_delete_button"); tr.appendChild(td_delete); var a_delete = document.createElement('a'); a_delete.setAttribute('class', "bwg_img_remove"); a_delete.setAttribute('title', "Delete"); a_delete.setAttribute('onclick', "spider_set_input_value('ajax_task', 'image_delete');spider_set_input_value('image_current_id', '" + bwg_j + "');spider_ajax_save('galleries_form');"); td_delete.appendChild(a_delete); document.getElementById("ids_string").value += bwg_j + ','; j_int++; bwg_j = 'pr_' + j_int; } jQuery("#show_hide_weights").val("<?php addslashes(_e("Hide order column", 'bwg_back')); ?>"); jQuery("#show_hide_weights").attr('title',"<?php addslashes(_e("Hide order column", 'bwg_back')); ?>"); spider_show_hide_weights(); } </script> <script language="javascript" type="text/javascript" src="<?php echo WD_BWG_URL . '/js/bwg_embed.js?ver='; ?><?php echo get_option("wd_bwg_version"); ?>"></script> <form class="wrap bwg_form" method="post" id="galleries_form" action="admin.php?page=galleries_bwg" style="float: left; width: 99%;"> <?php wp_nonce_field( 'galleries_bwg', 'bwg_nonce' ); ?> <span class="gallery-icon"></span> <h2><?php echo $page_title; ?></h2> <div style="float:right;"> <input class="wd-btn wd-btn-primary wd-btn-icon wd-btn-save" id='save_gall' type="button" onclick="if (spider_check_required('name', 'Name')) {return false;}; spider_set_input_value('page_number', '1'); spider_set_input_value('ajax_task', 'ajax_save'); spider_ajax_save('galleries_form'); spider_set_input_value('task', 'save');" value="<?php _e("Save", 'bwg_back'); ?>" /> <input class="wd-btn wd-btn-primary wd-btn-icon wd-btn-apply" type="button" onclick="if (spider_check_required('name', 'Name')) {return false;}; spider_set_input_value('ajax_task', 'ajax_apply'); spider_ajax_save('galleries_form');" value="<?php _e("Apply", 'bwg_back'); ?>" /> <input class="wd-btn wd-btn-primary wd-btn-icon wd-btn-cancel" type="submit" onclick="spider_set_input_value('page_number', '1'); spider_set_input_value('task', 'cancel')" value="<?php _e("Cancel", 'bwg_back'); ?>" /> </div> <table style="clear:both; width:99.9%"> <tbody> <tr> <td class="spider_label_galleries"><label for="name"><?php _e("Name:", 'bwg_back'); ?> <span style="color:#FF0000;">*</span> </label></td> <td><input type="text" id="name" name="name" value="<?php echo $row->name; ?>" size="39" /></td> </tr> <tr> <td class="spider_label_galleries"><label for="slug"><?php _e("Slug:", 'bwg_back'); ?> </label></td> <td><input type="text" id="slug" name="slug" value="<?php echo $row->slug; ?>" size="39" /></td> </tr> <tr> <td class="spider_label_galleries"><label for="gallery_type" ><?php _e("Gallery content type:", 'bwg_back'); ?> </label></td> <td class=""> <select class="select_icon" id="gallery_type" style="width:150px;" onchange="bwg_gallery_type();"> <option value="" selected="selected"><?php _e("Standard", 'bwg_back'); ?></option> <option value="instagram"><?php _e("Instagram only", 'bwg_back'); ?></option> </select> <input type="text" id="gallery_type_old" name="gallery_type_old" value="" style='display:none;'/> </td> </tr> </tbody> <tbody id="add_instagram_gallery" class="spider_free_version"><!-- /*use this in javascript*/--> <tr id='tr_gallery_source' style='display:none;'> <td class="spider_label_galleries"><label for="gallery_source" class="spider_free_version_label"><?php _e("Instagram username:", 'bwg_back'); ?> </label></td> <td><input type="text" disabled="disabled" id="gallery_source" value="<?php _e("This option is disabled in free version.", 'bwg_back'); ?>" size="64" /></td> </tr> <tr id='tr_autogallery_image_number' style='display:none;'> <td class="spider_label_galleries"><label for="autogallery_image_number" class="spider_free_version_label"><?php _e("Number of Instagram recent posts to add to gallery: ", 'bwg_back'); ?></label></td> <td><input disabled="disabled" type="number" id="autogallery_image_number" value="12" /></td> </tr> <tr id='tr_instagram_post_gallery' style='display:none'> <td class="spider_label_galleries"><label class="spider_free_version_label">I<?php _e("Instagram embed type:", 'bwg_back'); ?> </label></td> <td> <input disabled="disabled" type="radio" class="inputbox" id="instagram_post_gallery_0" checked="checked" value="0" > <label for="instagram_post_gallery_0"><?php _e("Content", 'bwg_back'); ?></label> <input disabled="disabled" type="radio" class="inputbox" id="instagram_post_gallery_1" value="1" > <label for="instagram_post_gallery_1"><?php _e("Whole post", 'bwg_back'); ?></label> </td> </tr> <tr id='tr_update_flag' style='display:none' > <td class="spider_label_galleries"><label class="spider_free_version_label"><?php _e("Gallery autoupdate option:", 'bwg_back'); ?> </label></td> <td> <input disabled="disabled" type="radio" class="inputbox" id="update_flag_0" value="" > <label for="update_flag_0"><?php _e("No update", 'bwg_back'); ?></label> <input disabled="disabled" type="radio" class="inputbox" id="update_flag_1" value="add" > <label for="update_flag_1"><?php _e("Add new media, keep old ones published.", 'bwg_back'); ?></label> <input disabled="disabled" type="radio" class="inputbox" id="update_flag_2" checked="checked" value="replace" > <label for="update_flag_2"><?php _e("Add new media, unpublish old ones.", 'bwg_back'); ?></label> </td> </tr> <tr id='tr_instagram_gallery_add_button' style='display:none;' > <td class="spider_label_galleries"></td> <td> <input id="instagram_gallery_add_button" class="button-primary spider_free_version_button" type="button" onclick="" value="<?php _e("Add Instagram Gallery", 'bwg_back'); ?>" /> </td> </tr> </tbody> <tbody> <tr> <td class="spider_label_galleries"><label for="description"><?php _e("Description:", 'bwg_back'); ?> </label></td> <td> <div style="width:500px;"> <?php if (user_can_richedit()) { wp_editor($row->description, 'description', array('teeny' => FALSE, 'textarea_name' => 'description', 'media_buttons' => FALSE, 'textarea_rows' => 5)); } else { ?> <textarea cols="36" rows="5" id="description" name="description" style="resize:vertical"> <?php echo $row->description; ?> </textarea> <?php } ?> </div> </td> </tr> <tr> <td class="spider_label_galleries"><label><?php _e("Author:", 'bwg_back'); ?> </label></td> <td><?php echo get_userdata($row->author)->display_name; ?></td> </tr> <tr> <td class="spider_label_galleries"><label><?php _e("Published:", 'bwg_back'); ?> </label></td> <td> <input type="radio" class="inputbox" id="published0" name="published" <?php echo (($row->published) ? '' : 'checked="checked"'); ?> value="0" > <label for="published0"><?php _e("No", 'bwg_back'); ?></label> <input type="radio" class="inputbox" id="published1" name="published" <?php echo (($row->published) ? 'checked="checked"' : ''); ?> value="1" > <label for="published1"><?php _e("Yes", 'bwg_back'); ?></label> </td> </tr> <tr> <td class="spider_label_galleries"><label for="url"><?php _e("Preview image:", 'bwg_back'); ?> </label></td> <td> <?php $query_url = add_query_arg(array('action' => 'addImages', 'width' => '700', 'height' => '550', 'extensions' => 'jpg,jpeg,png,gif', 'callback' => 'bwg_add_preview_image'), admin_url('admin-ajax.php')); $query_url = wp_nonce_url( $query_url, 'addImages', 'bwg_nonce' ); $query_url = add_query_arg(array( 'TB_iframe' => '1'), $query_url); ?> <a href="<?php echo $query_url; ?>" id="button_preview_image" class="wd-preview-image-btn thickbox thickbox-preview" title="<?php echo __('Add Preview Image', 'bwg_back'); ?>" onclick="return false;" style="display:none;"> </a> <input type="hidden" id="preview_image" name="preview_image" value="<?php echo $row->preview_image; ?>" style="display:inline-block;"/> <img id="img_preview_image" style="max-height:90px; max-width:120px; vertical-align:middle;" src="<?php echo site_url() . '/' . $WD_BWG_UPLOAD_DIR . $row->preview_image; ?>"> <span id="delete_preview_image" class="spider_delete_img" onclick="spider_remove_url('button_preview_image', 'preview_image', 'delete_preview_image', 'img_preview_image')"></span> </td> </tr> </tbody> </table> <?php echo $this->image_display($id); ?> <input id="task" name="task" type="hidden" value="" /> <input id="current_id" name="current_id" type="hidden" value="<?php echo $row->id; ?>" /> <script> <?php if ($row->preview_image == '') { ?> spider_remove_url('button_preview_image', 'preview_image', 'delete_preview_image', 'img_preview_image'); <?php } ?> </script> <div id="opacity_div" style="display: none; background-color: rgba(0, 0, 0, 0.2); position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 99998;"></div> <div id="loading_div" style="display:none; text-align: center; position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 99999;"> <img src="<?php echo WD_BWG_URL . '/images/ajax_loader.gif'; ?>" class="bwg_spider_ajax_loading" style="margin-top: 200px; width:30px;"> </div> </form> <?php } public function image_display($id) { global $WD_BWG_UPLOAD_DIR; global $wd_bwg_options; $rows_data = $this->model->get_image_rows_data($id); $page_nav = $this->model->image_page_nav($id); $search_value = ((isset($_POST['search_value'])) ? esc_html(stripslashes($_POST['search_value'])) : ''); $image_asc_or_desc = ((isset($_POST['image_asc_or_desc'])) ? esc_html(stripslashes($_POST['image_asc_or_desc'])) : ((isset($_COOKIE['bwg_image_asc_or_desc'])) ? esc_html(stripslashes($_COOKIE['bwg_image_asc_or_desc'])) : 'asc')); $image_order_by = ((isset($_POST['image_order_by'])) ? esc_html(stripslashes($_POST['image_order_by'])) : ((isset($_COOKIE['bwg_image_order_by'])) ? esc_html(stripslashes($_COOKIE['bwg_image_order_by'])) : 'order')); $order_class = 'manage-column column-title sorted ' . $image_asc_or_desc; $page_number = (isset($_POST['page_number']) ? esc_html(stripslashes($_POST['page_number'])) : 1); $ids_string = ''; $per_page = $this->model->per_page(); $pager = 0; $gallery_row = $this->model->get_row_data($id); $gallery_type = ($gallery_row->gallery_type == 'instagram' || $gallery_row->gallery_type == 'instagram_post') ? 'instagram' : ''; $image_array = array( 'image_set_watermark' => __('Set Watermark', 'bwg_back'), 'image_get_resize' => __('Resize', 'bwg_back'), 'resize_image_thumb' => __('Recreate Thumbnail', 'bwg_back'), 'rotate_left' => __('Rotate left', 'bwg_back'), 'rotate_right' => __('Rotate right', 'bwg_back'), 'image_recover_all' => __('Reset', 'bwg_back'), 'image_publish_all' => __('Publish', 'bwg_back'), 'image_unpublish_all' => __('Unpublish', 'bwg_back'), 'image_desc' => __('Edit', 'bwg_back'), 'image_delete_all' => __('Delete', 'bwg_back'), ); ?> <div class="buttons_div_left"> <?php $query_url = add_query_arg(array('action' => 'addImages', 'width' => '700', 'height' => '550', 'extensions' => 'jpg,jpeg,png,gif', 'callback' => 'bwg_add_image'), admin_url('admin-ajax.php')); $query_url = wp_nonce_url($query_url, 'addImages', 'bwg_nonce'); $query_url = add_query_arg(array('TB_iframe' => '1'), $query_url); ?> <a href="<?php echo $query_url; ?>" id="add_image_bwg" class="wd-btn wd-btn-primary wd-btn-icon wd-btn-add thickbox thickbox-preview" id="content-add_media" title="<?php _e("Add Images", 'bwg_back'); ?>" onclick="return false;" style="margin-bottom:5px; <?php if($gallery_type !='') {echo 'display:none';} ?>" > <?php _e('Add Images', 'bwg_back'); ?> </a> <?php $query_url = wp_nonce_url(admin_url('admin-ajax.php'), '', 'bwg_nonce'); /*(re?)define ajax_url to add nonce only in admin*/ ?> <script> var ajax_url = "<?php echo $query_url; ?>" </script> <input id="show_add_embed" class="wd-btn wd-btn-primary wd-btn-icon wd-btn-media" type="button" title="<?php _e("Embed Media", 'bwg_back'); ?>" onclick="jQuery('.opacity_add_embed').show(); jQuery('#add_embed_help').hide(); return false;" value="<?php _e("Embed Media", 'bwg_back'); ?>" /> <input id="show_bulk_embed" class="wd-btn wd-btn-primary wd-btn-icon wd-btn-bulk_media spider_free_version_button" type="button" title="<?php _e("Social Bulk Embed", 'bwg_back'); ?>" onclick="jQuery('.opacity_bulk_embed').show(); return false;" value="<?php _e("Social Bulk Embed", 'bwg_back'); ?>" /> <?php WDWLibrary::ajax_search(__('Filename', 'bwg_back'), $search_value, 'galleries_form'); ?> </div> <div class="tablenav top buttons_div_left bwg_buttons_div"> <span class="wd-btn wd-btn-primary-gray bwg_check_all non_selectable " onclick="spider_check_all_items()"> <input type="checkbox" id="check_all_items" name="check_all_items" onclick="spider_check_all_items_checkbox()" style="margin: 0; vertical-align: middle;" /> <span style="vertical-align: middle;"><?php echo __('Select All', 'bwg_back'); ?></span> </span> <select class="select_icon bulk_action_img"> <option value=""><?php _e('Bulk Actions', 'bwg_back'); ?></option> <?php foreach ($image_array as $key => $value) { ?> <option value="<?php echo $key; ?>"><?php echo $value; ?></option> <?php } ?> </select> <input class="wd-btn wd-btn-primary wd-btn-icon wd-btn-apply" type="button" title="<?php _e("Apply", "bwg_back"); ?>" onclick="if (!bwg_bulk_actions('.bulk_action_img', '')) {return false;}" value="<?php _e("Apply", "bwg_back"); ?>" /> <?php WDWLibrary::ajax_html_page_nav($page_nav['total'], $page_nav['limit'], 'galleries_form', $per_page, $pager++); ?> </div> <div class="opacity_resize_image opacity_add_embed opacity_image_desc opacity_bulk_embed bwg_opacity_media" onclick="jQuery('.opacity_add_embed').hide(); jQuery('.opacity_bulk_embed').hide(); jQuery('.opacity_resize_image').hide(); jQuery('.opacity_image_desc').hide();"></div> <div id="add_embed" class="opacity_add_embed bwg_add_embed"> <input type="text" id="embed_url" name="embed_url" value="" /> <input class="wd-btn wd-btn-primary wd-btn-icon wd-btn-add" type="button" onclick="if (bwg_get_embed_info('embed_url')) {jQuery('.opacity_add_embed').hide();} return false;" value="<?php _e('Add to gallery', 'bwg_back'); ?>" /> <input class="wd-btn wd-btn-primary wd-btn-icon wd-btn-cancel" type="button" onclick="jQuery('.opacity_add_embed').hide(); return false;" value="<?php _e('Cancel', 'bwg_back'); ?>" /> <div class="spider_description"> <p><?php _e('Enter YouTube, Vimeo, Instagram, Flickr or Dailymotion URL here.', 'bwg_back'); ?> <a onclick="jQuery('#add_embed_help').show();" style='text-decoration: underline; color:blue; cursor: pointer;'><?php _e('Help', 'bwg_back'); ?></a></p> </div> <div id="add_embed_help" class="opacity_add_embed bwg_add_embed" style="display: none;"> <p style="text-align:right; margin-top:0px;"><a onclick="jQuery('#add_embed_help').hide();" style="text-decoration: underline; color:blue; cursor: pointer; "><?php _e('Close', 'bwg_back'); ?></a></p> <p><b>Youtube</b> <?php _e('URL example:', 'bwg_back'); ?> <i>https://www.youtube.com/watch?v=fa4RLjE-yM8</i></p> <p><b>Vimeo</b> <?php _e('URL example:', 'bwg_back'); ?> <i>http://vimeo.com/8110647</i></p> <p><b>Instagram</b> <?php _e('URL example:', 'bwg_back'); ?> <i>http://instagram.com/p/ykvv0puS4u</i>. <?php _e('Add', 'bwg_back'); ?> "<i style="text-decoration:underline;"><?php _e('post', 'bwg_back'); ?></i>" <?php _e('to the end of URL if you want to embed the whole Instagram post, not only its content.', 'bwg_back'); ?></p> <p><b>Flickr</b> <?php _e('URL example:', 'bwg_back'); ?> <i>https://www.flickr.com/photos/sui-fong/15250186998/in/gallery-flickr-72157648726328108/</i></p> <p><b>Dailymotion</b> <?php _e('URL example:', 'bwg_back'); ?> <i>http://www.dailymotion.com/video/xexaq0_frank-sinatra-strangers-in-the-nigh_music</i></p> </div> </div> <div id="bulk_embed" class="opacity_bulk_embed bwg_bulk_embed"> <input class="wd-btn wd-btn-primary wd-btn-icon wd-btn-cancel" type="button" onclick="jQuery('.opacity_bulk_embed').hide(); jQuery('#opacity_div').hide(); jQuery('#loading_div').hide(); return false;" value="<?php _e('Cancel', 'bwg_back'); ?>" style="float: right; margin-left: 5px;" /> <input class="wd-btn wd-btn-primary wd-btn-icon wd-btn-add spider_free_version_button" type="button" value="<?php _e('Add to gallery', 'bwg_back'); ?>" style="float:right; margin-left:5px;"/> <div class="spider_description"></div> <table class="spider_free_version "> <thead> <tr> <td class="spider_label_galleries"><label for="bulk_embed_from" class="spider_free_version_label_color"><?php _e("Bulk embed from:", 'bwg_back'); ?> </label></td> <td> <input type="radio" disabled="disabled" class="inputbox" id="bulk_embed_from_instagram" onclick="jQuery('#instagram_bulk_params').show();" checked="checked" value="<?php _e("instagram", 'bwg_back'); ?>" > <label for="bulk_embed_from_instagram" class="spider_free_version_label_color"><?php _e("Instagram", 'bwg_back'); ?></label> </td> </tr> </thead> <tbody id="instagram_bulk_params"> <tr id='popup_tr_instagram_gallery_source' style='display:table-row'> <td class="spider_label_galleries"><label for="popup_instagram_gallery_source" class="spider_free_version_label_color"><?php _e("Instagram username:", 'bwg_back'); ?> </label></td> <td class="spider_free_version_label_color"><input type="text" id="popup_instagram_gallery_source" disabled="disabled" value="<?php _e("Bulk embed from Instagram is disabled in free version", 'bwg_back'); ?>" size="64" /></td> </tr> <tr id='popup_tr_instagram_image_number' style='display:table-row'> <td class="spider_label_galleries"><label for="popup_instagram_image_number" class="spider_free_version_label_color"><?php _e("Number of Instagram recent posts to add to gallery:", 'bwg_back'); ?> </label></td> <td><input type="number" disabled="disabled" id="popup_instagram_image_number" value="12" /></td> </tr> <tr id='popup_tr_instagram_post_gallery' style='display:table-row'> <td class="spider_label_galleries"><label class="spider_free_version_label_color"><?php _e("Instagram embed type:", 'bwg_back'); ?> </label></td> <td class="spider_free_version_label_color"> <input type="radio" disabled="disabled" class="inputbox" id="popup_instagram_post_gallery_0" checked="checked" value="0" > <label for="popup_instagram_post_gallery_0" class="spider_free_version_label_color"><?php _e("Content", 'bwg_back'); ?></label> <input type="radio" disabled="disabled" class="inputbox" id="popup_instagram_post_gallery_1" value="1" > <label for="popup_instagram_post_gallery_1" class="spider_free_version_label_color"><?php _e("Whole post", 'bwg_back'); ?></label> </td> </tr> </tbody> </table> </div> <div class="opacity_resize_image bwg_resize_image"> <?php _e("Resize images to: ", 'bwg_back'); ?> <input type="text" name="image_width" id="image_width" value="1600" /> x <input type="text" name="image_height" id="image_height" value="1200" /> px <input class="wd-btn wd-btn-primary wd-not-image" type="button" onclick="spider_set_input_value('ajax_task', 'image_resize'); spider_ajax_save('galleries_form'); jQuery('.opacity_resize_image').hide(); return false;" value="<?php _e("Resize", 'bwg_back'); ?>" /> <input class="wd-btn wd-btn-primary wd-btn-icon wd-btn-cancel" type="button" onclick="jQuery('.opacity_resize_image').hide(); return false;" value="<?php _e("Cancel", 'bwg_back'); ?>" /> <div class="spider_description"><?php _e("The maximum size of resized image.", 'bwg_back'); ?></div> </div> <div id="add_desc" class="opacity_image_desc bwg_image_desc"> <div> <span class="bwg_popup_label"> <?php _e('Alt/Title: ', 'bwg_back'); ?> </span> <input class="bwg_popup_input" type="text" id="title" name="title" value="" /> <input class="wd-btn wd-btn-primary wd-btn-icon wd-btn-add" type="button" onclick="if (window.parent.bwg_add_title_desc()) {jQuery('.opacity_image_desc').hide();} return false;" value="<?php echo __('Update', 'bwg_back'); ?>" /> <input class="wd-btn wd-btn-primary wd-btn-icon wd-btn-cancel" type="button" onclick="jQuery('.opacity_image_desc').hide(); return false;" value="<?php echo __('Cancel', 'bwg_back'); ?>" /> </div> <?php if ($wd_bwg_options->thumb_click_action != 'open_lightbox') { ?> <div> <span class="bwg_popup_label"> <?php _e('Redirect URL: ', 'bwg_back'); ?> </span> <input class="bwg_popup_input" type="text" id="redirecturl" name="redirecturl" value="" /> </div> <?php } ?> <div> <span class="bwg_popup_label"> <?php _e('Description: ', 'bwg_back'); ?> </span> <textarea class="bwg_popup_input" type="text" id="desc" name="desc"></textarea> </div> </div> <div id="draganddrop" class="wd_updated" style="display:none;"><strong><p><?php _e('Changes made in this table should be saved.', 'bwg_back'); ?></p></strong></div> <table id="images_table" class="wp-list-table widefat fixed pages"> <thead> <th class="check-column table_small_col table_medium_col manage-column column-title sorted asc" style="margin: 0px auto 0px 15px; width: 60px; vertical-align: middle;"> <a id="show_hide_weights" class="bwg_order_column" title="<?php _e('Hide order column', 'bwg_back'); ?>" onclick="spider_show_hide_weights();return false;" value="<?php _e('Hide order column', 'bwg_back'); ?>"></a> <a id="th_order" onclick="spider_set_input_value('task', ''); spider_set_input_value('image_order_by', 'order'); spider_set_input_value('image_asc_or_desc', 'desc'); spider_ajax_save('galleries_form');" style="display: none;"> <span class="sorting-indicator"></span> </a> </th> <th class="manage-column column-cb check-column table_small_col" style="padding-top:12px !important;"><input id="check_all" type="checkbox" onclick="spider_check_all(this)" style="margin:5px auto 0;" /> </th> <th class="table_small_col">#</th> <th class="table_extra_large_col"><?php _e('Thumbnail', 'bwg_back'); ?></th> <th class="sortable table_extra_large_col <?php if ($image_order_by == 'filename') {echo $order_class;} ?>"> <a onclick="spider_set_input_value('task', ''); spider_set_input_value('image_order_by', 'filename'); spider_set_input_value('image_asc_or_desc', '<?php echo ($image_order_by == 'filename' && $image_asc_or_desc == 'asc') ? 'desc' : 'asc'; ?>'); spider_ajax_save('galleries_form');"> <span><?php _e('Filename', 'bwg_back'); ?></span><span class="sorting-indicator"></span> </a> </th> <th class="sortable table_extra_large_col <?php if ($image_order_by == 'alt') {echo $order_class;} ?>"> <a onclick="spider_set_input_value('task', ''); spider_set_input_value('image_order_by', 'alt'); spider_set_input_value('image_asc_or_desc', '<?php echo ($image_order_by == 'alt' && $image_asc_or_desc == 'asc') ? 'desc' : 'asc'; ?>'); spider_ajax_save('galleries_form');"> <span><?php _e('Alt/Title', 'bwg_back'); ?><?php if ($wd_bwg_options->thumb_click_action != 'open_lightbox') { ?><br /><?php echo __('Redirect', 'bwg_back'); ?> URL<?php } ?></span><span class="sorting-indicator"></span> </a> </th> <th class="sortable table_extra_large_col <?php if ($image_order_by == 'description') {echo $order_class;} ?>"> <a onclick="spider_set_input_value('task', ''); spider_set_input_value('image_order_by', 'description'); spider_set_input_value('image_asc_or_desc', '<?php echo ($image_order_by == 'description' && $image_asc_or_desc == 'asc') ? 'desc' : 'asc'; ?>'); spider_ajax_save('galleries_form');"> <span><?php _e('Description', 'bwg_back'); ?></span><span class="sorting-indicator"></span> </a> </th> <?php $query_url = wp_nonce_url( admin_url('admin-ajax.php'), 'addTags', 'bwg_nonce' ); $query_url = add_query_arg(array('action' => 'addTags', 'width' => '650', 'height' => '500', 'bwg_items_per_page' => $per_page ), $query_url); ?> <th class="table_extra_big_col"> <a onclick="return bwg_check_checkboxes();" title="<?php echo __('Add tag', 'bwg_back'); ?>" href="<?php echo $query_url; ?>&TB_iframe=1" class="wd-btn wd-btn-primary wd-not-image thickbox thickbox-preview"><?php echo __('Add tag', 'bwg_back'); ?></a> </th> <th class="sortable table_big_col <?php if ($image_order_by == 'published') {echo $order_class;} ?>"> <a onclick="spider_set_input_value('task', ''); spider_set_input_value('image_order_by', 'published'); spider_set_input_value('image_asc_or_desc', '<?php echo ($image_order_by == 'published' && $image_asc_or_desc == 'asc') ? 'desc' : 'asc'; ?>'); spider_ajax_save('galleries_form');"> <span><?php _e('Published', 'bwg_back'); ?></span><span class="sorting-indicator"></span> </a> </th> <th class="table_small_col"><?php echo __('Delete', 'bwg_back'); ?></th> </thead> <tbody id="tbody_arr"> <?php $i = ($page_number - 1) * $per_page; if ($rows_data) { foreach ($rows_data as $row_data) { $is_embed = preg_match('/EMBED/',$row_data->filetype)==1 ? true :false; $alternate = (!isset($alternate) || $alternate == 'class="alternate"') ? '' : 'class="alternate"'; $rows_tag_data = $this->model->get_tag_rows_data($row_data->id); $published_image = (($row_data->published) ? 'publish-blue' : 'unpublish-red'); $published = (($row_data->published) ? 'unpublish' : 'publish'); $unpublish = ((!$row_data->published) ? 'Unpublish' : 'Publish'); ?> <tr id="tr_<?php echo $row_data->id; ?>" <?php echo $alternate; ?>> <td class="spider_order table_medium_col"><input id="order_input_<?php echo $row_data->id; ?>" name="order_input_<?php echo $row_data->id; ?>" type="text" size="1" value="<?php echo $row_data->order; ?>" /></td> <td class="connectedSortable handles table_small_col"><div title="Drag to re-order" class="handle" style="margin:5px auto 0 auto;"></div></td> <td class="table_small_col check-column"><input id="check_<?php echo $row_data->id; ?>" name="check_<?php echo $row_data->id; ?>" onclick="spider_check_all(this)" type="checkbox" /></td> <td class="table_small_col"><?php echo ++$i; ?></td> <td class="table_extra_large_col"> <?php $is_embed_instagram_post = preg_match('/INSTAGRAM_POST/', $row_data->filetype) == 1 ? true :false; $instagram_post_width = 0; $instagram_post_height = 0; if ($is_embed_instagram_post) { $image_resolution = explode(' x ', $row_data->resolution); if (is_array($image_resolution)) { $instagram_post_width = $image_resolution[0]; $instagram_post_height = explode(' ', $image_resolution[1]); $instagram_post_height = $instagram_post_height[0]; } } $query_url = add_query_arg(array('action' => 'editThumb', 'type' => 'display'/*thumb_display*/, 'image_id' => $row_data->id, 'width' => '800', 'height' => '500', 'instagram_post_width' => $instagram_post_width, 'instagram_post_height' => $instagram_post_height), admin_url('admin-ajax.php')); $query_url = wp_nonce_url( $query_url, 'editThumb', 'bwg_nonce' ); $query_url = add_query_arg(array('TB_iframe' => '1'), $query_url); $is_embed_instagram_post = preg_match('/INSTAGRAM_POST/',$row_data->filetype) == 1 ? true : false; ?> <a class="thickbox thickbox-preview" title="<?php echo $row_data->alt; ?>" href="<?php echo $query_url; ?>"> <img id="image_thumb_<?php echo $row_data->id; ?>" class="thumb" src="<?php echo (!$is_embed ? site_url() . '/' . $WD_BWG_UPLOAD_DIR : "") . $row_data->thumb_url . ($is_embed ? '' : '?date=' . date('Y-m-y H:i:s')); ?>" /> </a> </td> <td class="table_extra_large_col"> <div class="filename" id="filename_<?php echo $row_data->id; ?>"> <strong><a title="<?php echo $row_data->alt; ?>" class="spider_word_wrap thickbox thickbox-preview" href="<?php echo $query_url ; ?>"><?php echo $row_data->filename; ?></a></strong> </div> <div class="fileDescription" title="<?php _e("Date modified", 'bwg_back'); ?>" id="date_modified_<?php echo $row_data->id; ?>"><?php echo date("d F Y, H:i", strtotime($row_data->date)); ?></div> <div class="fileDescription" title="<?php _e("Image Resolution", 'bwg_back'); ?>" id="fileresolution_<?php echo $row_data->id; ?>"><?php echo $row_data->resolution; ?></div> <div class="fileDescription" title="<?php _e("Image size", 'bwg_back'); ?>" id="filesize_<?php echo $row_data->id; ?>"><?php echo $row_data->size; ?></div> <div class="fileDescription" title="<?php _e("Type", 'bwg_back'); ?>" id="filetype_<?php echo $row_data->id; ?>"><?php echo $row_data->filetype; ?></div> <?php if (!$is_embed) { ?> <div> <?php $query_url = add_query_arg(array('action' => 'editThumb', 'type' => 'crop', 'image_id' => $row_data->id, 'width' => '800', 'height' => '500'), admin_url('admin-ajax.php')); $query_url = wp_nonce_url( $query_url, 'editThumb', 'bwg_nonce' ); $query_url = add_query_arg(array('TB_iframe' => '1'), $query_url); ?> <span class="edit_thumb"><a class="thickbox thickbox-preview" href="<?php echo $query_url; ?>"><?php _e("Crop", 'bwg_back'); ?></a></span> | <?php $query_url = add_query_arg(array('action' => 'editThumb', 'type' => 'rotate', 'image_id' => $row_data->id, 'width' => '800', 'height' => '500'), admin_url('admin-ajax.php')); $query_url = wp_nonce_url( $query_url, 'editThumb', 'bwg_nonce' ); $query_url = add_query_arg(array('TB_iframe' => '1'), $query_url); ?> <span class="edit_thumb"><a class="thickbox thickbox-preview" href="<?php echo $query_url; ?>"><?php _e("Edit", 'bwg_back'); ?></a></span> | <span class="edit_thumb"><a onclick="if (confirm('<?php echo addslashes(__('Do you want to reset the image?', 'bwg_back')); ?>')) { spider_set_input_value('ajax_task', 'recover'); spider_set_input_value('image_current_id', '<?php echo $row_data->id; ?>'); spider_ajax_save('galleries_form'); } return false;"><?php _e('Reset', 'bwg_back'); ?></a></span> </div> <?php } ?> <input type="hidden" id="image_url_<?php echo $row_data->id; ?>" name="image_url_<?php echo $row_data->id; ?>" value="<?php echo $row_data->image_url; ?>" /> <input type="hidden" id="thumb_url_<?php echo $row_data->id; ?>" name="thumb_url_<?php echo $row_data->id; ?>" value="<?php echo $row_data->thumb_url; ?>" /> <input type="hidden" id="input_filename_<?php echo $row_data->id; ?>" name="input_filename_<?php echo $row_data->id; ?>" value="<?php echo $row_data->filename; ?>" /> <input type="hidden" id="input_date_modified_<?php echo $row_data->id; ?>" name="input_date_modified_<?php echo $row_data->id; ?>" value="<?php echo $row_data->date; ?>" /> <input type="hidden" id="input_resolution_<?php echo $row_data->id; ?>" name="input_resolution_<?php echo $row_data->id; ?>" value="<?php echo $row_data->resolution; ?>" /> <input type="hidden" id="input_size_<?php echo $row_data->id; ?>" name="input_size_<?php echo $row_data->id; ?>" value="<?php echo $row_data->size; ?>" /> <input type="hidden" id="input_filetype_<?php echo $row_data->id; ?>" name="input_filetype_<?php echo $row_data->id; ?>" value="<?php echo $row_data->filetype; ?>" /> </td> <td class="table_extra_large_col"> <textarea rows="2" id="image_alt_text_<?php echo $row_data->id; ?>" name="image_alt_text_<?php echo $row_data->id; ?>" style="resize:vertical;"><?php echo $row_data->alt; ?></textarea> <?php if ($wd_bwg_options->thumb_click_action != 'open_lightbox') { ?> <input size="24" type="text" id="redirect_url_<?php echo $row_data->id; ?>" name="redirect_url_<?php echo $row_data->id; ?>" value="<?php echo $row_data->redirect_url; ?>" /> <?php } ?> </td> <td class="table_extra_large_col"> <textarea rows="3" id="image_description_<?php echo $row_data->id; ?>" name="image_description_<?php echo $row_data->id; ?>" style="resize:vertical;"><?php echo $row_data->description; ?></textarea> </td> <td class="table_extra_large_col"> <?php $query_url = wp_nonce_url( admin_url('admin-ajax.php'), 'addTags', 'bwg_nonce' ); $query_url = add_query_arg(array('action' => 'addTags', 'image_id' => $row_data->id, 'width' => '650', 'height' => '500', 'bwg_items_per_page' => $per_page, 'TB_iframe' => '1'), $query_url); ?> <a href="<?php echo $query_url; ?>" title="<?php _e('Add tag', 'bwg_back'); ?>" class="button-small wd-btn wd-btn-primary wd-not-image thickbox thickbox-preview"><?php _e('Add tag', 'bwg_back'); ?></a> <div class="tags_div" id="tags_div_<?php echo $row_data->id; ?>"> <?php $tags_id_string = ''; if ($rows_tag_data) { foreach($rows_tag_data as $row_tag_data) { ?> <div class="tag_div" id="<?php echo $row_data->id; ?>_tag_<?php echo $row_tag_data->term_id; ?>"> <span class="tag_name"><?php echo $row_tag_data->name; ?></span> <span style="float:right;" class="spider_delete_img_small" onclick="bwg_remove_tag('<?php echo $row_tag_data->term_id; ?>', '<?php echo $row_data->id; ?>')" /> </div> <?php $tags_id_string .= $row_tag_data->term_id . ','; } } ?> </div> <input type="hidden" value="<?php echo $tags_id_string; ?>" id="tags_<?php echo $row_data->id; ?>" name="tags_<?php echo $row_data->id; ?>"/> </td> <td class="table_big_col publish_icon"><a style="background-image:url('<?php echo WD_BWG_URL . '/images/icons/' . $published_image . '.png'; ?>'); background-repeat: no-repeat; display: inline-block; width: 18px; height: 22px;margin: 3px; vertical-align: middle;background-size: contain;" title="<?php echo $unpublish; ?>" onclick="spider_set_input_value('ajax_task', 'image_<?php echo $published; ?>'); spider_set_input_value('image_current_id', '<?php echo $row_data->id; ?>'); spider_ajax_save('galleries_form');"></a></td> <td class="table_big_col spider_delete_button" ><a class="bwg_img_remove" title='<?php echo __('Delete', 'bwg_back'); ?>' onclick="if (confirm('<?php echo addslashes(__('Do you want to delete selected items?', 'bwg_back')); ?>')) { spider_set_input_value('ajax_task', 'image_delete'); spider_set_input_value('image_current_id', '<?php echo $row_data->id; ?>'); spider_ajax_save('galleries_form'); } else { return false; }"></a></td> </tr> <?php $ids_string .= $row_data->id . ','; } } ?> <input id="ids_string" name="ids_string" type="hidden" value="<?php echo $ids_string; ?>" /> <input id="asc_or_desc" name="asc_or_desc" type="hidden" value="asc" /> <input id="image_asc_or_desc" name="image_asc_or_desc" type="hidden" value="asc" /> <input id="image_order_by" name="image_order_by" type="hidden" value="<?php echo $image_order_by; ?>" /> <input id="ajax_task" name="ajax_task" type="hidden" value="" /> <input id="image_current_id" name="image_current_id" type="hidden" value="" /> <input id="added_tags_select_all" name="added_tags_select_all" type="hidden" value="" /> <input type="hidden" id="bulk_edit" name="bulk_edit" value="0" /> </tbody> </table> <div class="tablenav bottom"> <?php WDWLibrary::ajax_html_page_nav($page_nav['total'], $page_nav['limit'], 'galleries_form', $per_page, $pager++); ?> </div> <script> window.onload = spider_show_hide_weights; </script> <?php } //////////////////////////////////////////////////////////////////////////////////////// // Getters & Setters // //////////////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////////////// // Private Methods // //////////////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////////////// // Listeners // //////////////////////////////////////////////////////////////////////////////////////// }
SAVE
CANCEL