| Server IP : 195.130.67.5 / Your IP : 216.73.216.231 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/inetpub/wwwroot/prosvasi/wp-content/plugins/wp-statistics/src/Abstracts/ |
Upload File : |
<?php
namespace WP_Statistics\Abstracts;
if (!defined('ABSPATH')) exit; // Exit if accessed directly
abstract class UnlockedTabView
{
protected $tab;
protected $page;
public function __construct()
{
add_filter("wp_statistics_{$this->page}_{$this->tab}_locked", '__return_false');
add_filter("wp_statistics_{$this->page}_{$this->tab}_tooltip", [$this, 'getTooltip']);
add_action("wp_statistics_{$this->page}_{$this->tab}_template", [$this, 'view']);
add_action("wp_statistics_{$this->page}_{$this->tab}_data", [$this, 'getData']);
}
/**
* Returns the tooltip for the unlocked tab
* @return string
*/
abstract public function getTooltip();
/**
* Returns the data for the unlocked tab
*
* @return array
*/
public function getData()
{
return [];
}
/**
* Render the view
* @param mixed $args
* @return void
*/
abstract public function view($args);
}