b0y-101 Mini Shell


Current Path : E:/www3/chiangrai/wp-content/plugins/photo-gallery/admin/views/
File Upload :
Current File : E:/www3/chiangrai/wp-content/plugins/photo-gallery/admin/views/AdminView.php

<?php
defined('ABSPATH') || die('Access Denied');

/**
 * Admin view class.
 */
class AdminView_bwg {

	public function __construct() {
		wp_enqueue_style(BWG()->prefix . '_tables');
		wp_enqueue_script(BWG()->prefix . '_admin');
		do_action( 'bwg_admin_scripts_after' );
	}
  /**
   * Generate form.
   *
   * @param string $content
   * @param array  $attr
   *
   * @return string Form html.
   */
  protected function form($content = '', $attr = array()) {
    ob_start();
    // Form.
    $action = isset($attr['action']) ? esc_attr($attr['action']) : '';
    $method = isset($attr['method']) ? esc_attr($attr['method']) : 'post';
    $name = isset($attr['name']) ? esc_attr($attr['name']) : BWG()->prefix . '_form';
    $id = isset($attr['id']) ? esc_attr($attr['id']) : '';
    $class = isset($attr['class']) ? esc_attr($attr['class']) : BWG()->prefix . '_form';
    $style = isset($attr['style']) ? esc_attr($attr['style']) : '';
    $style .= "display:none;".$style;
    $current_id = isset($attr['current_id']) ? esc_attr($attr['current_id']) : '';
    $task = isset($attr['task']) ? esc_attr($attr['task']) : '';
    ?><div class="wrap<?php echo (isset($_GET['action']) ? ' wd-wrap-ajax' : ''); ?>">
    <?php
    // Generate message container by message id or directly by message.
    $message_id = WDWLibrary::get('message', 0);
    $message = WDWLibrary::get('msg', '');
    echo WDWLibrary::message_id($message_id, $message);
    ?>
    <form
      <?php echo $action ? 'action="' . $action . '"' : ''; ?>
      <?php echo $method ? 'method="' . $method . '"' : ''; ?>
      <?php echo $name ? ' name="' . $name . '"' : ''; ?>
      <?php echo $id ? ' id="' . $id . '"' : ''; ?>
      <?php echo $class ? ' class="bwg_form ' . $class . '"' : ''; ?>
      <?php echo $style ? ' style="' . $style . '"' : ''; ?>
    ><h1 class="bwg-hidden"></h1><?php
      echo $content;
      // Add nonce to form.
      wp_nonce_field(BWG()->nonce, BWG()->nonce);
      ?>
      <input id="task" name="task" type="hidden" value="<?php echo $task; ?>"/>
      <input id="current_id" name="current_id" type="hidden" value="<?php echo $current_id; ?>"/>
    </form>
    </div><?php
    do_action( 'bwg_admin_view_form_after' );
    return ob_get_clean();
  }

  /**
   * Generate title.
   *
   * @param array $params
   *
   * @return string Title html.
   */
  protected function title($params = array()) {
    $title = !empty($params['title']) ? $params['title'] : '';
    $title_class = !empty($params['title_class']) ? $params['title_class'] : '';
    $title_name = !empty($params['title_name']) ? $params['title_name'] : '';
    $title_id = !empty($params['title_id']) ? $params['title_id'] : '';
    $title_value = !empty($params['title_value']) ? $params['title_value'] : '';
    $add_new_button = !empty($params['add_new_button']) ? $params['add_new_button'] : '';
    $how_to_button = !empty($params['how_to_button']) ? $params['how_to_button'] : false;
    $buttons = !empty($params['buttons']) ? $params['buttons'] : false;
    $add_new_button_text = !empty($params['add_new_button_text']) ? $params['add_new_button_text'] : __('Add new', 'photo-gallery');
    $popup_window = !empty($params['popup_window']) ? false : true;

    $attributes = '';
    if ( !empty($add_new_button) && is_array($add_new_button) ) {
      foreach ( $add_new_button as $key => $val ) {
        $attributes .= $key . '="' . $val . '"';
      }
    }
    ob_start();
    ?>
    <div class="wd-list-view-header">
      <div class="wd-list-view-header-left">
        <div class="wd-page-title <?php echo $title_class; ?>">
          <h1 class="wd-heading-inline"><?php echo $title; ?>
            <?php
            if ( $title_name || $title_id || $title_value ) {
              ?>
              <span>
              <input type="text" id="<?php echo $title_id; ?>" name="<?php echo $title_name; ?>" value="<?php echo $title_value; ?>" />
            </span>
              <?php
            }?>
          </h1>
          <?php WDWLibrary::user_guide_icon(); ?>
        </div>
        <div class="wd-list-view-header-buttons">
          <?php
          if ( $add_new_button ) {
            if ( !BWG()->is_pro ) {
              WDWLibrary::gallery_to_pro_button();
            }
            ?>
            <a class="page-title-action" <?php echo $attributes; ?>>
              <?php echo $add_new_button_text; ?>
            </a>
            <?php
          }
          if ( $how_to_button ) {
            require BWG()->plugin_dir . '/framework/howto/howto.php';
          }
          if ( $buttons ) {
            echo $this->buttons($buttons, FALSE);
          }
          ?>
        </div>
      </div>
    </div>
    <?php
    return ob_get_clean();
  }

  /**
   * Generate buttons.
   *
   * @param array $buttons
   * @param bool $single
   * @param array $parent
   *
   * @return array Buttons html.
   */
  protected function buttons($buttons = array(), $single = FALSE, $parent = array()) {
    ob_start();
    if ( !$single ) {
      $parent_id = isset($parent['id']) ? esc_attr($parent['id']) : '';
      $parent_class = isset($parent['class']) ? esc_attr($parent['class']) : 'wd-buttons';
      $parent_style = isset($parent['style']) ? esc_attr($parent['style']) : '';
      ?>
      <div
      <?php echo $parent_id ? 'id="' . $parent_id . '"' : ''; ?>
      <?php echo $parent_class ? ' class="' . $parent_class . '"' : ''; ?>
      <?php echo $parent_style ? ' style="' . $parent_style . '"' : ''; ?>
      >
      <?php
    }
    foreach ($buttons as $button) {
      $title = isset($button['title']) ? esc_attr($button['title']) : '';
      $value = isset($button['value']) ? esc_attr($button['value']) : '';
      $name = isset($button['name']) ? esc_attr($button['name']) : '';
      $id = isset($button['id']) ? esc_attr($button['id']) : '';
      $class = isset($button['class']) ? esc_attr($button['class']) : '';
      $style = isset($button['style']) ? esc_attr($button['style']) : '';
      $onclick = isset($button['onclick']) ? esc_attr($button['onclick']) : '';
      ?><button type="submit"
      <?php echo $value ? ' value="' . $value . '"' : ''; ?>
      <?php echo $name ? ' name="' . $name . '"' : ''; ?>
      <?php echo $id ? ' id="' . $id . '"' : ''; ?>
                class="wd-button <?php echo $class; ?>"
      <?php echo $style ? ' style="' . $style . '"' : ''; ?>
      <?php echo $onclick ? ' onclick="' . $onclick . '"' : ''; ?>
      ><?php echo $title; ?></button><?php
    }
    if ( !$single ) {
      ?>
      </div>
      <?php
    }
    return ob_get_clean();
  }

  /**
   * Sorting.
   *
   * @param  array $params
   * @return string
   */
  protected function sorting() {
    $options = WDWLibrary::admin_images_ordering_choices();
    $id = WDWLibrary::get('current_id', 0);
    $order_by = WDWLibrary::get_sorting( array('gallery_id' => $id, 'list_type' => 'edit') );
    ob_start();
    ?>
    <select name="order_by" onchange="bwg_sort_images(this.value);">
      <?php
      foreach ( $options as $key => $option ) {
        ?>
        <option value="<?php echo $key; ?>" <?php if ($order_by == $key) { echo 'selected'; } ?>><?php echo $option; ?></option>
        <?php
      }
      ?>
    </select>
    <?php
    return ob_get_clean();
  }

  /**
   * Search.
   *
   * @param  array $params
   * @return string
   */
  protected function search( $params = array() ) {
    $search = WDWLibrary::get('s', '', 'esc_attr');
    ob_start();
    ?>
    <div class="list-search-box">
      <?php
      if (isset($params['sorting']) && $params['sorting']) {
        echo $this->sorting();
      }
      ?>
      <input name="s" value="<?php echo $search; ?>" type="search" onkeypress="return input_search(event, this)" placeholder="<?php _e('Search', 'photo-gallery'); ?>" />
      <?php // ToDo Search button comment is not deleted, it can be used again. ?>
<!--      <input class="button" value="--><?php //echo __('Search', 'photo-gallery') . ' ' . ( !empty( $params['search_item_name'] ) ? $params['search_item_name'] : '' ); ?><!--" type="button" onclick="search(this)" />-->
    </div>
    <?php
    return ob_get_clean();
  }

  /**
   * Pagination.
   *
   * @param     $page_url
   * @param     $total
   * @param int $items_per_page
   *
   * @return string
   */
  protected function pagination($page_url, $total, $items_per_page = 20) {
    $page_number = WDWLibrary::get('paged', 1) < 0 ? 1 : WDWLibrary::get('paged', 1);
    $search = WDWLibrary::get('s', '');
    $orderby = WDWLibrary::get('orderby', '');
    $order = WDWLibrary::get('order', '');
    $url_arg = array();
    if( !empty($search) ) {
      $url_arg['s'] = $search;
    }
    if( !empty($orderby) ) {
      $url_arg['orderby'] = $orderby;
    }
    if( !empty($order) ) {
      $url_arg['order'] = $order;
    }
    $page_url = add_query_arg($url_arg, $page_url);

    if ( $total ) {
      if ( $total % $items_per_page ) {
        $pages_count = ($total - $total % $items_per_page) / $items_per_page + 1;
      }
      else {
        $pages_count = ($total - $total % $items_per_page) / $items_per_page;
      }
    }
    else {
      $pages_count = 1;
    }
    ob_start();
    ?>
    <div class="tablenav-pages">
      <?php
      if ( $total > $items_per_page ) {
        ?>
        <div class="pagination-links" data-pages-count="<?php echo $pages_count; ?>">
        <?php
        if ( $page_number == 1 ) {
          ?>
          <div class="bwg-disabled bwg-pagination-prev-all" aria-hidden="true"></div>
          <div class="bwg-disabled bwg-pagination-prev" aria-hidden="true"></div>
          <?php
        }
        else {
          ?>
          <a data-paged="<?php echo 1; ?>" href="<?php echo add_query_arg(array('paged' => 1), $page_url); ?>" class="bwg-pagination-a-link wd-page first-page"><span class="screen-reader-text"><?php _e('First page', 'photo-gallery'); ?></span><span class="bwg-pagination-prev-all" aria-hidden="true"></span></a>
          <a data-paged="<?php echo ($page_number == 1 ? 1 : ($page_number - 1)); ?>" href="<?php echo add_query_arg(array('paged' => ($page_number == 1 ? 1 : ($page_number - 1))), $page_url); ?>" class="bwg-pagination-a-link wd-page previous-page"><span class="screen-reader-text"><?php _e('Previous page', 'photo-gallery'); ?></span><span class="bwg-pagination-prev" aria-hidden="true"></span></a>
          <?php
        }
        ?>
          <div class="paging-input">
          <label for="current-page-selector" class="screen-reader-text"><?php _e('Current Page', 'photo-gallery'); ?></label>
          <input type="text" class="bwg-current-page current-page" name="current_page" value="<?php echo $page_number; ?>" onkeypress="return input_pagination(event, this)" size="1" />
          <span class="tablenav-paging-text">
             <?php _e('of', 'photo-gallery'); ?>
            <span class="total-pages"><?php echo $pages_count; ?></span>
          </span>
        </div>
          <?php
          if ( $page_number >= $pages_count ) {
            ?>
            <div class="bwg-disabled bwg-pagination-next" aria-hidden="true"></div>
            <div class="bwg-disabled bwg-pagination-next-all" aria-hidden="true"></div>
            <?php
          }
          else {
            ?>
            <a data-paged="<?php echo ($page_number >= $pages_count ? $pages_count : ($page_number + 1)); ?>" href="<?php echo add_query_arg(array('paged' => ($page_number >= $pages_count ? $pages_count : ($page_number + 1))), $page_url); ?>" class="bwg-pagination-a-link wd-page next-page"><span class="screen-reader-text"><?php _e('Next page', 'photo-gallery'); ?></span><span class="bwg-pagination-next" aria-hidden="true"></span></a>
            <a data-paged="<?php echo $pages_count; ?>" href="<?php echo add_query_arg(array('paged' => $pages_count), $page_url); ?>" class="bwg-pagination-a-link wd-page last-page"><span class="screen-reader-text"><?php _e('Last page', 'photo-gallery'); ?></span><span class="bwg-pagination-next-all" aria-hidden="true"></span></a>
            <?php
          }
          ?>
      </div>
        <?php
      }
      ?>
      <div class="displaying-num">
        <?php printf(_n('%s item', '%s items', $total, 'photo-gallery'), $total); ?>
      </div>
    </div>
    <?php

    return ob_get_clean();
  }

  /**
   * Bulk actions list.
   *
   * @param        $actions
   * @param bool   $select_all
   * @param string $name
   *
   * @return string
   */
  protected function bulk_actions($actions, $select_all = FALSE, $name = "bulk_action") {
    ob_start();
    ?>
    <div class="alignleft actions bulkactions">
	  <?php
	  // ToDo not show according to design, not deleted-it can be used again.
	  if ( $select_all ) { ?>
		<span class="button wd-check-all" onclick="spider_check_all_items(event)">
		  <input type="checkbox" id="check_all_items" name="check_all_items" onclick="spider_check_all_items_checkbox(event)" />
		  <span><?php _e('Select All', 'photo-gallery'); ?></span>
	    </span>
	  <?php } ?>
		
      <label for="bulk-action-selector-top" class="screen-reader-text"><?php _e('Select bulk action', 'photo-gallery'); ?></label>
      <select name="<?php echo $name; ?>" id="bulk-action-selector-top">
        <option value="-1"><?php _e('Bulk Actions', 'photo-gallery'); ?></option>
        <?php foreach ( $actions as $key => $action ) { ?>
          <option value="<?php echo $key; ?>" <?php echo isset($action['disabled']) ? $action['disabled'] : ''; ?>><?php echo $action['title']; ?></option>
        <?php } ?>
      </select>
      <input type="button" id="doaction" class="button action" onclick="<?php echo (BWG()->is_demo ? 'alert(\'' . addslashes(__('This option is disabled in demo.', 'photo-gallery')) . '\')' : 'wd_bulk_action(this)'); ?>" value="<?php _e('Apply', 'photo-gallery'); ?>" />
    </div>
    <?php

    return ob_get_clean();
  }
  
  /**
   * Filters.
   *
   * @param  array $params
   * @return string
   */
  protected function filters( $params = array() ) {
    ob_start();
    if ( !empty($params['filters']) ) {
      $filters = $params['filters'];
      ?>
      <div class="alignleft actions">
        <?php
        foreach ( $filters as $filter_key => $filter_values ) {
          $filter_by_key = 'filter-by-' . $filter_key;
          $filter_by = WDWLibrary::get($filter_by_key, '');
          ?>
          <label for="filter-by-<?php echo $filter_key ?>" class="screen-reader-text"><?php echo $filter_values['label']; ?></label>
          <select class="wd-filter" name="filter[filter-by-<?php echo $filter_key ?>]" id="filter-by-<?php echo $filter_key ?>">
            <?php
            foreach ( $filter_values['items'] as $item_key => $item_value ) {
              $selected = ($filter_by == $item_key ? 'selected' : '');
              ?>
              <option <?php echo $selected; ?> value="<?php echo $item_key ?>"><?php echo $item_value ?></option>
              <?php
            }
            ?>
          </select>
          <?php
        }
        ?>
      </div>
      <?php
    }

    return ob_get_clean();
  }

  /**
   * @param $params
   *
   * @return false|string
   */
  protected function popup($params) {
    ob_start();
    ?>
    <div class="bwg-hidden bwg-popup-overlay">
      <?php
      if (isset($params['dismiss'])) {
        ?>
      <div class="bwg-popup-dismiss" <?php echo $params['dismiss']['action']; ?>></div>
        <?php
      }
      ?>
      <div class="bwg-popup">
        <div class="bwg-popup-content">
          <div class="bwg-popup-title"><?php echo esc_html($params['title']); ?></div>
          <div class="bwg-popup-description"><?php echo esc_html($params['description']); ?></div>
          <?php
          if (isset($params['html'])) {
            ?>
            <div class="bwg-html"><?php echo ($params['html']); ?></div>
            <?php
          }
          ?>
        </div>
        <?php
        if (isset($params['button1']) || isset($params['button2'])) {
          ?>
        <div class="bwg-popup-button">
          <?php
          if (isset($params['button1'])) {
            ?>
          <a <?php echo $params['button1']['action']; ?> class="wd-float-left <?php echo esc_html($params['button1']['class']); ?>"><?php echo esc_html($params['button1']['title']); ?></a>
            <?php
          }
          if (isset($params['button2'])) {
            ?>
            <a <?php echo $params['button2']['action']; ?> class="wd-float-right <?php echo esc_html($params['button2']['class']); ?>"><?php echo esc_html($params['button2']['title']); ?></a>
            <?php
          }
          if (isset($params['html2'])) {
            ?>
            <span class="bwg-html"><?php echo ($params['html2']); ?></span>
            <?php
          }
          ?>
        </div>
          <?php
        }
        ?>
      </div>
    </div>
    <?php
    return ob_get_clean();
  }
}

Copyright © 2019 by b0y-101