Server IP : 66.29.132.124 / Your IP : 3.149.28.7 Web Server : LiteSpeed System : Linux business141.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : wavevlvu ( 1524) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/wavevlvu/misswavenigeria.com/wp-content/plugins/totalpoll-lite/src/Admin/Insights/ |
Upload File : |
<?php namespace TotalPoll\Admin\Insights; use TotalPollVendors\TotalCore\Admin\Pages\Page as TotalCoreAdminPage; use TotalPollVendors\TotalCore\Helpers\Tracking; /** * Class Page * @package TotalPoll\Admin\Insights */ class Page extends TotalCoreAdminPage { /** * Page assets. */ public function assets() { } /** * Page content. */ public function render() { /** * Filters the list of available formats that can be used for export. * * @param array $formats Array of formats [id => label]. * * @since 4.0.0 * @return array */ $formats = apply_filters( 'totalpoll/filters/admin/entries/formats', [ 'html' => esc_html__( 'HTML', 'totalpoll' ), ] ); include __DIR__ . '/views/index.php'; } }