PATH:
home
/
lab2454c
/
equitablegold.com
/
wp-content
/
plugins
/
unlimited-elements-for-elementor
/
views
/
objects
<?php /** * @package Unlimited Elements * @author unlimited-elements.com * @copyright (C) 2021 Unlimited Elements, All Rights Reserved. * @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html * */ defined('UNLIMITED_ELEMENTS_INC') or die('Restricted access'); /** * addons list view * */ class UniteCreatorAddonsView{ protected $showButtons = true; protected $showHeader = true; protected $headerTextInner = null; protected $addonType, $objAddonType; protected $objManager; protected $product; protected $pluginTitle; protected $putUpdatePluginsButton = false; /** * constructor */ public function __construct(){ $this->initAddonType(); $this->init(); $this->putHtml(); } /** * init addon types */ protected function initAddonType(){ if(empty($this->addonType)){ $this->addonType = UniteFunctionsUC::getGetVar("addontype", null, UniteFunctionsUC::SANITIZE_KEY); } $this->objAddonType = UniteCreatorAddonType::getAddonTypeObject($this->addonType); UniteCreatorAdmin::setAdminGlobalsByAddonType($this->objAddonType); } /** * get header text * @return unknown */ protected function getHeaderText(){ if(!empty($this->objAddonType->managerHeaderPrefix)) GlobalsUC::$alterViewHeaderPrefix = $this->objAddonType->managerHeaderPrefix; $headerTitle = esc_html__("Manage", "unlimited-elements-for-elementor")." ".$this->objAddonType->textPlural; return($headerTitle); } /** * validate addon type */ private function validateAddonType(){ if(empty($this->objAddonType)) UniteFunctionsUC::throwError("This view should have an addon type"); } /** * validate addon type */ private function validateManager(){ if(empty($this->objManager)) UniteFunctionsUC::throwError("The manager is not inited"); } /** * init the view, function for override */ protected function init(){ $view = UniteCreatorAdmin::getView(); $this->objManager = new UniteCreatorManagerAddons(); $this->objManager->init($this->addonType); if(!empty($this->product)) $this->objManager->addPassData("product", $this->product); if(!empty($this->headerTextInner)) $this->objManager->setHeaderLineText($this->headerTextInner); } /** * put view html */ protected function putHtml(){ $this->validateAddonType(); $this->validateManager(); if($this->showHeader == true){ $headerTitle = $this->getHeaderText(); require HelperUC::getPathTemplate("header"); }else require HelperUC::getPathTemplate("header_missing"); $pluginName = GlobalsUC::PLUGIN_NAME; ?> <?php if($this->showButtons == true) UniteProviderFunctionsUC::putAddonViewAddHtml() ?> <div class="content_wrapper unite-content-wrapper"> <?php $this->objManager->outputHtml() ?> </div> <div class="uc-addons-bottom"> <?php if($this->putUpdatePluginsButton == true){ if(method_exists("UniteProviderFunctionsUC", "putUpdatePluginHtml")) UniteProviderFunctionsUC::putUpdatePluginHtml($pluginName, $this->pluginTitle); } ?> </div> <?php } }
[-] form_entry_view.class.php
[edit]
[+]
..
[-] layouts_view.class.php
[edit]
[-] addon_view.class.php
[edit]
[-] form_entries_view.class.php
[edit]
[-] mappicker_view.class.php
[edit]
[-] addon_view_childparams.class.php
[edit]
[-] settings_view.class.php
[edit]
[-] addons_view.class.php
[edit]
[-] activation_view.class.php
[edit]
[-] objects_list_view.class.php
[edit]
[-] views_chooser.class.php
[edit]