// SYSTEM PANEL //
[ROOT]
/
home
/
salvufkx
/
homedir
/
public_html
/
wp-content
/
plugins
/
photo-gallery
/
frontend
/
controllers
[ PARENT ]
EDIT :: BWGControllerWidget.php
<?php class BWGControllerWidgetFrontEnd { //////////////////////////////////////////////////////////////////////////////////////// // Events // //////////////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////////////// // Constants // //////////////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////////////// // Variables // //////////////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////////////// // Constructor & Destructor // //////////////////////////////////////////////////////////////////////////////////////// public function __construct() { } //////////////////////////////////////////////////////////////////////////////////////// // Public Methods // //////////////////////////////////////////////////////////////////////////////////////// public function execute($params = array(), $from_shortcode = "tags") { if ($from_shortcode == 'tags') { $this->view_tags($params); } } public function view_tags($params) { require_once WD_BWG_DIR . "/frontend/models/BWGModelWidget.php"; $model = new BWGModelWidgetFrontEnd(); require_once WD_BWG_DIR . "/frontend/views/BWGViewWidget.php"; $view = new BWGViewWidgetFrontEnd($model); $view->view_tags($params); } //////////////////////////////////////////////////////////////////////////////////////// // Getters & Setters // //////////////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////////////// // Private Methods // //////////////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////////////// // Listeners // //////////////////////////////////////////////////////////////////////////////////////// }
SAVE
CANCEL