File "BWGControllerShare.php"

Full Path: /home/laciafrdyl/www/wp-content/plugins/photo-gallery/frontend/controllers/BWGControllerShare.php
File size: 410 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

class BWGControllerShare {

  public function __construct() {
  }

  public function execute() {
    $this->display();
  }

  public function display() {
    require_once BWG()->plugin_dir . "/frontend/models/BWGModelShare.php";
    $model = new BWGModelShare();

    require_once BWG()->plugin_dir . "/frontend/views/BWGViewShare.php";
    $view = new BWGViewShare($model);

    $view->display();
  }
}