File Manager / wp-content Search Upload New Item Settings File "db5.php" Full path: /home1/epichome/public_html/wp-content/db5.php File size: 60.67 B (60.67 KB bytes) MIME-type: text/x-php Charset: utf-8 Download Open Edit Advanced Editor Back
/home/pharmacy/www/wp-content/plugins/maxbuttons/classes/controller.php
<?php
declare(strict_types=1);
namespace MaxButtons;

// controller for our views
abstract class MaxController
{

  protected static $instance;

  protected $view; // view data
  protected $page;

	protected $url;
  protected $messages = array(); // messages to display to user.
  protected $view_template;

  protected $actions = false;

  protected $modals_loaded = array();

  public function __construct()
  {
      $this->view = new \stdClass;
  }

	// Get the instance of this controller
	public static function getInstance()
	{
	  if (!isset(self::$instance)) {
  				$c = get_called_class();
    		self::$instance = new $c;
  	}

		return self::$instance;
	}

	// Handling any post related business
  abstract protected function handlePost();

	public function load()
	{
		 if (isset($_POST) && count($_POST) > 0)
		 	 $this->handlePost();
	}

  public function view()
  {
    $view = $this->view;


    if (! is_null($this->view_template))
    {
      $path = MB()->get_plugin_path() . 'includes/' . $this->view_template . '.php';
      if (file_exists($path))
        include_once($path);
      else {
        exit('Template Not Found');
      }
    }
  }



  public function getButtonLink($button_id = 0, $args = array())
  {
     $link = admin_url() . 'admin.php?page=maxbuttons-controller&action=edit';
     if ($button_id > 0)
     {
       $link = add_query_arg('id', $button_id, $link);
     }
     $link = add_query_arg($args,$link);
     return esc_url_raw($link);
  }

  public function getListLink($view = 'all', $args = array() )
  {
     $link = admin_url() . 'admin.php?page=maxbuttons-controller&view=' . $view;
     $link = add_query_arg($args,$link);
     return esc_url_raw($link);

  }

  // sets name of the requested page. can be used to load a specific template.
  public function setPage($page)
  {
    $this->page = $page;
  }

	public function setUrl($url)
	{
		 $this->url = $url;
	}

  protected function loadFormActions()
  {
    $actions = array();

    $actions['add-new'] = array('href' => $this->getButtonLink(), 'text' => __('Add New', 'maxbuttons'), 'class' => '');
    $actions['save'] = array('href' => 'javascript:void(0)', 'text' =>  __('Save', 'maxbuttons'), 'class' => 'button button-save disabled');
    $actions['copy'] = array('href' => 'javascript:void(0)', 'text' => __('Copy', 'maxbuttons'), 'class' => 'maxmodal button', 'id' => 'button-copy',
        'modal' => 'copy-modal');
    $actions['trash'] = array('href' => 'javascript:void(0)', 'text' => __('Move to Trash', 'maxbuttons'), 'class' => 'maxmodal button', 'id' => 'button-trash', 'modal' => 'trash-modal');
    $actions['delete'] = array('href' => 'javascript:void(0)', 'text' => __("Delete","maxbuttons"), 'class' => 'maxmodal button', 'id' => 'button-delete', 'modal' => 'delete-modal');

    return apply_filters('maxbuttons/editor/actions',$actions);
  }

  protected function getButton($name, $args = array() )
  {
      if (! $this->actions)
        $this->actions = $this->loadFormActions();


      if (isset($this->actions[$name]) && $this->actions[$name] !== false)
      {
        $action = $this->actions[$name];

        $args = wp_parse_args($args, $action);

        $class = $args['class'];
        if (isset($args['add_class']))
           $class .= ' ' . $args['add_class'];

        $output = '<a href="' . $args['href'] . '" class="' . $class . '"';

        if (isset($args['id']))
          $output .= ' id="' . $action['id'] . '"';
        if (isset($args['modal']))
        {
          $output .= ' data-modal="' . $args['modal'] . '-' . $this->view->button_id . '"';
          $this->loadModal($args['modal'], $this->view->button_id);
        }
        $output .= '>' . $args['text'] . '</a>';

        return $output;
      }
      else
        return '';
  }

  protected function loadModal($name, $id)
  {
    if (isset($this->modals_loaded[$name]))
      return;

    MB()->load_modal_script();
    $path = MB()->get_plugin_path();

    include($path . 'views/modals/' . $name . '.php');

    $this->modals_loaded[] = $name;
  }


}