| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 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 : /inetpub/wwwroot/stirizo/wp-content/plugins/kirki/includes/ |
Upload File : |
<?php
/**
* Admin panel kirki entry point
*
* @package kirki
*/
namespace Kirki;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
use Kirki\Admin\AdminMenu;
use Kirki\Admin\PostActions;
use Kirki\Admin\EditWithButton;
/**
* Kirki Admin
*/
class Admin {
/**
* Initialize the class
*
* @return void
*/
public function __construct() {
new AdminMenu();
new PostActions();
new EditWithButton();
}
/**
* Plugin activation link
*
* @since 1.0.0
*
* @param array $actions action list.
* @return array
*/
// public function plugin_action_links( $actions ) {
// if ( ! HelperFunctions::is_pro_user() ) {
// $actions['kirki_pro_link'] =
// '<a href="https://kirki.com/pricing/?utm_source=kirki_dashboard&utm_medium=wp_dashboard&utm_campaign=upgrade_pro&referrer=wordpress_dashboard" target="_blank">
// <span style="color: #7338d6; font-weight: bold;">Upgrade Pro</span>
// </a>';
// }
// return $actions;
// }
}